diff --git a/framework/src/Volo.Abp.AspNetCore.Components.MauiBlazor.Theming.MudBlazor.Bundling/MauiBlazorMudBlazorStyleContributor.cs b/framework/src/Volo.Abp.AspNetCore.Components.MauiBlazor.Theming.MudBlazor.Bundling/MauiBlazorMudBlazorStyleContributor.cs index ff5be35497..c78f1474d2 100644 --- a/framework/src/Volo.Abp.AspNetCore.Components.MauiBlazor.Theming.MudBlazor.Bundling/MauiBlazorMudBlazorStyleContributor.cs +++ b/framework/src/Volo.Abp.AspNetCore.Components.MauiBlazor.Theming.MudBlazor.Bundling/MauiBlazorMudBlazorStyleContributor.cs @@ -7,8 +7,10 @@ public class MauiBlazorMudBlazorStyleContributor : BundleContributor { public override void ConfigureBundle(BundleConfigurationContext context) { + context.Files.AddIfNotContains("_content/Volo.Abp.AspNetCore.Components.MauiBlazor.Theming.MudBlazor/libs/fontawesome/css/all.css"); context.Files.AddIfNotContains("_content/MudBlazor/MudBlazor.min.css"); context.Files.AddIfNotContains("_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css"); context.Files.AddIfNotContains("_content/Volo.Abp.MudBlazorUI/volo.abp.mudblazorui.css"); + context.Files.AddIfNotContains("_content/Volo.Abp.AspNetCore.Components.MauiBlazor.Theming.MudBlazor/libs/flag-icon/css/flag-icon.css"); } } diff --git a/framework/src/Volo.Abp.AspNetCore.Components.MauiBlazor.Theming.MudBlazor/AbpAspNetCoreComponentsMauiBlazorThemingMudBlazorModule.cs b/framework/src/Volo.Abp.AspNetCore.Components.MauiBlazor.Theming.MudBlazor/AbpAspNetCoreComponentsMauiBlazorThemingMudBlazorModule.cs index 58c9a7149c..48cc5a794f 100644 --- a/framework/src/Volo.Abp.AspNetCore.Components.MauiBlazor.Theming.MudBlazor/AbpAspNetCoreComponentsMauiBlazorThemingMudBlazorModule.cs +++ b/framework/src/Volo.Abp.AspNetCore.Components.MauiBlazor.Theming.MudBlazor/AbpAspNetCoreComponentsMauiBlazorThemingMudBlazorModule.cs @@ -1,7 +1,6 @@ using Volo.Abp.AspNetCore.Components.MauiBlazor.Theming.MudBlazor.Bundling; using Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor; using Volo.Abp.AspNetCore.Components.MauiBlazor; -using Volo.Abp.AspNetCore.Mvc.UI.Bundling; using Volo.Abp.Modularity; namespace Volo.Abp.AspNetCore.Components.MauiBlazor.Theming.MudBlazor; @@ -13,23 +12,4 @@ namespace Volo.Abp.AspNetCore.Components.MauiBlazor.Theming.MudBlazor; )] public class AbpAspNetCoreComponentsMauiBlazorThemingMudBlazorModule : AbpModule { - public override void ConfigureServices(ServiceConfigurationContext context) - { - Configure(options => - { - options - .StyleBundles - .Add(MauiBlazorMudBlazorStandardBundles.Styles.Global, bundle => - { - bundle.AddContributors(typeof(MauiBlazorMudBlazorStyleContributor)); - }); - - options - .ScriptBundles - .Add(MauiBlazorMudBlazorStandardBundles.Scripts.Global, bundle => - { - bundle.AddContributors(typeof(MauiBlazorMudBlazorScriptContributor)); - }); - }); - } } diff --git a/framework/src/Volo.Abp.AspNetCore.Components.Server.Theming.MudBlazor/Bundling/BlazorServerMudBlazorScriptContributor.cs b/framework/src/Volo.Abp.AspNetCore.Components.Server.Theming.MudBlazor/Bundling/BlazorServerMudBlazorScriptContributor.cs index 7cc8c549a0..72a49486ee 100644 --- a/framework/src/Volo.Abp.AspNetCore.Components.Server.Theming.MudBlazor/Bundling/BlazorServerMudBlazorScriptContributor.cs +++ b/framework/src/Volo.Abp.AspNetCore.Components.Server.Theming.MudBlazor/Bundling/BlazorServerMudBlazorScriptContributor.cs @@ -15,7 +15,6 @@ public class BlazorServerMudBlazorScriptContributor : BundleContributor { context.Files.AddIfNotContains("/_framework/blazor.server.js"); } - //TODO@MudBlazor: Do we need this script, check ? context.Files.AddIfNotContains("/_content/MudBlazor/MudBlazor.min.js"); context.Files.AddIfNotContains("/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js"); context.Files.AddIfNotContains("/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js"); diff --git a/framework/src/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor/AbpAspNetCoreComponentsWebThemingMudBlazorModule.cs b/framework/src/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor/AbpAspNetCoreComponentsWebThemingMudBlazorModule.cs index 873770b868..08b43b5cb1 100644 --- a/framework/src/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor/AbpAspNetCoreComponentsWebThemingMudBlazorModule.cs +++ b/framework/src/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor/AbpAspNetCoreComponentsWebThemingMudBlazorModule.cs @@ -1,7 +1,4 @@ -using Volo.Abp.Application; -using Volo.Abp.Authorization; -using Volo.Abp.Features; -using Volo.Abp.GlobalFeatures; +using Volo.Abp.AspNetCore.Components.Web.Security; using Volo.Abp.Modularity; using Volo.Abp.MudBlazorUI; using Volo.Abp.UI.Navigation; @@ -14,5 +11,12 @@ namespace Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor; )] public class AbpAspNetCoreComponentsWebThemingMudBlazorModule : AbpModule { + public override void ConfigureServices(ServiceConfigurationContext context) + { + Configure(options => + { + options.Components.Add(typeof(AbpAuthenticationState), null); + }); + } } diff --git a/framework/src/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor/Layout/PageHeader.razor.cs b/framework/src/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor/Layout/PageHeader.razor.cs index dbaa1eebde..301045d6b7 100644 --- a/framework/src/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor/Layout/PageHeader.razor.cs +++ b/framework/src/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor/Layout/PageHeader.razor.cs @@ -115,8 +115,7 @@ public partial class PageHeader : ComponentBase, IDisposable var item = pageItems[i]; var isLast = i == pageItems.Count - 1; - // Convert Blazorise icon to MudBlazor icon if needed - var mudIcon = ConvertToMudIcon(item.Icon); + var mudIcon = ConvertToMudIcon(item.Icon); // If BreadcrumbShowCurrent is false, skip the last item or make it non-clickable if (isLast && !BreadcrumbShowCurrent) @@ -132,26 +131,19 @@ public partial class PageHeader : ComponentBase, IDisposable } } - /// - /// Converts Blazorise icon to MudBlazor icon. - /// You may need to expand this mapping based on the icons used in your application. - /// - private static string? ConvertToMudIcon(object? blazoriseIcon) + private static string? ConvertToMudIcon(object? icon) { - if (blazoriseIcon == null) + if (icon == null) { return null; } - // If it's already a string (MudBlazor icon format), return as-is - if (blazoriseIcon is string iconString) + if (icon is string iconString) { return iconString; } - // Map common Blazorise icons to MudBlazor icons - // Add more mappings as needed for your application - var iconName = blazoriseIcon.ToString(); + var iconName = icon.ToString(); return iconName switch { diff --git a/framework/src/Volo.Abp.MudBlazorUI/Components/AbpMudExtensibleDataGrid.razor.cs b/framework/src/Volo.Abp.MudBlazorUI/Components/AbpMudExtensibleDataGrid.razor.cs index 1d2f7428e4..b8bf8c5606 100644 --- a/framework/src/Volo.Abp.MudBlazorUI/Components/AbpMudExtensibleDataGrid.razor.cs +++ b/framework/src/Volo.Abp.MudBlazorUI/Components/AbpMudExtensibleDataGrid.razor.cs @@ -11,6 +11,7 @@ using Microsoft.Extensions.Localization; using MudBlazor; using Volo.Abp.AspNetCore.Components.Web.Extensibility.TableColumns; using Volo.Abp.Data; +using Volo.Abp.Timing; namespace Volo.Abp.MudBlazorUI.Components; @@ -46,6 +47,9 @@ public partial class AbpMudExtensibleDataGrid : ComponentBase [Inject] public IStringLocalizer UiLocalizer { get; set; } = default!; + [Inject] + public IClock Clock { get; set; } = default!; + public virtual async Task ReloadServerDataAsync() { if (_dataGrid != null && ServerData != null) @@ -104,6 +108,16 @@ public partial class AbpMudExtensibleDataGrid : ComponentBase value = propertyValue; } + if (value is DateTime dateTime) + { + return Clock.ConvertToUserTime(dateTime); + } + + if (value is DateTimeOffset dateTimeOffset) + { + return Clock.ConvertToUserTime(dateTimeOffset); + } + return value; } diff --git a/framework/src/Volo.Abp.MudBlazorUI/Components/ObjectExtending/MudDateTimeOffsetExtensionProperty.razor b/framework/src/Volo.Abp.MudBlazorUI/Components/ObjectExtending/MudDateTimeOffsetExtensionProperty.razor new file mode 100644 index 0000000000..ef1025f914 --- /dev/null +++ b/framework/src/Volo.Abp.MudBlazorUI/Components/ObjectExtending/MudDateTimeOffsetExtensionProperty.razor @@ -0,0 +1,32 @@ +@typeparam TEntity +@typeparam TResourceType +@using Volo.Abp.Localization +@using Volo.Abp.ObjectExtending +@inherits MudExtensionPropertyComponentBase + +@if (PropertyInfo != null && Entity != null) +{ + @if (PropertyInfo.IsDate()) + { + + } + else + { + + + + + } +} diff --git a/framework/src/Volo.Abp.MudBlazorUI/Components/ObjectExtending/MudDateTimeOffsetExtensionProperty.razor.cs b/framework/src/Volo.Abp.MudBlazorUI/Components/ObjectExtending/MudDateTimeOffsetExtensionProperty.razor.cs new file mode 100644 index 0000000000..f0bea16613 --- /dev/null +++ b/framework/src/Volo.Abp.MudBlazorUI/Components/ObjectExtending/MudDateTimeOffsetExtensionProperty.razor.cs @@ -0,0 +1,93 @@ +using System; +using Volo.Abp.Data; +using Volo.Abp.ObjectExtending; + +namespace Volo.Abp.MudBlazorUI.Components.ObjectExtending; + +public partial class MudDateTimeOffsetExtensionProperty + where TEntity : IHasExtraProperties +{ + protected DateTimeOffset? Value + { + get + { + var raw = Entity.GetProperty(PropertyInfo.Name); + return raw switch + { + null => null, + DateTimeOffset dto => dto, + DateTime dt => dt.Kind switch + { + DateTimeKind.Utc => new DateTimeOffset(dt, TimeSpan.Zero), + DateTimeKind.Local => new DateTimeOffset(dt), + _ => new DateTimeOffset(DateTime.SpecifyKind(dt, DateTimeKind.Utc), TimeSpan.Zero) + }, + _ => null + }; + } + set => Entity.SetProperty(PropertyInfo.Name, value, false); + } + + protected DateTime? DateOnlyValue + { + get => Value?.DateTime.Date; + set + { + if (value.HasValue) + { + Value = new DateTimeOffset(value.Value); + } + else + { + Value = null; + } + } + } + + protected DateTime? DateValue + { + get => Value?.DateTime.Date; + set + { + if (value.HasValue) + { + var time = Value?.DateTime.TimeOfDay ?? TimeSpan.Zero; + var offset = Value?.Offset ?? TimeSpan.Zero; + Value = new DateTimeOffset(value.Value.Date + time, offset); + } + else + { + Value = null; + } + } + } + + protected TimeSpan? TimeValue + { + get => Value?.DateTime.TimeOfDay; + set + { + if (Value.HasValue && value.HasValue) + { + var offset = Value.Value.Offset; + Value = new DateTimeOffset(Value.Value.DateTime.Date + value.Value, offset); + } + } + } + + protected string GetDateFormat() + { + var dataFormatString = PropertyInfo.GetDataFormatStringOrNull(); + if (!string.IsNullOrEmpty(dataFormatString)) + { + return dataFormatString.Replace("{0:", "").Replace("}", ""); + } + + return PropertyInfo.IsDate() ? "yyyy-MM-dd" : "yyyy-MM-dd"; + } + + protected string GetTimeLabel() + { + return "Time"; + } +} diff --git a/framework/src/Volo.Abp.MudBlazorUI/MudBlazorUiObjectExtensionPropertyInfoExtensions.cs b/framework/src/Volo.Abp.MudBlazorUI/MudBlazorUiObjectExtensionPropertyInfoExtensions.cs index a8b17348fd..db55e67058 100644 --- a/framework/src/Volo.Abp.MudBlazorUI/MudBlazorUiObjectExtensionPropertyInfoExtensions.cs +++ b/framework/src/Volo.Abp.MudBlazorUI/MudBlazorUiObjectExtensionPropertyInfoExtensions.cs @@ -28,7 +28,6 @@ public static class MudBlazorUiObjectExtensionPropertyInfoExtensions typeof(short), typeof(ushort), typeof(uint), - typeof(long), typeof(ulong), typeof(float), typeof(double), @@ -40,7 +39,6 @@ public static class MudBlazorUiObjectExtensionPropertyInfoExtensions typeof(short?), typeof(ushort?), typeof(uint?), - typeof(long?), typeof(ulong?), typeof(float?), typeof(double?), @@ -132,7 +130,7 @@ public static class MudBlazorUiObjectExtensionPropertyInfoExtensions { foreach (var attribute in propertyInfo.Attributes) { - var inputTypeByAttribute = GetInputTypeFromAttributeOrNull(attribute); + var inputTypeByAttribute = GetInputTypeFromAttributeOrNull(attribute, propertyInfo.Type); if (inputTypeByAttribute != null) { return inputTypeByAttribute; @@ -147,7 +145,7 @@ public static class MudBlazorUiObjectExtensionPropertyInfoExtensions return propertyInfo.Type.IsEnum || TypeHelper.IsNullableEnum(propertyInfo.Type); } - private static Type? GetInputTypeFromAttributeOrNull(Attribute attribute) + private static Type? GetInputTypeFromAttributeOrNull(Attribute attribute, Type propertyType) { var hasTextEditSupport = TextEditSupportedAttributeTypes.Any(t => t == attribute.GetType()); @@ -167,7 +165,9 @@ public static class MudBlazorUiObjectExtensionPropertyInfoExtensions return typeof(MudTextExtensionProperty<,>); case DataType.Date: case DataType.DateTime: - return typeof(MudDateTimeExtensionProperty<,>); + return propertyType == typeof(DateTimeOffset) || propertyType == typeof(DateTimeOffset?) + ? typeof(MudDateTimeOffsetExtensionProperty<,>) + : typeof(MudDateTimeExtensionProperty<,>); case DataType.Time: return typeof(MudTimeExtensionProperty<,>); case DataType.MultilineText: @@ -185,11 +185,16 @@ public static class MudBlazorUiObjectExtensionPropertyInfoExtensions return typeof(MudCheckExtensionProperty<,>); } - if (type == typeof(DateTime)) + if (type == typeof(DateTime) || type == typeof(DateTime?)) { return typeof(MudDateTimeExtensionProperty<,>); } + if (type == typeof(DateTimeOffset) || type == typeof(DateTimeOffset?)) + { + return typeof(MudDateTimeOffsetExtensionProperty<,>); + } + if (NumberTypes.Contains(type)) { return typeof(MudTextExtensionProperty<,>); diff --git a/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.Server.MudBlazorBasicTheme/MudBlazorBasicThemeToolbarContributor.cs b/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.Server.MudBlazorBasicTheme/MudBlazorBasicThemeToolbarContributor.cs index d0c9390a62..0ba46719c4 100644 --- a/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.Server.MudBlazorBasicTheme/MudBlazorBasicThemeToolbarContributor.cs +++ b/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.Server.MudBlazorBasicTheme/MudBlazorBasicThemeToolbarContributor.cs @@ -11,8 +11,8 @@ public class MudBlazorBasicThemeToolbarContributor : IToolbarContributor { if (context.Toolbar.Name == StandardToolbars.Main) { - context.Toolbar.Items.Add(new ToolbarItem(typeof(LanguageSwitch))); context.Toolbar.Items.Add(new ToolbarItem(typeof(LoginDisplay))); + context.Toolbar.Items.Add(new ToolbarItem(typeof(LanguageSwitch))); } return Task.CompletedTask; diff --git a/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/MudBlazorBasicTheme.cs b/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/MudBlazorBasicTheme.cs index 95dc61c3e7..a777bcfc32 100644 --- a/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/MudBlazorBasicTheme.cs +++ b/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/MudBlazorBasicTheme.cs @@ -2,14 +2,16 @@ using System; using Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.Themes.Basic; using Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.Layout; using Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.Theming; +using Volo.Abp.DependencyInjection; namespace Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme; -public class MudBlazorBasicTheme : ITheme +[ThemeName(Name)] +public class MudBlazorBasicTheme : ITheme, ITransientDependency { - public static string Name = "MudBlazorBasic"; + public const string Name = "MudBlazorBasic"; - public Type GetLayout(string name, bool fallbackToDefault = true) + public virtual Type GetLayout(string name, bool fallbackToDefault = true) { switch (name) { diff --git a/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/Themes/Basic/LoginDisplay.razor b/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/Themes/Basic/LoginDisplay.razor index 783ddd8c74..21f23f58c5 100644 --- a/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/Themes/Basic/LoginDisplay.razor +++ b/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/Themes/Basic/LoginDisplay.razor @@ -22,7 +22,6 @@ else @code { [Inject] protected NavigationManager NavigationManager { get; set; } = default!; - [Inject] protected IAbpLazyServiceProvider LazyServiceProvider { get; set; } = default!; protected void Logout() { diff --git a/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/Themes/Basic/NavMenuItem.razor b/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/Themes/Basic/NavMenuItem.razor index 68cd499dc5..20d854dcd4 100644 --- a/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/Themes/Basic/NavMenuItem.razor +++ b/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/Themes/Basic/NavMenuItem.razor @@ -1,3 +1,4 @@ +@implements IDisposable @using Volo.Abp.UI.Navigation @using MudBlazor @using Microsoft.AspNetCore.Components @@ -75,5 +76,3 @@ else NavigationManager.LocationChanged -= OnLocationChanged; } } - -@implements IDisposable diff --git a/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/Themes/Basic/_Imports.razor b/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/Themes/Basic/_Imports.razor index ee829ba586..f291088477 100644 --- a/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/Themes/Basic/_Imports.razor +++ b/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/Themes/Basic/_Imports.razor @@ -5,5 +5,5 @@ @using Microsoft.AspNetCore.Components.Routing @using Microsoft.AspNetCore.Components.Web @using Microsoft.JSInterop -@using Volo.Abp.MudBlazorUI; -@using Volo.Abp.MudBlazorUI.Components; \ No newline at end of file +@using Volo.Abp.MudBlazorUI +@using Volo.Abp.MudBlazorUI.Components \ No newline at end of file diff --git a/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme/Themes/Basic/LoginDisplay.razor b/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme/Themes/Basic/LoginDisplay.razor index a6ee2cba41..3ef6850a4c 100644 --- a/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme/Themes/Basic/LoginDisplay.razor +++ b/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme/Themes/Basic/LoginDisplay.razor @@ -17,6 +17,16 @@ + + @if (CurrentTenant.Name != null) + { + @CurrentTenant.Name\@CurrentUser.UserName + } + else + { + @CurrentUser.UserName + } + @if (Menu != null) { @foreach (var menuItem in Menu.Items) diff --git a/modules/feature-management/src/Volo.Abp.FeatureManagement.Blazor.MudBlazor/Components/FeatureManagementModal.razor b/modules/feature-management/src/Volo.Abp.FeatureManagement.Blazor.MudBlazor/Components/FeatureManagementModal.razor index 68b398eb61..76fbc54c5c 100644 --- a/modules/feature-management/src/Volo.Abp.FeatureManagement.Blazor.MudBlazor/Components/FeatureManagementModal.razor +++ b/modules/feature-management/src/Volo.Abp.FeatureManagement.Blazor.MudBlazor/Components/FeatureManagementModal.razor @@ -2,7 +2,6 @@ @using JetBrains.Annotations @using Volo.Abp.Validation.StringValues @using Microsoft.Extensions.Localization -@using MudBlazor @using Volo.Abp.FeatureManagement.Localization @inherits AbpFeatureManagementComponentBase diff --git a/modules/identity/src/Volo.Abp.Identity.Blazor.MudBlazor.Server/AbpIdentityBlazorMudBlazorServerModule.cs b/modules/identity/src/Volo.Abp.Identity.Blazor.MudBlazor.Server/AbpIdentityBlazorMudBlazorServerModule.cs index f64e0c63c6..625d4adb40 100644 --- a/modules/identity/src/Volo.Abp.Identity.Blazor.MudBlazor.Server/AbpIdentityBlazorMudBlazorServerModule.cs +++ b/modules/identity/src/Volo.Abp.Identity.Blazor.MudBlazor.Server/AbpIdentityBlazorMudBlazorServerModule.cs @@ -6,6 +6,7 @@ namespace Volo.Abp.Identity.Blazor.MudBlazor.Server; [DependsOn( typeof(AbpIdentityBlazorMudBlazorModule), + typeof(AbpAspNetCoreComponentsServerThemingMudBlazorModule), typeof(AbpPermissionManagementBlazorMudBlazorServerModule) )] public class AbpIdentityBlazorMudBlazorServerModule : AbpModule diff --git a/modules/identity/src/Volo.Abp.Identity.Blazor.MudBlazor/IdentityMenuNames.cs b/modules/identity/src/Volo.Abp.Identity.Blazor.MudBlazor/IdentityMenuNames.cs index cef7d513c5..eab8728919 100644 --- a/modules/identity/src/Volo.Abp.Identity.Blazor.MudBlazor/IdentityMenuNames.cs +++ b/modules/identity/src/Volo.Abp.Identity.Blazor.MudBlazor/IdentityMenuNames.cs @@ -1,10 +1,9 @@ namespace Volo.Abp.Identity.Blazor.MudBlazor; -public static class IdentityMenuNames +public class IdentityMenuNames { - public const string GroupName = "IdentityManagement"; + public const string GroupName = "AbpIdentity"; - public const string Roles = "AbpIdentity.Roles"; - - public const string Users = "AbpIdentity.Users"; + public const string Roles = GroupName + ".Roles"; + public const string Users = GroupName + ".Users"; } diff --git a/modules/identity/src/Volo.Abp.Identity.Blazor.MudBlazor/Pages/Identity/RoleManagement.razor.cs b/modules/identity/src/Volo.Abp.Identity.Blazor.MudBlazor/Pages/Identity/RoleManagement.razor.cs index 5d5a5a610b..475a901d84 100644 --- a/modules/identity/src/Volo.Abp.Identity.Blazor.MudBlazor/Pages/Identity/RoleManagement.razor.cs +++ b/modules/identity/src/Volo.Abp.Identity.Blazor.MudBlazor/Pages/Identity/RoleManagement.razor.cs @@ -79,11 +79,8 @@ public partial class RoleManagement { if (PermissionManagementModal != null) { - var role = data.As(); - await PermissionManagementModal.OpenAsync( - PermissionProviderName, - role.Id.ToString(), - role.Name); + await PermissionManagementModal.OpenAsync(PermissionProviderName, + data.As().Name); } } }, @@ -91,7 +88,8 @@ public partial class RoleManagement { Text = L["Delete"], Visible = (data) => HasDeletePermission && !data.As().IsStatic, - Clicked = async (data) => await DeleteEntityAsync(data.As()) + Clicked = async (data) => await DeleteEntityAsync(data.As()), + ConfirmationMessage = (data) => GetDeleteConfirmationMessage(data.As()) } }); diff --git a/modules/identity/src/Volo.Abp.Identity.Blazor.MudBlazor/Pages/Identity/UserManagement.razor b/modules/identity/src/Volo.Abp.Identity.Blazor.MudBlazor/Pages/Identity/UserManagement.razor index a15b99b61e..94d763793f 100644 --- a/modules/identity/src/Volo.Abp.Identity.Blazor.MudBlazor/Pages/Identity/UserManagement.razor +++ b/modules/identity/src/Volo.Abp.Identity.Blazor.MudBlazor/Pages/Identity/UserManagement.razor @@ -88,7 +88,7 @@ { @foreach (var role in NewUserRoles) { - + } } @@ -154,7 +154,7 @@ @foreach (var role in EditUserRoles) { - + } diff --git a/modules/identity/src/Volo.Abp.Identity.Blazor.MudBlazor/Pages/Identity/UserManagement.razor.cs b/modules/identity/src/Volo.Abp.Identity.Blazor.MudBlazor/Pages/Identity/UserManagement.razor.cs index 1c496612ca..832d45d85b 100644 --- a/modules/identity/src/Volo.Abp.Identity.Blazor.MudBlazor/Pages/Identity/UserManagement.razor.cs +++ b/modules/identity/src/Volo.Abp.Identity.Blazor.MudBlazor/Pages/Identity/UserManagement.razor.cs @@ -114,7 +114,8 @@ public partial class UserManagement NewUserRoles = Roles.Select(x => new AssignedRoleViewModel { Name = x.Name, - IsAssigned = x.IsDefault + IsAssigned = x.IsDefault, + IsAssignable = true }).ToArray(); } @@ -143,14 +144,25 @@ public partial class UserManagement _editTabIndex = 0; IsEditCurrentUser = entity.Id == CurrentUser.Id; - if (Roles != null && await PermissionChecker.IsGrantedAsync(IdentityPermissions.Users.ManageRoles)) + if (await PermissionChecker.IsGrantedAsync(IdentityPermissions.Users.ManageRoles)) { - var userRoleIds = (await AppService.GetRolesAsync(entity.Id)).Items.Select(r => r.Id).ToList(); + var assignableRoles = Roles ?? (await AppService.GetAssignableRolesAsync()).Items; + var currentRoles = (await AppService.GetRolesAsync(entity.Id)).Items; - EditUserRoles = Roles.Select(x => new AssignedRoleViewModel + var combinedRoles = assignableRoles + .Concat(currentRoles) + .GroupBy(role => role.Id) + .Select(group => group.First()) + .ToList(); + + var currentRoleIds = currentRoles.Select(r => r.Id).ToHashSet(); + var assignableRoleIds = assignableRoles.Select(r => r.Id).ToHashSet(); + + EditUserRoles = combinedRoles.Select(x => new AssignedRoleViewModel { Name = x.Name, - IsAssigned = userRoleIds.Contains(x.Id) + IsAssigned = currentRoleIds.Contains(x.Id), + IsAssignable = assignableRoleIds.Contains(x.Id) }).ToArray(); _showPassword = false; @@ -208,7 +220,8 @@ public partial class UserManagement { Text = L["Delete"], Visible = (data) => HasDeletePermission && CurrentUser.GetId() != data.As().Id, - Clicked = async (data) => await DeleteEntityAsync(data.As()) + Clicked = async (data) => await DeleteEntityAsync(data.As()), + ConfirmationMessage = (data) => GetDeleteConfirmationMessage(data.As()) } }); @@ -265,4 +278,6 @@ public class AssignedRoleViewModel public string Name { get; set; } = string.Empty; public bool IsAssigned { get; set; } + + public bool IsAssignable { get; set; } } diff --git a/modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor.MudBlazor/Components/PermissionManagementModal.razor b/modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor.MudBlazor/Components/PermissionManagementModal.razor index eebbd2dff8..a692486d2c 100644 --- a/modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor.MudBlazor/Components/PermissionManagementModal.razor +++ b/modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor.MudBlazor/Components/PermissionManagementModal.razor @@ -1,7 +1,6 @@ @inherits Volo.Abp.AspNetCore.Components.AbpComponentBase @using global::MudBlazor @using JetBrains.Annotations -@using MudBlazor @using Volo.Abp.PermissionManagement.Localization diff --git a/modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor.MudBlazor/Components/PermissionManagementModal.razor.cs b/modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor.MudBlazor/Components/PermissionManagementModal.razor.cs index 678fc5aedc..8999b60a19 100644 --- a/modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor.MudBlazor/Components/PermissionManagementModal.razor.cs +++ b/modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor.MudBlazor/Components/PermissionManagementModal.razor.cs @@ -64,8 +64,8 @@ public partial class PermissionManagementModal NormalizePermissionGroup(); - GrantAll = _groups.SelectMany(x => x.Permissions).All(p => p.IsGranted); - GrantAny = !GrantAll && _groups.SelectMany(x => x.Permissions).Any(p => p.IsGranted); + GrantAll = _allGroups.SelectMany(x => x.Permissions).All(p => p.IsGranted); + GrantAny = !GrantAll && _allGroups.SelectMany(x => x.Permissions).Any(p => p.IsGranted); _isVisible = true; await InvokeAsync(StateHasChanged); @@ -223,10 +223,10 @@ public partial class PermissionManagementModal } } - if (_groups != null) + if (_allGroups != null) { - GrantAll = _groups.SelectMany(x => x.Permissions).All(p => p.IsGranted); - GrantAny = !GrantAll && _groups.SelectMany(x => x.Permissions).Any(p => p.IsGranted); + GrantAll = _allGroups.SelectMany(x => x.Permissions).All(p => p.IsGranted); + GrantAny = !GrantAll && _allGroups.SelectMany(x => x.Permissions).Any(p => p.IsGranted); } await InvokeAsync(StateHasChanged); } @@ -249,10 +249,10 @@ public partial class PermissionManagementModal } } - if (_groups != null) + if (_allGroups != null) { - GrantAll = _groups.SelectMany(x => x.Permissions).All(p => p.IsGranted); - GrantAny = !GrantAll && _groups.SelectMany(x => x.Permissions).Any(p => p.IsGranted); + GrantAll = _allGroups.SelectMany(x => x.Permissions).All(p => p.IsGranted); + GrantAny = !GrantAll && _allGroups.SelectMany(x => x.Permissions).Any(p => p.IsGranted); } await InvokeAsync(StateHasChanged); } @@ -310,12 +310,27 @@ public partial class PermissionManagementModal protected virtual bool IsDisabledPermission(PermissionGrantInfoDto permissionGrantInfo) { - return _disabledPermissions.Any(x => x == permissionGrantInfo); + if (!permissionGrantInfo.IsEditable) + { + return true; + } + + return permissionGrantInfo.IsGranted && + permissionGrantInfo.GrantedProviders.All(p => p.ProviderName != _providerName); } protected virtual string GetShownName(PermissionGrantInfoDto permissionGrantInfo) { - if (!IsDisabledPermission(permissionGrantInfo)) + if (permissionGrantInfo.GrantedProviders.All(p => p.ProviderName == _providerName)) + { + return permissionGrantInfo.DisplayName; + } + + var grantedByOtherProviders = permissionGrantInfo.GrantedProviders + .Where(p => p.ProviderName != _providerName) + .ToList(); + + if (!grantedByOtherProviders.Any()) { return permissionGrantInfo.DisplayName; } @@ -323,8 +338,7 @@ public partial class PermissionManagementModal return string.Format( "{0} ({1})", permissionGrantInfo.DisplayName, - permissionGrantInfo.GrantedProviders - .Where(p => p.ProviderName != _providerName) + grantedByOtherProviders .Select(p => p.ProviderName) .JoinAsString(", ") ); @@ -332,10 +346,7 @@ public partial class PermissionManagementModal protected virtual bool IsPermissionGroupDisabled(PermissionGroupDto group) { - var permissions = group.Permissions; - var grantedProviders = permissions.SelectMany(x => x.GrantedProviders); - - return permissions.All(x => x.IsGranted) && grantedProviders.Any(p => p.ProviderName != _providerName); + return group.Permissions.All(IsDisabledPermission); } protected virtual async Task ResetSearchTextAsync() diff --git a/modules/setting-management/src/Volo.Abp.SettingManagement.Blazor.MudBlazor/Pages/SettingManagement/EmailSettingGroup/EmailSettingGroupViewComponent.razor b/modules/setting-management/src/Volo.Abp.SettingManagement.Blazor.MudBlazor/Pages/SettingManagement/EmailSettingGroup/EmailSettingGroupViewComponent.razor index bcc78895b3..c1206f1764 100644 --- a/modules/setting-management/src/Volo.Abp.SettingManagement.Blazor.MudBlazor/Pages/SettingManagement/EmailSettingGroup/EmailSettingGroupViewComponent.razor +++ b/modules/setting-management/src/Volo.Abp.SettingManagement.Blazor.MudBlazor/Pages/SettingManagement/EmailSettingGroup/EmailSettingGroupViewComponent.razor @@ -1,7 +1,6 @@ @using Volo.Abp.SettingManagement.Localization -@using MudBlazor -@inherits Volo.Abp.AspNetCore.Components.AbpComponentBase @using global::MudBlazor +@inherits Volo.Abp.AspNetCore.Components.AbpComponentBase @if (EmailSettings != null) { diff --git a/modules/setting-management/src/Volo.Abp.SettingManagement.Blazor.MudBlazor/Pages/SettingManagement/TimeZoneSettingGroup/TimeZoneSettingGroupViewComponent.razor b/modules/setting-management/src/Volo.Abp.SettingManagement.Blazor.MudBlazor/Pages/SettingManagement/TimeZoneSettingGroup/TimeZoneSettingGroupViewComponent.razor index 38d19d1202..96f6e05ac7 100644 --- a/modules/setting-management/src/Volo.Abp.SettingManagement.Blazor.MudBlazor/Pages/SettingManagement/TimeZoneSettingGroup/TimeZoneSettingGroupViewComponent.razor +++ b/modules/setting-management/src/Volo.Abp.SettingManagement.Blazor.MudBlazor/Pages/SettingManagement/TimeZoneSettingGroup/TimeZoneSettingGroupViewComponent.razor @@ -1,7 +1,6 @@ @using Volo.Abp.SettingManagement.Localization -@using MudBlazor -@inherits Volo.Abp.AspNetCore.Components.AbpComponentBase @using global::MudBlazor +@inherits Volo.Abp.AspNetCore.Components.AbpComponentBase @if (TimezoneSettings != null) { diff --git a/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor.MudBlazor.Server/AbpTenantManagementBlazorMudBlazorServerModule.cs b/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor.MudBlazor.Server/AbpTenantManagementBlazorMudBlazorServerModule.cs index db01b8f227..59c6cb267f 100644 --- a/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor.MudBlazor.Server/AbpTenantManagementBlazorMudBlazorServerModule.cs +++ b/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor.MudBlazor.Server/AbpTenantManagementBlazorMudBlazorServerModule.cs @@ -1,11 +1,13 @@ using Volo.Abp.AspNetCore.Components.Server.Theming.MudBlazor; +using Volo.Abp.FeatureManagement.Blazor.MudBlazor.Server; using Volo.Abp.Modularity; namespace Volo.Abp.TenantManagement.Blazor.MudBlazor.Server; [DependsOn( typeof(AbpTenantManagementBlazorMudBlazorModule), - typeof(AbpAspNetCoreComponentsServerThemingMudBlazorModule) + typeof(AbpAspNetCoreComponentsServerThemingMudBlazorModule), + typeof(AbpFeatureManagementBlazorMudBlazorServerModule) )] public class AbpTenantManagementBlazorMudBlazorServerModule : AbpModule { diff --git a/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor.MudBlazor.Server/Volo.Abp.TenantManagement.Blazor.MudBlazor.Server.csproj b/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor.MudBlazor.Server/Volo.Abp.TenantManagement.Blazor.MudBlazor.Server.csproj index ef02f40551..96cf8a86b0 100644 --- a/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor.MudBlazor.Server/Volo.Abp.TenantManagement.Blazor.MudBlazor.Server.csproj +++ b/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor.MudBlazor.Server/Volo.Abp.TenantManagement.Blazor.MudBlazor.Server.csproj @@ -10,6 +10,7 @@ + diff --git a/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly/AbpTenantManagementBlazorMudBlazorWebAssemblyModule.cs b/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly/AbpTenantManagementBlazorMudBlazorWebAssemblyModule.cs index 63daa7c1f1..4258f1a8c4 100644 --- a/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly/AbpTenantManagementBlazorMudBlazorWebAssemblyModule.cs +++ b/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly/AbpTenantManagementBlazorMudBlazorWebAssemblyModule.cs @@ -1,4 +1,5 @@ using Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor; +using Volo.Abp.FeatureManagement.Blazor.MudBlazor.WebAssembly; using Volo.Abp.Modularity; namespace Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly; @@ -6,6 +7,7 @@ namespace Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly; [DependsOn( typeof(AbpTenantManagementBlazorMudBlazorModule), typeof(AbpAspNetCoreComponentsWebAssemblyThemingMudBlazorModule), + typeof(AbpFeatureManagementBlazorMudBlazorWebAssemblyModule), typeof(AbpTenantManagementHttpApiClientModule) )] public class AbpTenantManagementBlazorMudBlazorWebAssemblyModule : AbpModule diff --git a/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.csproj b/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.csproj index fbd6dcf5f3..f41f2e4ef0 100644 --- a/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.csproj +++ b/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.csproj @@ -10,6 +10,7 @@ + diff --git a/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor.MudBlazor/Pages/TenantManagement/TenantManagement.razor b/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor.MudBlazor/Pages/TenantManagement/TenantManagement.razor index 40ab5508da..b9974fe6fb 100644 --- a/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor.MudBlazor/Pages/TenantManagement/TenantManagement.razor +++ b/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor.MudBlazor/Pages/TenantManagement/TenantManagement.razor @@ -4,6 +4,8 @@ @using Microsoft.AspNetCore.Authorization @using Volo.Abp.FeatureManagement.Blazor.MudBlazor.Components @using Volo.Abp.MudBlazorUI.Components +@using Volo.Abp.MudBlazorUI.Components.ObjectExtending +@using Volo.Abp.TenantManagement.Localization @using Microsoft.Extensions.Localization @using Volo.Abp.UI.Navigation.Localization.Resource @using Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.Layout @@ -53,7 +55,7 @@ Adornment="Adornment.End" AdornmentIcon="@(ShowPassword ? Icons.Material.Filled.Visibility : Icons.Material.Filled.VisibilityOff)" OnAdornmentClick="@TogglePasswordVisibility" /> - + @@ -78,7 +80,7 @@ Required="true" RequiredError="@L["ThisFieldIsRequired."]" AutoFocus="true" /> - + diff --git a/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor.MudBlazor/Pages/TenantManagement/TenantManagement.razor.cs b/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor.MudBlazor/Pages/TenantManagement/TenantManagement.razor.cs index 943c421752..e479250ed6 100644 --- a/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor.MudBlazor/Pages/TenantManagement/TenantManagement.razor.cs +++ b/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor.MudBlazor/Pages/TenantManagement/TenantManagement.razor.cs @@ -2,11 +2,14 @@ using System; using System.Collections.Generic; using System.Threading.Tasks; using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.Components; +using Microsoft.Extensions.Localization; using MudBlazor; using Volo.Abp.AspNetCore.Components.Web.Extensibility.EntityActions; using Volo.Abp.AspNetCore.Components.Web.Extensibility.TableColumns; using Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.PageToolbars; using Volo.Abp.FeatureManagement.Blazor.MudBlazor.Components; +using Volo.Abp.MudBlazorUI; using Volo.Abp.ObjectExtending; using Volo.Abp.TenantManagement.Localization; @@ -27,6 +30,11 @@ public partial class TenantManagement protected List TenantManagementTableColumns => TableColumns.Get(); + private AbpMudBlazorMessageLocalizerHelper? _localizerHelper; + + [Inject] + protected IStringLocalizer Localizer { get; set; } = default!; + private MudForm? _createFormRef; private MudForm? _editFormRef; @@ -50,6 +58,12 @@ public partial class TenantManagement return base.SetBreadcrumbItemsAsync(); } + protected override async Task OnInitializedAsync() + { + _localizerHelper = new AbpMudBlazorMessageLocalizerHelper(Localizer); + await base.OnInitializedAsync(); + } + protected override async Task SetPermissionsAsync() { await base.SetPermissionsAsync(); @@ -64,9 +78,9 @@ public partial class TenantManagement protected override ValueTask SetToolbarItemsAsync() { - Toolbar.AddButton(L["NewTenant"], + Toolbar.AddMudButton(L["NewTenant"], OpenCreateDialogAsync, - icon: Icons.Material.Filled.Add, + icon: Icons.Material.Filled.Add.ToString(), requiredPolicyName: CreatePolicyName); return base.SetToolbarItemsAsync(); @@ -101,7 +115,8 @@ public partial class TenantManagement { Text = L["Delete"], Visible = (data) => HasDeletePermission, - Clicked = async (data) => await DeleteEntityAsync(data.As()) + Clicked = async (data) => await DeleteEntityAsync(data.As()), + ConfirmationMessage = (data) => GetDeleteConfirmationMessage(data.As()) } }); diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp/Logs/logs.txt b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp/Logs/logs.txt deleted file mode 100644 index ad2b20092c..0000000000 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp/Logs/logs.txt +++ /dev/null @@ -1,103868 +0,0 @@ -2026-01-16 11:13:19.199 +03:00 [INF] Starting web host. -2026-01-16 11:13:36.007 +03:00 [DBG] Loaded ABP modules: -2026-01-16 11:13:36.007 +03:00 [DBG] - MyCompanyName.MyProjectName.Blazor.WebApp.MyProjectNameBlazorModule -2026-01-16 11:13:36.007 +03:00 [DBG] - MyCompanyName.MyProjectName.MyProjectNameApplicationModule -2026-01-16 11:13:36.007 +03:00 [DBG] - MyCompanyName.MyProjectName.MyProjectNameDomainModule -2026-01-16 11:13:36.007 +03:00 [DBG] - MyCompanyName.MyProjectName.MyProjectNameDomainSharedModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.Validation.AbpValidationModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.Localization.AbpLocalizationModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.Settings.AbpSettingsModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.Security.AbpSecurityModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.Data.AbpDataModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.Uow.AbpUnitOfWorkModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.Threading.AbpThreadingModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.Json.AbpJsonAbstractionsModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.Timing.AbpTimingModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.Identity.AbpIdentityDomainSharedModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.Users.AbpUsersDomainSharedModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.Features.AbpFeaturesModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.OpenIddict.AbpOpenIddictDomainSharedModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.Auditing.AbpAuditingModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.Json.AbpJsonModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.Auditing.AbpAuditingContractsModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.Domain.AbpDddDomainModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.EventBus.AbpEventBusModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.Guids.AbpGuidsModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.Specifications.AbpSpecificationsModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.Caching.AbpCachingModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.Serialization.AbpSerializationModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.Domain.AbpDddDomainSharedModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.Mapperly.AbpMapperlyModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.Identity.AbpIdentityDomainModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.Users.AbpUsersDomainModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.Users.AbpUsersAbstractionModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.OpenIddict.AbpOpenIddictDomainModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.PermissionManagement.OpenIddict.AbpPermissionManagementDomainOpenIddictModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.Authorization.AbpAuthorizationModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule -2026-01-16 11:13:36.007 +03:00 [DBG] - Volo.Abp.Emailing.AbpEmailingModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.TextTemplating.AbpTextTemplatingModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.Account.AbpAccountApplicationModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.Account.AbpAccountApplicationContractsModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.Application.AbpDddApplicationContractsModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.Identity.AbpIdentityApplicationModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.Application.AbpDddApplicationModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.Http.AbpHttpAbstractionsModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.UI.AbpUiModule -2026-01-16 11:13:36.008 +03:00 [DBG] - MyCompanyName.MyProjectName.MyProjectNameApplicationContractsModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule -2026-01-16 11:13:36.008 +03:00 [DBG] - MyCompanyName.MyProjectName.EntityFrameworkCore.MyProjectNameEntityFrameworkCoreModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.OpenIddict.EntityFrameworkCore.AbpOpenIddictEntityFrameworkCoreModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule -2026-01-16 11:13:36.008 +03:00 [DBG] - MyCompanyName.MyProjectName.MyProjectNameHttpApiModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.Account.AbpAccountHttpApiModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.Identity.AbpIdentityHttpApiModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.Http.AbpHttpModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.Minify.AbpMinifyModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.AspNetCore.AbpAspNetCoreAbstractionsModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.Autofac.AbpAutofacModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.Castle.AbpCastleCoreModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.Account.Web.AbpAccountWebOpenIddictModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.Account.Web.AbpAccountWebModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.AspNetCore.Bundling.AbpAspNetCoreBundlingModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.OpenIddict.AbpOpenIddictAspNetCoreModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.Server.LeptonXLiteTheme.AbpAspNetCoreComponentsServerLeptonXLiteThemeModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme.AbpAspNetCoreComponentsWebLeptonXLiteThemeModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.Web.Theming.AbpAspNetCoreComponentsWebThemingModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.BlazoriseUI.AbpBlazoriseUIModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.Web.AbpAspNetCoreComponentsWebModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.AbpAspNetCoreComponentsModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.Server.Theming.AbpAspNetCoreComponentsServerThemingModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.Server.AbpAspNetCoreComponentsServerModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.Http.Client.AbpHttpClientModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.RemoteServices.AbpRemoteServicesModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.WebAssembly.LeptonXLiteTheme.Bundling.AbpAspNetCoreComponentsWebAssemblyLeptonXLiteThemeBundlingModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.AbpAspNetCoreComponentsWebAssemblyThemingBundlingModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Theme.LeptonXLite.AbpAspNetCoreMvcUiLeptonXLiteThemeModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.Identity.Blazor.Server.AbpIdentityBlazorServerModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.Identity.Blazor.AbpIdentityBlazorModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.PermissionManagement.Blazor.AbpPermissionManagementBlazorModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.PermissionManagement.Blazor.Server.AbpPermissionManagementBlazorServerModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.TenantManagement.Blazor.Server.AbpTenantManagementBlazorServerModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.TenantManagement.Blazor.AbpTenantManagementBlazorModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.FeatureManagement.Blazor.AbpFeatureManagementBlazorModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.SettingManagement.Blazor.AbpSettingManagementBlazorModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.FeatureManagement.Blazor.Server.AbpFeatureManagementBlazorServerModule -2026-01-16 11:13:36.008 +03:00 [DBG] - Volo.Abp.SettingManagement.Blazor.Server.AbpSettingManagementBlazorServerModule -2026-01-16 11:13:36.072 +03:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker -2026-01-16 11:13:36.095 +03:00 [DBG] Started background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2026-01-16 11:13:38.072 +03:00 [INF] User profile is available. Using 'C:\Users\ismai\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2026-01-16 11:13:38.723 +03:00 [INF] Initialized all ABP modules. -2026-01-16 11:13:38.954 +03:00 [INF] Now listening on: https://localhost:44308 -2026-01-16 11:13:38.955 +03:00 [INF] Application started. Press Ctrl+C to shut down. -2026-01-16 11:13:38.955 +03:00 [INF] Hosting environment: Development -2026-01-16 11:13:38.955 +03:00 [INF] Content root path: D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp -2026-01-16 11:18:32.440 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/ - null null -2026-01-16 11:18:34.272 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:34.289 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:34.293 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:34.294 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:34.295 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:34.313 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:34.314 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:34.314 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:34.316 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:34.316 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:34.318 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:34.318 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:34.319 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:34.383 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:34.384 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:34.385 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:34.386 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:34.387 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:34.388 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:34.389 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:34.453 +03:00 [INF] Executing endpoint '/ (/)' -2026-01-16 11:18:34.706 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2026-01-16 11:18:34.710 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2026-01-16 11:18:34.748 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2026-01-16 11:18:34.749 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2026-01-16 11:18:34.840 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2026-01-16 11:18:34.845 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2026-01-16 11:18:34.965 +03:00 [INF] Executed endpoint '/ (/)' -2026-01-16 11:18:34.982 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/ - 200 null text/html; charset=utf-8 2542.3282ms -2026-01-16 11:18:35.024 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/bootstrap/css/bootstrap.css - null null -2026-01-16 11:18:35.024 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2026-01-16 11:18:35.024 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/all.css - null null -2026-01-16 11:18:35.024 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2026-01-16 11:18:35.024 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise/blazorise.css - null null -2026-01-16 11:18:35.024 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2026-01-16 11:18:35.024 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2026-01-16 11:18:35.025 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2026-01-16 11:18:35.025 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2026-01-16 11:18:35.026 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2026-01-16 11:18:35.027 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2026-01-16 11:18:35.027 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2026-01-16 11:18:35.027 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2026-01-16 11:18:35.027 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2026-01-16 11:18:35.028 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2026-01-16 11:18:35.028 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2026-01-16 11:18:35.028 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css - null null -2026-01-16 11:18:35.029 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/blazor-global-styles.css - null null -2026-01-16 11:18:35.029 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2026-01-16 11:18:35.030 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/bg-01.png - null null -2026-01-16 11:18:35.030 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/img-support.png - null null -2026-01-16 11:18:35.031 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/img-blog.png - null null -2026-01-16 11:18:35.031 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.031 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.031 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.031 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.031 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.031 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.031 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.031 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.031 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.033 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.033 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.033 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.033 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.033 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.033 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.033 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.033 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.033 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.033 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.034 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.034 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.034 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.034 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.034 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.034 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.034 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.034 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.034 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.034 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - null null -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.034 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.034 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.034 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.034 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.034 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.034 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.034 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.034 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.034 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.034 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.035 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.035 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.035 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.035 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.035 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.035 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.035 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.035 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.035 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.035 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.035 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.035 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.035 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.035 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.035 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.035 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.035 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.035 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.035 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.035 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.035 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.035 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.035 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.035 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.035 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.035 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.035 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.035 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.035 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.035 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.035 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.035 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.035 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.035 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.035 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.035 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.035 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.035 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.036 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.036 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.036 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.036 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.036 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.036 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.036 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.036 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.036 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.036 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.036 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.036 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.036 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.036 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.036 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.036 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.036 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.036 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.036 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.036 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.036 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.036 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.036 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.036 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.036 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.036 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.036 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.036 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.036 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.036 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.036 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.036 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.037 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - null null -2026-01-16 11:18:35.037 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - null null -2026-01-16 11:18:35.038 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.038 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.038 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.038 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.038 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.038 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.038 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.038 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.038 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.038 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.038 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.038 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.038 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.038 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.038 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.038 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.038 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.038 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.038 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.038 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.038 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.038 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.038 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.038 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.038 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.039 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - null null -2026-01-16 11:18:35.039 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.039 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.039 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.039 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.039 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - null null -2026-01-16 11:18:35.039 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/blazor.web.js - null null -2026-01-16 11:18:35.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.039 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.039 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.039 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.039 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.039 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.040 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.040 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.040 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.040 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.040 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.040 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.040 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.040 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.040 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.040 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.040 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.040 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.040 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.040 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.040 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.040 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.040 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.040 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.040 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.040 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.040 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.040 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.040 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.040 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.040 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.040 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.041 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.040 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.041 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.041 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.041 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.041 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.041 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.041 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.041 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.041 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.041 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.041 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.041 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.041 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.041 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.041 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.041 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.041 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.041 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.041 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.041 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.041 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.041 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.041 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.041 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.041 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.041 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.041 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.041 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.041 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.041 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.041 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.041 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.041 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.041 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.041 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.041 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.042 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.042 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.042 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.042 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.042 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.042 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.042 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.042 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.050 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\8wavgvnzyu-{0}-zxtkyfow31-zxtkyfow31.gz' -2026-01-16 11:18:35.050 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.051 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\obj\Debug\net10.0\compressed\p1g0cu86en-{0}-c25c931rn9-c25c931rn9.gz' -2026-01-16 11:18:35.051 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.050 +03:00 [INF] Sending file. Request path: 'blazor-global-styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\smexgl05zq-{0}-y3n6denrdr-y3n6denrdr.gz' -2026-01-16 11:18:35.051 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.051 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.BlazoriseUI\obj\Debug\net10.0\compressed\jpg9ocpd9d-{0}-ijisvpsc99-ijisvpsc99.gz' -2026-01-16 11:18:35.051 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.051 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1375 text/css 27.1766ms -2026-01-16 11:18:35.051 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1571 text/css 25.9896ms -2026-01-16 11:18:35.051 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/blazor-global-styles.css - 200 641 text/css 22.2675ms -2026-01-16 11:18:35.051 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 554 text/css 25.6017ms -2026-01-16 11:18:35.051 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\obj\Debug\net10.0\compressed\2mj6s76mwx-{0}-qb38od44a4-qb38od44a4.gz' -2026-01-16 11:18:35.051 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.051 +03:00 [INF] Sending file. Request path: 'MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s4s6fpr8ex-{0}-3fgcsmkvgt-3fgcsmkvgt.gz' -2026-01-16 11:18:35.051 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 486 text/javascript 18.5238ms -2026-01-16 11:18:35.051 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.051 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css - 200 440 text/css 22.9289ms -2026-01-16 11:18:35.054 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\obj\Debug\net10.0\compressed\rhkuekteef-{0}-cowusv9rvg-cowusv9rvg.gz' -2026-01-16 11:18:35.054 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\n4ou5exnd0-{0}-rm8d4uw1xt-rm8d4uw1xt.gz' -2026-01-16 11:18:35.054 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\s4smcv2x8q-{0}-g4bw0cwf8b-g4bw0cwf8b.gz' -2026-01-16 11:18:35.054 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\vh1p5m06vo-{0}-v8qf0vxgcf-v8qf0vxgcf.gz' -2026-01-16 11:18:35.055 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.055 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.055 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.055 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.055 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - 200 79 text/javascript 16.3075ms -2026-01-16 11:18:35.055 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8981 text/javascript 25.7483ms -2026-01-16 11:18:35.055 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 200 2073 text/css 29.5543ms -2026-01-16 11:18:35.055 +03:00 [INF] Sending file. Request path: '_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\3wqf99oqz3-{0}-yj3izxkafq-yj3izxkafq.gz' -2026-01-16 11:18:35.055 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.056 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11514 text/css 31.6357ms -2026-01-16 11:18:35.055 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - 200 89521 text/javascript 18.028ms -2026-01-16 11:18:35.059 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\dfuwed8qp2-{0}-9fxst9u6yk-9fxst9u6yk.gz' -2026-01-16 11:18:35.059 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.059 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 38549 text/css 35.2613ms -2026-01-16 11:18:35.060 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\0vulsgakzi-{0}-2ej0o14t5y-2ej0o14t5y.gz' -2026-01-16 11:18:35.060 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.060 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/all.css - 200 110162 text/css 36.3131ms -2026-01-16 11:18:35.061 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\m3eknofir4-{0}-2s3j35qcl3-2s3j35qcl3.gz' -2026-01-16 11:18:35.061 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.062 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3437 text/css 34.9183ms -2026-01-16 11:18:35.062 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\rsrgg46xj8-{0}-iv1s27gl02-iv1s27gl02.gz' -2026-01-16 11:18:35.062 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.062 +03:00 [INF] Sending file. Request path: 'libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\jzp36yfch8-{0}-evu8y4tl4x-evu8y4tl4x.gz' -2026-01-16 11:18:35.062 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.062 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 160 text/css 33.8526ms -2026-01-16 11:18:35.062 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/bootstrap/css/bootstrap.css - 200 280384 text/css 38.2802ms -2026-01-16 11:18:35.062 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\r2uuktpx6f-{0}-6b3ds5ivoj-6b3ds5ivoj.gz' -2026-01-16 11:18:35.062 +03:00 [INF] Sending file. Request path: '_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\e387mq197c-{0}-6u1si05klx-6u1si05klx.gz' -2026-01-16 11:18:35.062 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.062 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.062 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - 200 6705 text/javascript 25.034ms -2026-01-16 11:18:35.062 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\gc6nt57s39-{0}-j9nrdmskni-j9nrdmskni.gz' -2026-01-16 11:18:35.062 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 200 11309 text/css 37.9869ms -2026-01-16 11:18:35.062 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\84cagnple0-{0}-f4u7ed2kpg-f4u7ed2kpg.gz' -2026-01-16 11:18:35.062 +03:00 [INF] Sending file. Request path: '_content/Blazorise/blazorise.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\gaui1z37so-{0}-mpy3qnus3c-mpy3qnus3c.gz' -2026-01-16 11:18:35.062 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.062 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.062 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.062 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - 200 10149 text/javascript 23.8676ms -2026-01-16 11:18:35.062 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 200 10555 text/css 35.5312ms -2026-01-16 11:18:35.062 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise/blazorise.css - 200 9707 text/css 38.7236ms -2026-01-16 11:18:35.063 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\4fh1mvs9e3-{0}-xjm6tbvzai-xjm6tbvzai.gz' -2026-01-16 11:18:35.063 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.063 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 9150 text/css 35.2524ms -2026-01-16 11:18:35.063 +03:00 [INF] Sending file. Request path: 'images/getting-started/img-blog.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\img-blog.png' -2026-01-16 11:18:35.063 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.063 +03:00 [INF] Sending file. Request path: 'images/getting-started/img-support.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\img-support.png' -2026-01-16 11:18:35.063 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.063 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/img-blog.png - 200 30220 image/png 31.9727ms -2026-01-16 11:18:35.063 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/img-support.png - 200 23461 image/png 32.6288ms -2026-01-16 11:18:35.063 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\7rs73t1cee-{0}-3rszlhur0z-3rszlhur0z.gz' -2026-01-16 11:18:35.063 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.063 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 200 38298 text/css 35.6402ms -2026-01-16 11:18:35.063 +03:00 [INF] Sending file. Request path: '_framework/blazor.web.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\ocy8dvewdt-{0}-2i0r6wwb69-2i0r6wwb69.gz' -2026-01-16 11:18:35.063 +03:00 [INF] Sending file. Request path: 'images/getting-started/bg-01.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\bg-01.png' -2026-01-16 11:18:35.063 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.063 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.063 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/bg-01.png - 200 22111 image/png 33.1969ms -2026-01-16 11:18:35.063 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/blazor.web.js - 200 55628 text/javascript 24.0264ms -2026-01-16 11:18:35.063 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\e7v19mgtln-{0}-gf8iscesmb-gf8iscesmb.gz' -2026-01-16 11:18:35.063 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.063 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 31622 text/css 35.6714ms -2026-01-16 11:18:35.087 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.PermissionManagement.Blazor/Volo.Abp.PermissionManagement.Blazor.p33ll9g8os.bundle.scp.css - null null -2026-01-16 11:18:35.281 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\opydoeiarj-{0}-tzi6clbx5p-tzi6clbx5p.gz' -2026-01-16 11:18:35.281 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.281 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - 200 216594 text/javascript 246.3396ms -2026-01-16 11:18:35.336 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.336 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.336 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.336 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.336 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.336 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.336 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.336 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.336 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.337 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.337 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.337 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.337 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.337 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.337 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.337 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.337 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.337 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.337 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.337 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.337 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.340 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.PermissionManagement.Blazor/Volo.Abp.PermissionManagement.Blazor.p33ll9g8os.bundle.scp.css'. Physical path: 'D:\GitHub\abp\modules\permission-management\src\Volo.Abp.PermissionManagement.Blazor\obj\Debug\net10.0\compressed\lxble3k5fs-{0}-p33ll9g8os-p33ll9g8os.gz' -2026-01-16 11:18:35.340 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.340 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.PermissionManagement.Blazor/Volo.Abp.PermissionManagement.Blazor.p33ll9g8os.bundle.scp.css - 200 1107 text/css 253.2576ms -2026-01-16 11:18:35.350 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/logo/leptonx/logo-light.png - null null -2026-01-16 11:18:35.355 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.355 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.355 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.355 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.355 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.355 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.355 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.355 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.355 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.355 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.355 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.355 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.355 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.356 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.356 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.356 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.356 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.356 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.356 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.356 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.356 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.361 +03:00 [INF] Sending file. Request path: 'images/logo/leptonx/logo-light.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\logo\leptonx\logo-light.png' -2026-01-16 11:18:35.361 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.361 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/logo/leptonx/logo-light.png - 200 33228 image/png 10.4457ms -2026-01-16 11:18:35.393 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2026-01-16 11:18:35.393 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2026-01-16 11:18:35.394 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 - null null -2026-01-16 11:18:35.398 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.398 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.398 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.398 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.398 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.398 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.398 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.398 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.398 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.398 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.399 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.399 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.399 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.399 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.399 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.399 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.399 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.399 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.399 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.399 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.399 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.399 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.399 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.399 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.399 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.399 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.399 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.399 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.399 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.399 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.399 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.399 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.399 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.399 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.399 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.399 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.399 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.399 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.399 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.399 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.399 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.399 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.407 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.407 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.408 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.408 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.408 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-brands-400.woff2' -2026-01-16 11:18:35.408 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.408 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 - 200 101224 font/woff2 14.2575ms -2026-01-16 11:18:35.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.409 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.409 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' -2026-01-16 11:18:35.409 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.409 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 113152 font/woff2 15.8603ms -2026-01-16 11:18:35.409 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.409 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.409 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.410 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.410 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.410 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.410 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.410 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.421 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js - null null -2026-01-16 11:18:35.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.422 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.422 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.422 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.422 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.422 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.423 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.423 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.423 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.423 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.423 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.423 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.423 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.423 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.428 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2'. Physical path: 'C:\Users\ismai\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\5.0.0\staticwebassets\side-menu\libs\bootstrap-icons\font\fonts\bootstrap-icons.woff2' -2026-01-16 11:18:35.428 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.428 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 35.0037ms -2026-01-16 11:18:35.457 +03:00 [INF] Sending file. Request path: '_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js'. Physical path: 'C:\Users\ismai\.nuget\packages\microsoft.dotnet.hotreload.webassembly.browser\10.0.102\staticwebassets\Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js' -2026-01-16 11:18:35.457 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.458 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js - 200 1862 text/javascript 36.8047ms -2026-01-16 11:18:35.463 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.js - null null -2026-01-16 11:18:35.464 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.464 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.465 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.465 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.465 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.465 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.465 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.465 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.465 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.465 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.465 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.465 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.465 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.465 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.465 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.465 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.465 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.465 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.465 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.465 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.466 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.585 +03:00 [INF] Sending file. Request path: '_framework/dotnet.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uxk8is50o9-{0}-tim1hs1943-tim1hs1943.gz' -2026-01-16 11:18:35.585 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.585 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.js - 200 138711 text/javascript 122.1671ms -2026-01-16 11:18:35.815 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.0j6ezsi0n0.js - null null -2026-01-16 11:18:35.815 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.native.muve7a13r4.wasm - null null -2026-01-16 11:18:35.815 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.native.cs8mcre4gh.js - null null -2026-01-16 11:18:35.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.816 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.816 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.816 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.816 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.816 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.816 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.816 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.816 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.816 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.816 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.816 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.816 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.817 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.817 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.817 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.817 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.817 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.817 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.817 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.817 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.817 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.817 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.817 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.817 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.817 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.817 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.817 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.817 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.817 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.817 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.817 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.817 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.817 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.817 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.817 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.817 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.817 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.817 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.817 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.818 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44308/_blazor/negotiate?negotiateVersion=1 - null 0 -2026-01-16 11:18:35.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.819 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.819 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.819 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.819 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.820 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.820 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.820 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.820 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.820 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.820 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.820 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.820 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.821 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.826 +03:00 [INF] Sending file. Request path: '_framework/dotnet.native.cs8mcre4gh.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\k6ua61tyqb-{0}-cs8mcre4gh-cs8mcre4gh.gz' -2026-01-16 11:18:35.826 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.826 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.native.cs8mcre4gh.js - 200 34952 text/javascript 10.9166ms -2026-01-16 11:18:35.827 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.827 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44308/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 8.2726ms -2026-01-16 11:18:35.827 +03:00 [INF] Sending file. Request path: '_framework/dotnet.runtime.0j6ezsi0n0.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ilxt1pu9fi-{0}-0j6ezsi0n0-0j6ezsi0n0.gz' -2026-01-16 11:18:35.827 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.827 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.0j6ezsi0n0.js - 200 57287 text/javascript 11.6852ms -2026-01-16 11:18:35.842 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/favicon.ico - null null -2026-01-16 11:18:35.842 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.JavaScript.flbdejno7d.wasm - null null -2026-01-16 11:18:35.843 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.843 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.843 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.843 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.843 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.843 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.843 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.843 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.843 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.843 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.843 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.843 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.843 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.844 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.923 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.923 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.923 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.923 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.923 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.923 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.924 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.924 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44308/_blazor?id=XkNejh4vL1AwZzwjMYt63Q - null null -2026-01-16 11:18:35.924 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.924 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.924 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.924 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.924 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.925 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.925 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.925 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.925 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.925 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.925 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.925 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.925 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.925 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.925 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.925 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.926 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.926 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.926 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.926 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.926 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.929 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'N/A' -2026-01-16 11:18:35.929 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/favicon.ico - 200 38078 image/x-icon 87.706ms -2026-01-16 11:18:35.941 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.InteropServices.JavaScript.flbdejno7d.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s7btk1c9a3-{0}-flbdejno7d-flbdejno7d.gz' -2026-01-16 11:18:35.941 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.941 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.JavaScript.flbdejno7d.wasm - 200 79680 application/wasm 99.0339ms -2026-01-16 11:18:35.944 +03:00 [INF] Sending file. Request path: '_framework/dotnet.native.muve7a13r4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uv3ayj7441-{0}-muve7a13r4-muve7a13r4.gz' -2026-01-16 11:18:35.944 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:35.944 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.native.muve7a13r4.wasm - 200 1207839 application/wasm 128.7983ms -2026-01-16 11:18:35.954 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.CoreLib.zjh2w4p93l.wasm - null null -2026-01-16 11:18:35.955 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.955 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:35.955 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:35.955 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:35.955 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.955 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:35.955 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:35.955 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:35.955 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:35.955 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:35.955 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.955 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:35.955 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:35.955 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:35.955 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:35.956 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:35.956 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:35.956 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:35.956 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:35.956 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:35.956 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.023 +03:00 [INF] Sending file. Request path: '_framework/System.Private.CoreLib.zjh2w4p93l.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6as1brjopk-{0}-zjh2w4p93l-zjh2w4p93l.gz' -2026-01-16 11:18:36.023 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.023 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.CoreLib.zjh2w4p93l.wasm - 200 4870686 application/wasm 69.4724ms -2026-01-16 11:18:36.051 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.oocz43qncp.pdb - null null -2026-01-16 11:18:36.051 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.052 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.052 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.052 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.052 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.052 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.052 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.052 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.052 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.052 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.052 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.052 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.052 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.053 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.068 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.oocz43qncp.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vvrxtc2ro0-{0}-oocz43qncp-oocz43qncp.gz' -2026-01-16 11:18:36.068 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.068 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.oocz43qncp.pdb - 200 18593 application/octet-stream 17.0748ms -2026-01-16 11:18:36.078 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.i3frew8tpq.pdb - null null -2026-01-16 11:18:36.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.079 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.079 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.079 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.079 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.080 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.080 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.080 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.080 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.080 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.080 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.080 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.080 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.080 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.080 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.080 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.080 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.080 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.080 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.080 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.080 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.098 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.i3frew8tpq.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6vzgo2e02t-{0}-i3frew8tpq-i3frew8tpq.gz' -2026-01-16 11:18:36.098 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.098 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.i3frew8tpq.pdb - 200 18845 application/octet-stream 19.7538ms -2026-01-16 11:18:36.102 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.Theming.mlpl3aj6pj.pdb - null null -2026-01-16 11:18:36.102 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.102 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.102 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.102 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.102 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.103 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.103 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.103 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.104 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.117 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.Theming.mlpl3aj6pj.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\30xmw4tf08-{0}-mlpl3aj6pj-mlpl3aj6pj.gz' -2026-01-16 11:18:36.117 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.117 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.Theming.mlpl3aj6pj.pdb - 200 38310 application/octet-stream 15.3053ms -2026-01-16 11:18:36.121 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.WebAssembly.nl4jd2ajr0.pdb - null null -2026-01-16 11:18:36.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.122 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.123 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.123 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.123 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.123 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.123 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.123 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.123 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.123 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.133 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Autofac.WebAssembly.nl4jd2ajr0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\46uzmq97el-{0}-nl4jd2ajr0-nl4jd2ajr0.gz' -2026-01-16 11:18:36.133 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.133 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.WebAssembly.nl4jd2ajr0.pdb - 200 17837 application/octet-stream 12.56ms -2026-01-16 11:18:36.137 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.WebAssembly.ej5ubu9cbd.pdb - null null -2026-01-16 11:18:36.138 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.138 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.139 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.139 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.139 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.139 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.139 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.139 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.139 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.139 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.139 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.139 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.139 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.139 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.140 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.140 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.140 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.140 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.140 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.140 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.140 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.147 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/all.css - null null -2026-01-16 11:18:36.147 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/bootstrap/css/bootstrap.css - null null -2026-01-16 11:18:36.147 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2026-01-16 11:18:36.147 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2026-01-16 11:18:36.147 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise/blazorise.css - null null -2026-01-16 11:18:36.147 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2026-01-16 11:18:36.147 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2026-01-16 11:18:36.147 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2026-01-16 11:18:36.147 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2026-01-16 11:18:36.148 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2026-01-16 11:18:36.148 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2026-01-16 11:18:36.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.149 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.149 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.149 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.149 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.149 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.150 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.150 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.150 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.150 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.150 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.150 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.150 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.150 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.150 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.150 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.150 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.150 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.150 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.150 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.150 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.150 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.150 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.150 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.150 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.150 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.150 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.150 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.150 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.151 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.151 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.151 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.151 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.151 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.151 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.151 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.151 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.151 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.151 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.151 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.151 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.151 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.151 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.151 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.151 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.151 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.151 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.151 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.151 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.151 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.151 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.151 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.151 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.151 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.151 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.151 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.151 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.151 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.151 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.151 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.151 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.151 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.151 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.151 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.151 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.151 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.151 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.151 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.151 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.151 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.151 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.151 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.152 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\obj\Debug\net10.0\compressed\p1g0cu86en-{0}-c25c931rn9-c25c931rn9.gz' -2026-01-16 11:18:36.152 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.BlazoriseUI\obj\Debug\net10.0\compressed\jpg9ocpd9d-{0}-ijisvpsc99-ijisvpsc99.gz' -2026-01-16 11:18:36.152 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.152 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.152 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1375 text/css 5.101ms -2026-01-16 11:18:36.152 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1571 text/css 4.3787ms -2026-01-16 11:18:36.152 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.152 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.152 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.152 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.152 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.152 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2026-01-16 11:18:36.152 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.152 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.152 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.152 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2026-01-16 11:18:36.152 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.152 +03:00 [INF] The file _content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css was not modified -2026-01-16 11:18:36.152 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.152 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.152 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.152 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.152 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2026-01-16 11:18:36.152 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.153 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 304 null text/css 4.6804ms -2026-01-16 11:18:36.153 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2026-01-16 11:18:36.153 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.153 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.153 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.153 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.153 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.153 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.153 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.153 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2026-01-16 11:18:36.153 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/blazor-global-styles.css - null null -2026-01-16 11:18:36.153 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.153 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css - null null -2026-01-16 11:18:36.153 +03:00 [INF] The file _content/Blazorise.Bootstrap5/blazorise.bootstrap5.css was not modified -2026-01-16 11:18:36.153 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.153 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 304 null text/css 6.441ms -2026-01-16 11:18:36.153 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.153 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.153 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2026-01-16 11:18:36.154 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.154 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.154 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.154 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.154 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.154 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.154 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.154 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.154 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.154 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.154 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.154 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.154 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\0vulsgakzi-{0}-2ej0o14t5y-2ej0o14t5y.gz' -2026-01-16 11:18:36.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.154 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.154 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.154 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.154 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.154 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.154 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.154 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.154 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.154 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/all.css - 200 110162 text/css 7.4537ms -2026-01-16 11:18:36.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.154 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.154 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.154 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.154 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.154 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.154 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.154 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.154 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.154 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.154 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.154 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.154 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.154 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.154 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.154 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.154 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2026-01-16 11:18:36.154 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.154 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.154 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.154 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\dfuwed8qp2-{0}-9fxst9u6yk-9fxst9u6yk.gz' -2026-01-16 11:18:36.155 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.155 +03:00 [INF] Sending file. Request path: '_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\3wqf99oqz3-{0}-yj3izxkafq-yj3izxkafq.gz' -2026-01-16 11:18:36.155 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.155 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11514 text/css 7.6982ms -2026-01-16 11:18:36.155 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 38549 text/css 7.9573ms -2026-01-16 11:18:36.155 +03:00 [INF] Sending file. Request path: 'blazor-global-styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\smexgl05zq-{0}-y3n6denrdr-y3n6denrdr.gz' -2026-01-16 11:18:36.155 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\8wavgvnzyu-{0}-zxtkyfow31-zxtkyfow31.gz' -2026-01-16 11:18:36.155 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.155 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.155 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/blazor-global-styles.css - 200 641 text/css 2.2478ms -2026-01-16 11:18:36.155 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 554 text/css 7.4948ms -2026-01-16 11:18:36.155 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.155 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2026-01-16 11:18:36.156 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2026-01-16 11:18:36.156 +03:00 [INF] Sending file. Request path: 'MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s4s6fpr8ex-{0}-3fgcsmkvgt-3fgcsmkvgt.gz' -2026-01-16 11:18:36.156 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.156 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css - 200 440 text/css 2.9974ms -2026-01-16 11:18:36.160 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Blazor.WebAssembly.ej5ubu9cbd.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8k9894ktkw-{0}-ej5ubu9cbd-ej5ubu9cbd.gz' -2026-01-16 11:18:36.160 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.160 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.WebAssembly.ej5ubu9cbd.pdb - 200 18837 application/octet-stream 23.1311ms -2026-01-16 11:18:36.161 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2026-01-16 11:18:36.161 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2026-01-16 11:18:36.161 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.161 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.162 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.162 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.162 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.162 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.162 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.162 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.162 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.162 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.162 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.162 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.162 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.163 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.166 +03:00 [INF] Sending file. Request path: 'libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\jzp36yfch8-{0}-evu8y4tl4x-evu8y4tl4x.gz' -2026-01-16 11:18:36.166 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.166 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/bootstrap/css/bootstrap.css - 200 280384 text/css 19.2514ms -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.169 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.169 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.169 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.169 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.169 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.169 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.169 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.169 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.169 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.169 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.169 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.169 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.169 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.169 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.169 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.169 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.169 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.169 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.169 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.169 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.169 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.169 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.169 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.169 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.169 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.169 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.169 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.169 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.169 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.169 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.169 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.169 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.169 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.169 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.169 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.169 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.169 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.169 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.169 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.169 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.169 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.169 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.169 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.169 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.169 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.169 +03:00 [INF] The file _content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css was not modified -2026-01-16 11:18:36.169 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.170 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 304 null text/css 17.0625ms -2026-01-16 11:18:36.170 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\rsrgg46xj8-{0}-iv1s27gl02-iv1s27gl02.gz' -2026-01-16 11:18:36.170 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.170 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\m3eknofir4-{0}-2s3j35qcl3-2s3j35qcl3.gz' -2026-01-16 11:18:36.170 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.170 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 160 text/css 17.4402ms -2026-01-16 11:18:36.170 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3437 text/css 17.8497ms -2026-01-16 11:18:36.170 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\e7v19mgtln-{0}-gf8iscesmb-gf8iscesmb.gz' -2026-01-16 11:18:36.170 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.170 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 31622 text/css 17.8108ms -2026-01-16 11:18:36.170 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\4fh1mvs9e3-{0}-xjm6tbvzai-xjm6tbvzai.gz' -2026-01-16 11:18:36.170 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.171 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 9150 text/css 18.1846ms -2026-01-16 11:18:36.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.193 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.194 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.194 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.194 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.194 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.194 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.194 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.194 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.194 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.194 +03:00 [INF] The file _content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css was not modified -2026-01-16 11:18:36.194 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.194 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 304 null text/css 46.8401ms -2026-01-16 11:18:36.214 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.PermissionManagement.Blazor/Volo.Abp.PermissionManagement.Blazor.p33ll9g8os.bundle.scp.css - null null -2026-01-16 11:18:36.217 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.217 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.217 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.217 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.217 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.217 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.217 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.218 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.218 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.218 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.218 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.218 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.218 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.218 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.218 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.218 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.220 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.PermissionManagement.Blazor/Volo.Abp.PermissionManagement.Blazor.p33ll9g8os.bundle.scp.css'. Physical path: 'D:\GitHub\abp\modules\permission-management\src\Volo.Abp.PermissionManagement.Blazor\obj\Debug\net10.0\compressed\lxble3k5fs-{0}-p33ll9g8os-p33ll9g8os.gz' -2026-01-16 11:18:36.220 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.220 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.PermissionManagement.Blazor/Volo.Abp.PermissionManagement.Blazor.p33ll9g8os.bundle.scp.css - 200 1107 text/css 5.9893ms -2026-01-16 11:18:36.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.225 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.225 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.225 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.225 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.226 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.226 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.226 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.226 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.226 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.226 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.226 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.226 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.226 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.226 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.226 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.226 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.226 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.226 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.226 +03:00 [INF] The file _content/Blazorise/blazorise.css was not modified -2026-01-16 11:18:36.227 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.227 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise/blazorise.css - 304 null text/css 79.8898ms -2026-01-16 11:18:36.233 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2026-01-16 11:18:36.233 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 - null null -2026-01-16 11:18:36.233 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2026-01-16 11:18:36.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.236 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.236 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.236 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.236 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.236 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.236 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.236 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.236 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.236 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.236 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.236 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.236 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.236 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.236 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.236 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.236 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.237 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.237 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.237 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.237 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.237 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.237 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.237 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.237 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.237 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.237 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.237 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.237 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.237 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.237 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.237 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.237 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.237 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.237 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.237 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.237 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.237 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.237 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.237 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.237 +03:00 [INF] The file libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 was not modified -2026-01-16 11:18:36.237 +03:00 [INF] The file libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 was not modified -2026-01-16 11:18:36.237 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.237 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.237 +03:00 [INF] The file _content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2 was not modified -2026-01-16 11:18:36.237 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.237 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 304 null font/woff2 4.5018ms -2026-01-16 11:18:36.237 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 - 304 null font/woff2 4.4936ms -2026-01-16 11:18:36.237 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 304 null font/woff2 4.4398ms -2026-01-16 11:18:36.246 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2 - null null -2026-01-16 11:18:36.247 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.247 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.247 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.247 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.247 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.248 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.248 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.248 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.248 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.248 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.248 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.248 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.248 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.248 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.252 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-regular-400.woff2' -2026-01-16 11:18:36.252 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.252 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2 - 200 18988 font/woff2 6.0789ms -2026-01-16 11:18:36.265 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.WebAssembly.yp9rkbukw7.pdb - null null -2026-01-16 11:18:36.266 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.266 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.266 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.266 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.266 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.266 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.266 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.266 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.266 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.266 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.266 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.266 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.266 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.267 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.267 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.267 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.267 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.267 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.267 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.267 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.267 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.274 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise/utilities.js?v=1.8.8.0 - null null -2026-01-16 11:18:36.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.276 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.276 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.276 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.276 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.276 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.277 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.277 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.277 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.277 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.277 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.277 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.277 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.277 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.282 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Blazor.WebAssembly.yp9rkbukw7.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6nd3b9ee9q-{0}-yp9rkbukw7-yp9rkbukw7.gz' -2026-01-16 11:18:36.282 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.283 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.WebAssembly.yp9rkbukw7.pdb - 200 18985 application/octet-stream 17.8295ms -2026-01-16 11:18:36.287 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.WebAssembly.qwhfqr5x1d.pdb - null null -2026-01-16 11:18:36.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.288 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.288 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.288 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.288 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.288 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.289 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.289 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.289 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.289 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.289 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.289 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.289 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.289 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.302 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Blazor.WebAssembly.qwhfqr5x1d.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tjrpe70mnd-{0}-qwhfqr5x1d-qwhfqr5x1d.gz' -2026-01-16 11:18:36.302 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.302 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.WebAssembly.qwhfqr5x1d.pdb - 200 18417 application/octet-stream 15.1098ms -2026-01-16 11:18:36.307 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.HttpApi.Client.vrd4lpaety.pdb - null null -2026-01-16 11:18:36.307 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.308 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.308 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.308 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.308 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.308 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.308 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.308 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.308 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.308 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.308 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.308 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.308 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.308 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.308 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.308 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.308 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.308 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.308 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.308 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.309 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.316 +03:00 [INF] Sending file. Request path: '_content/Blazorise/utilities.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\yr1uxgfav1-{0}-uy19w6wx8s-uy19w6wx8s.gz' -2026-01-16 11:18:36.316 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.316 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise/utilities.js?v=1.8.8.0 - 200 14853 text/javascript 41.8013ms -2026-01-16 11:18:36.320 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.HttpApi.Client.vrd4lpaety.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wa1oh5lir8-{0}-vrd4lpaety-vrd4lpaety.gz' -2026-01-16 11:18:36.320 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.320 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.HttpApi.Client.vrd4lpaety.pdb - 200 18313 application/octet-stream 13.124ms -2026-01-16 11:18:36.321 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise/vendors/jsencrypt.js?v=1.8.8.0 - null null -2026-01-16 11:18:36.321 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise/vendors/sha512.js?v=1.8.8.0 - null null -2026-01-16 11:18:36.322 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.322 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.322 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.322 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.322 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.322 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.322 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.322 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.322 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.322 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.322 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.322 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.322 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.322 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.322 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.322 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.322 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.322 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.322 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.322 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.322 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.322 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.322 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.322 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.322 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.322 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.323 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.323 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.323 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.323 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.323 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.323 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.323 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.323 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.323 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.323 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.323 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.323 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.323 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.323 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.323 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.323 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.325 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Application.Contracts.2dhu54vbx7.pdb - null null -2026-01-16 11:18:36.326 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.326 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.326 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.326 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.326 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.326 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.326 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.326 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.326 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.326 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.326 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.326 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.326 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.327 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.327 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.327 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.327 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.327 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.327 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.327 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.327 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.340 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Application.Contracts.2dhu54vbx7.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7jvwr8mtd4-{0}-2dhu54vbx7-2dhu54vbx7.gz' -2026-01-16 11:18:36.340 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.340 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Application.Contracts.2dhu54vbx7.pdb - 200 17845 application/octet-stream 15.1997ms -2026-01-16 11:18:36.344 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Domain.Shared.x7d8bcto2o.pdb - null null -2026-01-16 11:18:36.345 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.345 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.345 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.345 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.345 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.345 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.345 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.345 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.345 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.345 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.345 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.345 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.345 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.345 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.345 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.345 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.345 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.346 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.346 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.346 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.346 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.358 +03:00 [INF] Sending file. Request path: '_content/Blazorise/vendors/sha512.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\s7z50pshxl-{0}-luevd9t85z-luevd9t85z.gz' -2026-01-16 11:18:36.358 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.359 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise/vendors/sha512.js?v=1.8.8.0 - 200 17932 text/javascript 37.5509ms -2026-01-16 11:18:36.359 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Domain.Shared.x7d8bcto2o.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rlbmklp40g-{0}-x7d8bcto2o-x7d8bcto2o.gz' -2026-01-16 11:18:36.359 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.359 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Domain.Shared.x7d8bcto2o.pdb - 200 17373 application/octet-stream 14.8885ms -2026-01-16 11:18:36.364 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.xsazfctgia.pdb - null null -2026-01-16 11:18:36.364 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.364 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.364 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.364 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.364 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.364 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.364 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.365 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.365 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.365 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.365 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.365 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.365 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.365 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.365 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.365 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.365 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.365 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.365 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.365 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.365 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.371 +03:00 [INF] Sending file. Request path: '_content/Blazorise/vendors/jsencrypt.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\c4jog3xkz4-{0}-pybrzh7rdh-pybrzh7rdh.gz' -2026-01-16 11:18:36.371 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.371 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise/vendors/jsencrypt.js?v=1.8.8.0 - 200 55472 text/javascript 50.1434ms -2026-01-16 11:18:36.378 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.xsazfctgia.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kaxpuw2pqs-{0}-xsazfctgia-xsazfctgia.gz' -2026-01-16 11:18:36.378 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.378 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.xsazfctgia.pdb - 200 21877 application/octet-stream 14.3102ms -2026-01-16 11:18:36.382 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.k0qwkdpoz5.pdb - null null -2026-01-16 11:18:36.382 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.382 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.382 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.382 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.382 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.382 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.382 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.382 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.383 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.383 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.383 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.383 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.383 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.383 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.383 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.383 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.383 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.383 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.383 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.383 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.383 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.397 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.k0qwkdpoz5.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3g4acw7rc0-{0}-k0qwkdpoz5-k0qwkdpoz5.gz' -2026-01-16 11:18:36.397 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.397 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.k0qwkdpoz5.pdb - 200 28037 application/octet-stream 15.7794ms -2026-01-16 11:18:36.402 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.mq163icaoc.pdb - null null -2026-01-16 11:18:36.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.403 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.404 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.404 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.404 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.404 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.404 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.404 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.404 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.404 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.416 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.mq163icaoc.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wynnfd4qyp-{0}-mq163icaoc-mq163icaoc.gz' -2026-01-16 11:18:36.416 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.417 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.mq163icaoc.pdb - 200 31269 application/octet-stream 15.0265ms -2026-01-16 11:18:36.421 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.7q4l0ejffv.pdb - null null -2026-01-16 11:18:36.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.422 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.422 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.422 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.422 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.422 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.423 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.423 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.423 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.423 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.423 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.423 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.423 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.423 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.437 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.7q4l0ejffv.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mf8v92gj25-{0}-7q4l0ejffv-7q4l0ejffv.gz' -2026-01-16 11:18:36.437 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.437 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.7q4l0ejffv.pdb - 200 13921 application/octet-stream 16.3441ms -2026-01-16 11:18:36.440 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.op2gzd1mow.pdb - null null -2026-01-16 11:18:36.441 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.441 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.441 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.441 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.441 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.441 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.441 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.441 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.441 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.441 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.441 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.441 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.442 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.442 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.442 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.442 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.442 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.442 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.442 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.442 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.442 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.456 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.op2gzd1mow.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\075clw76hm-{0}-op2gzd1mow-op2gzd1mow.gz' -2026-01-16 11:18:36.456 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.456 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.op2gzd1mow.pdb - 200 21557 application/octet-stream 15.3857ms -2026-01-16 11:18:36.459 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BlazoriseUI.mmqd7htn1l.pdb - null null -2026-01-16 11:18:36.459 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.459 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.460 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.460 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.460 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.460 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.460 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.460 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.460 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.460 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.460 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.460 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.460 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.460 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.460 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.460 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.460 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.460 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.460 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.460 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.460 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.472 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BlazoriseUI.mmqd7htn1l.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\twpvgeafup-{0}-mmqd7htn1l-mmqd7htn1l.gz' -2026-01-16 11:18:36.472 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.472 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BlazoriseUI.mmqd7htn1l.pdb - 200 90331 application/octet-stream 13.5475ms -2026-01-16 11:18:36.477 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.goqn4rrfxt.pdb - null null -2026-01-16 11:18:36.477 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.478 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.478 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.478 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.478 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.478 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.478 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.478 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.478 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.478 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.478 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.478 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.478 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.478 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.478 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.478 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.478 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.478 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.478 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.478 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.479 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.491 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Blazor.goqn4rrfxt.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nxy69wfnbj-{0}-goqn4rrfxt-goqn4rrfxt.gz' -2026-01-16 11:18:36.491 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.491 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.goqn4rrfxt.pdb - 200 31373 application/octet-stream 14.1444ms -2026-01-16 11:18:36.494 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.WebAssembly.y8ueju1cms.pdb - null null -2026-01-16 11:18:36.495 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.495 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.495 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.495 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.495 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.495 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.495 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.495 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.495 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.495 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.495 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.495 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.495 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.496 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.496 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.496 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.496 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.496 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.496 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.496 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.496 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.511 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Blazor.WebAssembly.y8ueju1cms.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\h94qjwjqjn-{0}-y8ueju1cms-y8ueju1cms.gz' -2026-01-16 11:18:36.511 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.511 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.WebAssembly.y8ueju1cms.pdb - 200 18629 application/octet-stream 16.6498ms -2026-01-16 11:18:36.514 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.a0v8yk2p6z.pdb - null null -2026-01-16 11:18:36.515 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.515 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.515 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.515 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.515 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.515 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.515 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.515 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.515 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.515 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.515 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.515 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.515 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.516 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.516 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.516 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.516 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.516 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.516 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.516 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.516 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.530 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Blazor.a0v8yk2p6z.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\g74iyma9hq-{0}-a0v8yk2p6z-a0v8yk2p6z.gz' -2026-01-16 11:18:36.530 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.530 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.a0v8yk2p6z.pdb - 200 50558 application/octet-stream 15.3273ms -2026-01-16 11:18:36.533 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.tb6xgsn8r9.pdb - null null -2026-01-16 11:18:36.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.534 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.535 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.535 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.535 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.535 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.535 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.535 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.535 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.535 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.548 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Blazor.tb6xgsn8r9.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ghku0o6nj3-{0}-tb6xgsn8r9-tb6xgsn8r9.gz' -2026-01-16 11:18:36.548 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.548 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.tb6xgsn8r9.pdb - 200 44770 application/octet-stream 15.2136ms -2026-01-16 11:18:36.552 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.WebAssembly.k6hmr1anff.pdb - null null -2026-01-16 11:18:36.553 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.553 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.553 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.553 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.553 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.554 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.554 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.554 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.554 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.554 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.554 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.554 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.554 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.554 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.554 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.554 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.554 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.554 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.554 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.554 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.554 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.570 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Blazor.WebAssembly.k6hmr1anff.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vbwo5030u7-{0}-k6hmr1anff-k6hmr1anff.gz' -2026-01-16 11:18:36.570 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.570 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.WebAssembly.k6hmr1anff.pdb - 200 18285 application/octet-stream 17.6956ms -2026-01-16 11:18:36.574 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.5rd3y3jxvb.pdb - null null -2026-01-16 11:18:36.574 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.574 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.574 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.574 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.574 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.575 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.575 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.575 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.575 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.575 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.575 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.575 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.575 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.575 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.575 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.575 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.575 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.575 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.575 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.575 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.575 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.588 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Blazor.5rd3y3jxvb.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mphqpa0pxg-{0}-5rd3y3jxvb-5rd3y3jxvb.gz' -2026-01-16 11:18:36.588 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.588 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.5rd3y3jxvb.pdb - 200 42778 application/octet-stream 14.2435ms -2026-01-16 11:18:36.591 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.tz3vfkd0u7.pdb - null null -2026-01-16 11:18:36.592 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.592 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.592 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.592 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.592 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.592 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.592 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.592 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.592 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.592 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.592 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.592 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.592 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.592 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.592 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.592 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.592 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.593 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.593 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.593 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.593 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.606 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Blazor.tz3vfkd0u7.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\z9z5li2flg-{0}-tz3vfkd0u7-tz3vfkd0u7.gz' -2026-01-16 11:18:36.606 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.606 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.tz3vfkd0u7.pdb - 200 29529 application/octet-stream 14.7003ms -2026-01-16 11:18:36.610 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.Application.Contracts.h1zb9l8ean.pdb - null null -2026-01-16 11:18:36.610 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.610 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.610 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.611 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.611 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.611 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.611 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.611 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.611 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.611 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.611 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.611 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.611 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.611 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.611 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.611 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.611 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.611 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.611 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.611 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.611 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.625 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Account.Application.Contracts.h1zb9l8ean.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uzxye9p8cy-{0}-h1zb9l8ean-h1zb9l8ean.gz' -2026-01-16 11:18:36.625 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.625 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.Application.Contracts.h1zb9l8ean.pdb - 200 19021 application/octet-stream 15.24ms -2026-01-16 11:18:36.628 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.HttpApi.Client.xw4sonebra.pdb - null null -2026-01-16 11:18:36.629 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.629 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.629 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.629 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.629 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.629 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.629 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.629 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.629 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.629 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.629 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.629 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.629 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.629 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.629 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.629 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.629 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.629 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.629 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.629 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.630 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.641 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Account.HttpApi.Client.xw4sonebra.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ntmq6e7ewr-{0}-xw4sonebra-xw4sonebra.gz' -2026-01-16 11:18:36.641 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.641 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.HttpApi.Client.xw4sonebra.pdb - 200 18073 application/octet-stream 12.4872ms -2026-01-16 11:18:36.646 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.daohxpbk64.pdb - null null -2026-01-16 11:18:36.647 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.647 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.647 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.647 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.647 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.647 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.647 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.647 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.647 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.647 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.647 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.647 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.647 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.647 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.647 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.647 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.647 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.647 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.647 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.647 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.648 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.662 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.daohxpbk64.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\eoau05i0af-{0}-daohxpbk64-daohxpbk64.gz' -2026-01-16 11:18:36.662 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.662 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.daohxpbk64.pdb - 200 25305 application/octet-stream 16.0321ms -2026-01-16 11:18:36.666 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Contracts.s3jay9lijs.pdb - null null -2026-01-16 11:18:36.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.666 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.666 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.666 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.666 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.667 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.667 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.667 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.667 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.667 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.667 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.667 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.667 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.667 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.678 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.Contracts.s3jay9lijs.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ur1wb3r0pv-{0}-s3jay9lijs-s3jay9lijs.gz' -2026-01-16 11:18:36.678 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.678 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Contracts.s3jay9lijs.pdb - 200 26921 application/octet-stream 12.7559ms -2026-01-16 11:18:36.682 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.010la3geym.pdb - null null -2026-01-16 11:18:36.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.682 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.682 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.682 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.682 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.683 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.683 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.683 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.683 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.683 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.683 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.683 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.683 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.683 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.683 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.683 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.683 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.696 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Auditing.010la3geym.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\o0dl3ao57v-{0}-010la3geym-010la3geym.gz' -2026-01-16 11:18:36.696 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.696 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.010la3geym.pdb - 200 29913 application/octet-stream 14.2854ms -2026-01-16 11:18:36.699 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.Contracts.j9lxersni3.pdb - null null -2026-01-16 11:18:36.699 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.700 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.700 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.700 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.700 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.700 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.700 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.700 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.700 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.700 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.700 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.700 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.700 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.700 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.714 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Auditing.Contracts.j9lxersni3.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wqxp9ykz4o-{0}-j9lxersni3-j9lxersni3.gz' -2026-01-16 11:18:36.714 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.715 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.Contracts.j9lxersni3.pdb - 200 14417 application/octet-stream 15.5999ms -2026-01-16 11:18:36.718 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AuditLogging.Domain.Shared.ja33cne1y4.pdb - null null -2026-01-16 11:18:36.718 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.719 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.719 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.719 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.719 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.719 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.719 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.719 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.719 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.719 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.719 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.719 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.719 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.720 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.720 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.720 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.720 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.720 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.720 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.720 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.720 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.733 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AuditLogging.Domain.Shared.ja33cne1y4.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5199po5zxq-{0}-ja33cne1y4-ja33cne1y4.gz' -2026-01-16 11:18:36.733 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.733 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AuditLogging.Domain.Shared.ja33cne1y4.pdb - 200 16493 application/octet-stream 15.3205ms -2026-01-16 11:18:36.737 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.fv4jer8had.pdb - null null -2026-01-16 11:18:36.738 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.738 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.738 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.738 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.738 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.738 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.738 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.738 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.738 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.738 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.738 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.738 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.738 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.739 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.739 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.739 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.739 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.739 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.739 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.739 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.739 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.752 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Authorization.fv4jer8had.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sb9kt3tht9-{0}-fv4jer8had-fv4jer8had.gz' -2026-01-16 11:18:36.752 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.752 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.fv4jer8had.pdb - 200 41330 application/octet-stream 14.8138ms -2026-01-16 11:18:36.756 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.Abstractions.qkr1909259.pdb - null null -2026-01-16 11:18:36.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.757 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.757 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.757 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.757 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.757 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.758 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.758 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.758 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.758 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.758 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.758 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.758 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.758 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.772 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Authorization.Abstractions.qkr1909259.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\09yc6y4n5e-{0}-qkr1909259-qkr1909259.gz' -2026-01-16 11:18:36.772 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.772 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.Abstractions.qkr1909259.pdb - 200 27181 application/octet-stream 16.1837ms -2026-01-16 11:18:36.776 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.1pnrwzlbft.pdb - null null -2026-01-16 11:18:36.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.776 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.776 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.776 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.776 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.777 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.777 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.777 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.777 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.777 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.777 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.777 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.777 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.777 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.777 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.777 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.777 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.791 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Autofac.1pnrwzlbft.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jpkrtenkjs-{0}-1pnrwzlbft-1pnrwzlbft.gz' -2026-01-16 11:18:36.791 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.791 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.1pnrwzlbft.pdb - 200 18693 application/octet-stream 15.8188ms -2026-01-16 11:18:36.795 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundJobs.Domain.Shared.6x2lyxdi49.pdb - null null -2026-01-16 11:18:36.796 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.796 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.796 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.796 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.796 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.796 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.796 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.796 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.796 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.796 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.796 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.796 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.796 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.797 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.797 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.797 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.797 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.797 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.797 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.797 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.797 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.812 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BackgroundJobs.Domain.Shared.6x2lyxdi49.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\htaazompkm-{0}-6x2lyxdi49-6x2lyxdi49.gz' -2026-01-16 11:18:36.812 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.812 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundJobs.Domain.Shared.6x2lyxdi49.pdb - 200 13221 application/octet-stream 16.7013ms -2026-01-16 11:18:36.816 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundWorkers.84b9jpts2h.pdb - null null -2026-01-16 11:18:36.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.816 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.816 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.816 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.816 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.817 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.817 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.817 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.817 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.817 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.817 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.817 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.817 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.817 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.833 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BackgroundWorkers.84b9jpts2h.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ei0v3zqng-{0}-84b9jpts2h-84b9jpts2h.gz' -2026-01-16 11:18:36.833 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.833 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundWorkers.84b9jpts2h.pdb - 200 19469 application/octet-stream 17.6494ms -2026-01-16 11:18:36.839 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Caching.nrhuxagqyn.pdb - null null -2026-01-16 11:18:36.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.839 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.839 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.839 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.839 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.840 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.840 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.840 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.840 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.840 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.840 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.840 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.840 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.840 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.840 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.840 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.840 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.840 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.840 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.852 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Caching.nrhuxagqyn.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wokijgaifq-{0}-nrhuxagqyn-nrhuxagqyn.gz' -2026-01-16 11:18:36.852 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.852 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Caching.nrhuxagqyn.pdb - 200 37286 application/octet-stream 13.3796ms -2026-01-16 11:18:36.856 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Castle.Core.qql2z8626p.pdb - null null -2026-01-16 11:18:36.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.856 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.856 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.856 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.856 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.857 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.857 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.857 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.857 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.857 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.857 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.857 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.857 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.857 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.871 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Castle.Core.qql2z8626p.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dte7v0ocsr-{0}-qql2z8626p-qql2z8626p.gz' -2026-01-16 11:18:36.871 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.872 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Castle.Core.qql2z8626p.pdb - 200 15221 application/octet-stream 15.7821ms -2026-01-16 11:18:36.875 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Core.jgtz8l9msa.pdb - null null -2026-01-16 11:18:36.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.876 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.876 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.876 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.876 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.876 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.876 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.876 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.876 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.876 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.876 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.876 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.876 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.876 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.890 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Core.jgtz8l9msa.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c42x4ftr8l-{0}-jgtz8l9msa-jgtz8l9msa.gz' -2026-01-16 11:18:36.890 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.890 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Core.jgtz8l9msa.pdb - 200 148177 application/octet-stream 14.7747ms -2026-01-16 11:18:36.893 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Data.gkvod30ltl.pdb - null null -2026-01-16 11:18:36.894 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.894 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.894 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.894 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.894 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.894 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.894 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.894 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.894 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.894 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.894 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.894 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.894 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.895 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.895 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.895 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.895 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.895 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.895 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.895 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.895 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.908 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Data.gkvod30ltl.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ze3wjukds-{0}-gkvod30ltl-gkvod30ltl.gz' -2026-01-16 11:18:36.908 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.908 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Data.gkvod30ltl.pdb - 200 21821 application/octet-stream 14.7442ms -2026-01-16 11:18:36.912 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Ddd.Application.Contracts.vj5ssd6smb.pdb - null null -2026-01-16 11:18:36.912 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.912 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.912 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.912 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.912 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.913 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.913 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.913 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.913 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.913 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.913 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.913 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.913 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.913 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.913 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.913 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.913 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.913 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.913 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.913 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.913 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.926 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Ddd.Application.Contracts.vj5ssd6smb.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5aiafzhp1m-{0}-vj5ssd6smb-vj5ssd6smb.gz' -2026-01-16 11:18:36.926 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.926 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Ddd.Application.Contracts.vj5ssd6smb.pdb - 200 23417 application/octet-stream 14.1512ms -2026-01-16 11:18:36.930 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.DistributedLocking.Abstractions.00vk7xomne.pdb - null null -2026-01-16 11:18:36.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.930 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.931 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.931 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.931 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.931 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.931 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.931 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.931 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.931 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.945 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.DistributedLocking.Abstractions.00vk7xomne.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\a8j0sb24cp-{0}-00vk7xomne-00vk7xomne.gz' -2026-01-16 11:18:36.945 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.945 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.DistributedLocking.Abstractions.00vk7xomne.pdb - 200 14657 application/octet-stream 15.3695ms -2026-01-16 11:18:36.948 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.obsuh9bstk.pdb - null null -2026-01-16 11:18:36.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.949 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.949 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.949 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.949 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.949 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.949 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.949 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.949 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.949 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.949 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.949 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.950 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.950 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.962 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.EventBus.obsuh9bstk.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c7ycdiyl76-{0}-obsuh9bstk-obsuh9bstk.gz' -2026-01-16 11:18:36.963 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.963 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.obsuh9bstk.pdb - 200 37630 application/octet-stream 14.4609ms -2026-01-16 11:18:36.972 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.Abstractions.uog1ci4sgq.pdb - null null -2026-01-16 11:18:36.972 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.972 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.973 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.973 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.973 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.973 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.973 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.973 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.973 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.973 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.973 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.973 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.973 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.973 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.973 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.973 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.973 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.973 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.973 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.973 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.973 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.985 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.EventBus.Abstractions.uog1ci4sgq.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\w7l86von3o-{0}-uog1ci4sgq-uog1ci4sgq.gz' -2026-01-16 11:18:36.985 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:36.985 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.Abstractions.uog1ci4sgq.pdb - 200 20237 application/octet-stream 13.2972ms -2026-01-16 11:18:36.989 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ExceptionHandling.6tzczng2j0.pdb - null null -2026-01-16 11:18:36.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.990 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:36.990 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:36.990 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:36.990 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:36.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:36.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:36.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:36.991 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:36.991 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.991 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:36.991 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:36.991 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:36.991 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:36.991 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:36.991 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:36.991 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:36.991 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:36.991 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:36.991 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.003 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ExceptionHandling.6tzczng2j0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\m6s0vb39gb-{0}-6tzczng2j0-6tzczng2j0.gz' -2026-01-16 11:18:37.003 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.003 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ExceptionHandling.6tzczng2j0.pdb - 200 20157 application/octet-stream 13.8398ms -2026-01-16 11:18:37.007 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Application.Contracts.trk07zvzhy.pdb - null null -2026-01-16 11:18:37.008 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.008 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.008 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.008 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.008 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.008 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.009 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.009 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.009 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.009 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.009 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.009 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.009 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.009 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.009 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.009 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.009 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.009 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.009 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.009 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.009 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.023 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Application.Contracts.trk07zvzhy.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0ru1qvb3x4-{0}-trk07zvzhy-trk07zvzhy.gz' -2026-01-16 11:18:37.023 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.023 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Application.Contracts.trk07zvzhy.pdb - 200 16981 application/octet-stream 15.9322ms -2026-01-16 11:18:37.026 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Domain.Shared.63wzbehoms.pdb - null null -2026-01-16 11:18:37.027 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.027 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.027 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.027 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.027 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.027 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.027 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.027 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.027 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.027 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.027 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.027 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.027 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.027 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.027 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.027 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.027 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.027 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.027 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.027 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.028 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.041 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Domain.Shared.63wzbehoms.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dnjx07a9gy-{0}-63wzbehoms-63wzbehoms.gz' -2026-01-16 11:18:37.041 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.041 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Domain.Shared.63wzbehoms.pdb - 200 18405 application/octet-stream 14.8734ms -2026-01-16 11:18:37.044 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.HttpApi.Client.wsx1yyj7pq.pdb - null null -2026-01-16 11:18:37.045 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.045 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.045 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.045 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.045 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.045 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.045 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.045 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.045 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.045 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.045 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.045 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.045 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.046 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.046 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.046 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.046 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.046 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.046 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.046 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.046 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.059 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.HttpApi.Client.wsx1yyj7pq.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xephdxvmqy-{0}-wsx1yyj7pq-wsx1yyj7pq.gz' -2026-01-16 11:18:37.059 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.059 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.HttpApi.Client.wsx1yyj7pq.pdb - 200 16661 application/octet-stream 15.2148ms -2026-01-16 11:18:37.063 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Features.xy47jjuxq0.pdb - null null -2026-01-16 11:18:37.063 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.063 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.063 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.063 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.063 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.064 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.064 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.064 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.064 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.064 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.064 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.064 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.064 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.064 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.064 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.064 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.064 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.064 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.064 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.064 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.064 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.077 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Features.xy47jjuxq0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lwwrm2rnuk-{0}-xy47jjuxq0-xy47jjuxq0.gz' -2026-01-16 11:18:37.078 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.078 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Features.xy47jjuxq0.pdb - 200 31093 application/octet-stream 14.869ms -2026-01-16 11:18:37.081 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.GlobalFeatures.xvnpd3mrvh.pdb - null null -2026-01-16 11:18:37.082 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.082 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.082 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.082 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.082 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.082 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.082 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.082 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.082 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.082 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.082 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.082 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.082 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.082 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.082 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.082 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.082 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.082 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.082 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.082 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.083 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.095 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.GlobalFeatures.xvnpd3mrvh.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8hrz94lbbq-{0}-xvnpd3mrvh-xvnpd3mrvh.gz' -2026-01-16 11:18:37.096 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.096 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.GlobalFeatures.xvnpd3mrvh.pdb - 200 20401 application/octet-stream 14.6365ms -2026-01-16 11:18:37.099 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Guids.5m4gn3phwz.pdb - null null -2026-01-16 11:18:37.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.100 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.100 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.100 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.100 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.100 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.100 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.100 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.100 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.100 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.100 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.100 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.100 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.100 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.113 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Guids.5m4gn3phwz.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0qqhgjay94-{0}-5m4gn3phwz-5m4gn3phwz.gz' -2026-01-16 11:18:37.113 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.113 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Guids.5m4gn3phwz.pdb - 200 14061 application/octet-stream 14.0531ms -2026-01-16 11:18:37.116 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.7iokvl53ze.pdb - null null -2026-01-16 11:18:37.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.117 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.117 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.117 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.117 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.117 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.117 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.117 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.117 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.118 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.131 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.7iokvl53ze.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b3mu9af069-{0}-7iokvl53ze-7iokvl53ze.gz' -2026-01-16 11:18:37.131 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.131 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.7iokvl53ze.pdb - 200 31453 application/octet-stream 15.1714ms -2026-01-16 11:18:37.134 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Abstractions.0gocbyoijo.pdb - null null -2026-01-16 11:18:37.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.135 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.135 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.135 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.135 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.135 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.136 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.136 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.136 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.136 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.136 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.136 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.136 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.136 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.149 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Abstractions.0gocbyoijo.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j4y3kuv6se-{0}-0gocbyoijo-0gocbyoijo.gz' -2026-01-16 11:18:37.149 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.149 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Abstractions.0gocbyoijo.pdb - 200 13525 application/octet-stream 14.9132ms -2026-01-16 11:18:37.152 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.bv9ce64gqc.pdb - null null -2026-01-16 11:18:37.153 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.153 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.153 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.153 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.153 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.153 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.153 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.153 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.153 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.153 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.153 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.153 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.153 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.154 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.154 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.154 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.154 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.154 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.154 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.154 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.154 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.166 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.bv9ce64gqc.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ttya30eyt8-{0}-bv9ce64gqc-bv9ce64gqc.gz' -2026-01-16 11:18:37.166 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.167 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.bv9ce64gqc.pdb - 200 38918 application/octet-stream 14.238ms -2026-01-16 11:18:37.170 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.8t8trbqbju.pdb - null null -2026-01-16 11:18:37.171 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.171 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.171 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.171 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.172 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.172 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.172 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.172 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.172 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.172 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.172 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.172 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.172 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.173 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.185 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.IdentityModel.8t8trbqbju.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\d3rz4s2afx-{0}-8t8trbqbju-8t8trbqbju.gz' -2026-01-16 11:18:37.185 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.185 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.8t8trbqbju.pdb - 200 16433 application/octet-stream 14.9811ms -2026-01-16 11:18:37.190 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Application.Contracts.5q38wyga9r.pdb - null null -2026-01-16 11:18:37.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.191 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.191 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.191 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.191 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.191 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.191 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.191 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.191 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.191 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.191 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.191 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.191 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.191 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.191 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.191 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.191 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.205 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Application.Contracts.5q38wyga9r.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\h1go2ee35q-{0}-5q38wyga9r-5q38wyga9r.gz' -2026-01-16 11:18:37.205 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.205 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Application.Contracts.5q38wyga9r.pdb - 200 20665 application/octet-stream 15.2582ms -2026-01-16 11:18:37.209 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Domain.Shared.k95i01gbm4.pdb - null null -2026-01-16 11:18:37.209 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.209 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.209 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.210 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.210 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.210 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.210 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.210 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.210 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.210 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.210 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.210 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.210 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.210 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.223 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Domain.Shared.k95i01gbm4.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wq3qylwiyp-{0}-k95i01gbm4-k95i01gbm4.gz' -2026-01-16 11:18:37.223 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.223 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Domain.Shared.k95i01gbm4.pdb - 200 23785 application/octet-stream 14.4567ms -2026-01-16 11:18:37.226 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.HttpApi.Client.jga29k0op5.pdb - null null -2026-01-16 11:18:37.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.227 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.227 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.227 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.227 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.227 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.227 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.227 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.228 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.228 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.228 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.228 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.228 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.228 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.241 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.HttpApi.Client.jga29k0op5.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0u48eqlsj4-{0}-jga29k0op5-jga29k0op5.gz' -2026-01-16 11:18:37.241 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.241 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.HttpApi.Client.jga29k0op5.pdb - 200 23337 application/octet-stream 14.7988ms -2026-01-16 11:18:37.244 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.IdentityModel.cn7pa5qn4i.pdb - null null -2026-01-16 11:18:37.245 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.245 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.245 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.245 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.245 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.245 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.245 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.245 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.245 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.245 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.245 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.245 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.245 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.246 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.246 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.246 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.246 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.246 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.246 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.246 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.246 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.259 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.IdentityModel.cn7pa5qn4i.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\poi5v0je1c-{0}-cn7pa5qn4i-cn7pa5qn4i.gz' -2026-01-16 11:18:37.259 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.260 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.IdentityModel.cn7pa5qn4i.pdb - 200 20817 application/octet-stream 15.3207ms -2026-01-16 11:18:37.263 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.eunmf9vqak.pdb - null null -2026-01-16 11:18:37.263 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.263 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.263 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.264 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.264 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.264 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.264 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.264 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.264 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.264 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.264 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.264 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.264 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.264 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.264 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.264 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.264 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.264 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.264 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.264 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.264 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.278 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.eunmf9vqak.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rrchruuh0t-{0}-eunmf9vqak-eunmf9vqak.gz' -2026-01-16 11:18:37.278 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.278 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.eunmf9vqak.pdb - 200 13757 application/octet-stream 14.8673ms -2026-01-16 11:18:37.281 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.Abstractions.6fjqkkc59b.pdb - null null -2026-01-16 11:18:37.281 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.281 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.282 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.282 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.282 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.282 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.282 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.282 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.282 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.282 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.282 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.282 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.282 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.282 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.282 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.282 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.282 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.282 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.282 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.282 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.282 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.296 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.Abstractions.6fjqkkc59b.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\u9w5uxptpu-{0}-6fjqkkc59b-6fjqkkc59b.gz' -2026-01-16 11:18:37.296 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.296 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.Abstractions.6fjqkkc59b.pdb - 200 13249 application/octet-stream 15.6735ms -2026-01-16 11:18:37.300 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.SystemTextJson.7kfnybvbb3.pdb - null null -2026-01-16 11:18:37.301 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.301 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.301 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.301 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.301 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.301 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.301 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.301 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.301 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.301 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.301 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.301 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.301 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.302 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.302 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.302 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.302 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.302 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.302 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.302 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.302 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.315 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.SystemTextJson.7kfnybvbb3.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4rl2glc87e-{0}-7kfnybvbb3-7kfnybvbb3.gz' -2026-01-16 11:18:37.315 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.316 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.SystemTextJson.7kfnybvbb3.pdb - 200 21501 application/octet-stream 15.608ms -2026-01-16 11:18:37.320 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.vtlp5c95du.pdb - null null -2026-01-16 11:18:37.320 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.321 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.321 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.321 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.321 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.321 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.321 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.321 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.321 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.321 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.321 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.321 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.321 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.321 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.321 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.321 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.321 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.334 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Localization.vtlp5c95du.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9jz0202bvx-{0}-vtlp5c95du-vtlp5c95du.gz' -2026-01-16 11:18:37.334 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.334 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.vtlp5c95du.pdb - 200 34682 application/octet-stream 14.4114ms -2026-01-16 11:18:37.338 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.Abstractions.ppu2e0n398.pdb - null null -2026-01-16 11:18:37.339 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.339 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.339 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.339 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.339 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.340 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.340 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.340 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.340 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.340 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.340 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.340 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.340 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.340 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.340 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.340 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.340 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.340 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.340 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.340 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.340 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.352 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Localization.Abstractions.ppu2e0n398.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nql43ug6yv-{0}-ppu2e0n398-ppu2e0n398.gz' -2026-01-16 11:18:37.352 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.353 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.Abstractions.ppu2e0n398.pdb - 200 16505 application/octet-stream 14.4098ms -2026-01-16 11:18:37.356 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Mapperly.6gpx5rpu92.pdb - null null -2026-01-16 11:18:37.357 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.357 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.357 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.357 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.357 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.357 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.357 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.357 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.357 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.357 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.357 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.357 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.357 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.358 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.358 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.358 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.358 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.358 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.358 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.358 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.358 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.371 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Mapperly.6gpx5rpu92.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ir90d0l0q4-{0}-6gpx5rpu92-6gpx5rpu92.gz' -2026-01-16 11:18:37.371 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.372 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Mapperly.6gpx5rpu92.pdb - 200 18489 application/octet-stream 15.061ms -2026-01-16 11:18:37.375 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Minify.udx15cdqul.pdb - null null -2026-01-16 11:18:37.375 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.376 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.376 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.376 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.376 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.376 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.376 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.376 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.376 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.376 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.376 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.376 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.376 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.376 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.376 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.376 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.376 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.376 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.376 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.376 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.376 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.390 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Minify.udx15cdqul.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6nicogsytc-{0}-udx15cdqul-udx15cdqul.gz' -2026-01-16 11:18:37.390 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.390 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Minify.udx15cdqul.pdb - 200 14637 application/octet-stream 15.2638ms -2026-01-16 11:18:37.393 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.loqn53ymi8.pdb - null null -2026-01-16 11:18:37.393 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.394 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.394 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.394 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.394 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.394 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.394 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.394 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.394 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.394 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.394 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.394 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.394 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.394 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.394 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.394 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.394 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.394 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.394 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.394 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.394 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.410 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MultiTenancy.loqn53ymi8.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xypgrhxtpa-{0}-loqn53ymi8-loqn53ymi8.gz' -2026-01-16 11:18:37.410 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.410 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.loqn53ymi8.pdb - 200 21073 application/octet-stream 16.8121ms -2026-01-16 11:18:37.413 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.Abstractions.u0hetyrdbb.pdb - null null -2026-01-16 11:18:37.414 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.414 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.414 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.414 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.414 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.414 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.414 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.414 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.414 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.414 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.414 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.414 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.414 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.415 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.415 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.415 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.415 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.415 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.415 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.415 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.415 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.427 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MultiTenancy.Abstractions.u0hetyrdbb.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bwd6m19o6e-{0}-u0hetyrdbb-u0hetyrdbb.gz' -2026-01-16 11:18:37.427 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.427 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.Abstractions.u0hetyrdbb.pdb - 200 19661 application/octet-stream 13.8183ms -2026-01-16 11:18:37.431 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectExtending.dojwixnkml.pdb - null null -2026-01-16 11:18:37.431 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.432 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.432 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.432 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.432 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.432 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.432 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.432 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.432 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.432 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.432 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.432 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.432 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.432 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.432 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.432 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.432 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.432 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.432 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.432 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.432 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.447 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ObjectExtending.dojwixnkml.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wybocaa0up-{0}-dojwixnkml-dojwixnkml.gz' -2026-01-16 11:18:37.447 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.447 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectExtending.dojwixnkml.pdb - 200 31977 application/octet-stream 15.8839ms -2026-01-16 11:18:37.450 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectMapping.g9a8v1kuke.pdb - null null -2026-01-16 11:18:37.451 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.451 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.451 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.451 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.451 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.451 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.451 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.451 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.451 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.451 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.451 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.451 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.451 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.452 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.452 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.452 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.452 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.452 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.452 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.452 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.452 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.466 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ObjectMapping.g9a8v1kuke.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fsnac4k4sd-{0}-g9a8v1kuke-g9a8v1kuke.gz' -2026-01-16 11:18:37.466 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.466 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectMapping.g9a8v1kuke.pdb - 200 17133 application/octet-stream 15.9045ms -2026-01-16 11:18:37.470 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.OpenIddict.Domain.Shared.7dffnbqykk.pdb - null null -2026-01-16 11:18:37.471 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.471 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.471 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.471 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.471 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.471 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.471 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.471 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.471 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.471 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.471 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.471 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.471 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.472 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.472 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.472 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.472 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.472 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.472 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.472 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.472 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.485 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.OpenIddict.Domain.Shared.7dffnbqykk.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ofhohlcsdd-{0}-7dffnbqykk-7dffnbqykk.gz' -2026-01-16 11:18:37.485 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.485 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.OpenIddict.Domain.Shared.7dffnbqykk.pdb - 200 17397 application/octet-stream 14.5052ms -2026-01-16 11:18:37.490 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Application.Contracts.c0zkm3lesk.pdb - null null -2026-01-16 11:18:37.490 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.490 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.490 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.490 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.490 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.490 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.491 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.491 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.491 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.491 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.491 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.491 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.491 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.491 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.491 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.504 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Application.Contracts.c0zkm3lesk.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0j5tpaf1fb-{0}-c0zkm3lesk-c0zkm3lesk.gz' -2026-01-16 11:18:37.504 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.504 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Application.Contracts.c0zkm3lesk.pdb - 200 18373 application/octet-stream 14.9045ms -2026-01-16 11:18:37.509 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Domain.Shared.151t5wqow9.pdb - null null -2026-01-16 11:18:37.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.509 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.509 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.509 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.509 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.509 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.510 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.510 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.510 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.510 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.510 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.510 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.510 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.510 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.524 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Domain.Shared.151t5wqow9.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c9ti4wxngh-{0}-151t5wqow9-151t5wqow9.gz' -2026-01-16 11:18:37.524 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.524 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Domain.Shared.151t5wqow9.pdb - 200 16501 application/octet-stream 15.369ms -2026-01-16 11:18:37.527 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.HttpApi.Client.743wyetc4f.pdb - null null -2026-01-16 11:18:37.528 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.528 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.528 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.528 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.528 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.528 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.528 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.528 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.528 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.528 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.528 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.528 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.528 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.528 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.528 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.528 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.528 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.528 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.528 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.528 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.529 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.543 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.HttpApi.Client.743wyetc4f.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7d7e24takc-{0}-743wyetc4f-743wyetc4f.gz' -2026-01-16 11:18:37.543 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.543 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.HttpApi.Client.743wyetc4f.pdb - 200 18361 application/octet-stream 15.9263ms -2026-01-16 11:18:37.546 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.RemoteServices.vpefptaxdj.pdb - null null -2026-01-16 11:18:37.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.547 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.548 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.548 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.548 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.548 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.548 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.548 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.548 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.548 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.562 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.RemoteServices.vpefptaxdj.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uib6a0l2w6-{0}-vpefptaxdj-vpefptaxdj.gz' -2026-01-16 11:18:37.562 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.562 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.RemoteServices.vpefptaxdj.pdb - 200 16053 application/octet-stream 15.5296ms -2026-01-16 11:18:37.565 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Security.tu1izo1pns.pdb - null null -2026-01-16 11:18:37.565 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.566 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.566 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.566 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.566 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.566 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.566 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.566 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.566 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.566 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.566 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.566 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.566 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.566 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.566 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.566 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.566 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.566 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.566 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.566 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.566 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.578 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Security.tu1izo1pns.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sx6n9iy4yj-{0}-tu1izo1pns-tu1izo1pns.gz' -2026-01-16 11:18:37.579 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.579 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Security.tu1izo1pns.pdb - 200 29941 application/octet-stream 13.7025ms -2026-01-16 11:18:37.582 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Serialization.k7k0bj520f.pdb - null null -2026-01-16 11:18:37.583 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.583 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.583 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.583 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.583 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.583 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.583 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.583 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.583 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.583 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.583 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.583 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.583 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.584 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.584 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.584 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.584 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.584 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.584 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.584 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.584 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.597 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Serialization.k7k0bj520f.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ohz7m9cvuj-{0}-k7k0bj520f-k7k0bj520f.gz' -2026-01-16 11:18:37.597 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.597 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Serialization.k7k0bj520f.pdb - 200 13901 application/octet-stream 14.8846ms -2026-01-16 11:18:37.601 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Application.Contracts.u3o4kjdjyb.pdb - null null -2026-01-16 11:18:37.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.602 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.603 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.603 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.603 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.603 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.603 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.603 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.603 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.603 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.615 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Application.Contracts.u3o4kjdjyb.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n5hx9tj0h8-{0}-u3o4kjdjyb-u3o4kjdjyb.gz' -2026-01-16 11:18:37.615 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.615 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Application.Contracts.u3o4kjdjyb.pdb - 200 17249 application/octet-stream 14.0631ms -2026-01-16 11:18:37.619 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Domain.Shared.eg5zkpqtbf.pdb - null null -2026-01-16 11:18:37.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.619 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.619 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.619 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.619 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.620 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.620 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.620 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.620 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.620 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.620 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.620 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.620 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.620 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.620 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.620 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.620 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.620 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.620 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.620 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.620 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.634 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Domain.Shared.eg5zkpqtbf.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gpxmodrted-{0}-eg5zkpqtbf-eg5zkpqtbf.gz' -2026-01-16 11:18:37.634 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.634 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Domain.Shared.eg5zkpqtbf.pdb - 200 15881 application/octet-stream 15.6111ms -2026-01-16 11:18:37.638 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.HttpApi.Client.dx6o5olyzl.pdb - null null -2026-01-16 11:18:37.639 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.639 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.639 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.639 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.639 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.639 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.639 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.639 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.639 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.639 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.640 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.640 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.640 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.640 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.640 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.640 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.640 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.640 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.640 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.640 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.640 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.654 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.HttpApi.Client.dx6o5olyzl.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vwkga7y8v6-{0}-dx6o5olyzl-dx6o5olyzl.gz' -2026-01-16 11:18:37.654 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.654 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.HttpApi.Client.dx6o5olyzl.pdb - 200 17273 application/octet-stream 16.6187ms -2026-01-16 11:18:37.658 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Settings.14pu5cpqdi.pdb - null null -2026-01-16 11:18:37.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.659 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.659 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.659 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.659 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.659 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.659 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.659 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.659 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.659 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.659 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.659 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.659 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.659 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.672 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Settings.14pu5cpqdi.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\69ib14dhz4-{0}-14pu5cpqdi-14pu5cpqdi.gz' -2026-01-16 11:18:37.672 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.672 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Settings.14pu5cpqdi.pdb - 200 24709 application/octet-stream 14.0779ms -2026-01-16 11:18:37.676 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Application.Contracts.2icv9bb4mn.pdb - null null -2026-01-16 11:18:37.676 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.676 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.677 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.677 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.677 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.677 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.677 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.677 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.677 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.677 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.677 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.677 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.677 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.677 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.677 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.677 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.677 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.677 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.677 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.677 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.677 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.688 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Application.Contracts.2icv9bb4mn.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\usk06ilw8g-{0}-2icv9bb4mn-2icv9bb4mn.gz' -2026-01-16 11:18:37.688 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.688 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Application.Contracts.2icv9bb4mn.pdb - 200 16305 application/octet-stream 12.3282ms -2026-01-16 11:18:37.692 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Domain.Shared.g7dv5e6o9v.pdb - null null -2026-01-16 11:18:37.692 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.692 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.692 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.692 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.692 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.693 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.693 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.693 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.693 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.693 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.693 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.693 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.693 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.693 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.707 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Domain.Shared.g7dv5e6o9v.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\byh2ge6bdr-{0}-g7dv5e6o9v-g7dv5e6o9v.gz' -2026-01-16 11:18:37.707 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.707 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Domain.Shared.g7dv5e6o9v.pdb - 200 15609 application/octet-stream 15.073ms -2026-01-16 11:18:37.710 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.HttpApi.Client.ka9i5ruw0x.pdb - null null -2026-01-16 11:18:37.710 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.711 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.711 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.711 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.711 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.711 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.711 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.711 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.711 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.711 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.711 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.711 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.711 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.711 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.726 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.HttpApi.Client.ka9i5ruw0x.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b6ncobn1go-{0}-ka9i5ruw0x-ka9i5ruw0x.gz' -2026-01-16 11:18:37.726 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.726 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.HttpApi.Client.ka9i5ruw0x.pdb - 200 17253 application/octet-stream 15.8588ms -2026-01-16 11:18:37.729 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Threading.i7xtu3taf2.pdb - null null -2026-01-16 11:18:37.730 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.730 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.730 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.730 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.730 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.730 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.730 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.730 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.730 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.730 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.731 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.731 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.731 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.731 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.731 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.731 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.731 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.731 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.731 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.753 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Threading.i7xtu3taf2.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\m4kji2jf2d-{0}-i7xtu3taf2-i7xtu3taf2.gz' -2026-01-16 11:18:37.753 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.754 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Threading.i7xtu3taf2.pdb - 200 22745 application/octet-stream 24.1278ms -2026-01-16 11:18:37.765 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Timing.zikimaxx74.pdb - null null -2026-01-16 11:18:37.765 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.766 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.766 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.766 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.766 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.766 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.766 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.766 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.766 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.766 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.766 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.766 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.766 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.767 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.789 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Timing.zikimaxx74.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ku2s5mtpx-{0}-zikimaxx74-zikimaxx74.gz' -2026-01-16 11:18:37.789 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.789 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Timing.zikimaxx74.pdb - 200 17233 application/octet-stream 24.2925ms -2026-01-16 11:18:37.793 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.6asw5wvgbm.pdb - null null -2026-01-16 11:18:37.794 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.794 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.794 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.794 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.794 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.794 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.794 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.794 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.794 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.794 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.794 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.794 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.794 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.794 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.795 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.795 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.795 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.795 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.795 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.795 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.795 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.810 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.UI.6asw5wvgbm.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ojvava7kjz-{0}-6asw5wvgbm-6asw5wvgbm.gz' -2026-01-16 11:18:37.810 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.810 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.6asw5wvgbm.pdb - 200 15269 application/octet-stream 16.8209ms -2026-01-16 11:18:37.818 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.Navigation.0uohp1hz3c.pdb - null null -2026-01-16 11:18:37.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.819 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.819 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.819 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.819 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.819 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.820 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.820 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.820 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.820 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.820 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.820 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.820 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.820 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.836 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.UI.Navigation.0uohp1hz3c.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\opi85np659-{0}-0uohp1hz3c-0uohp1hz3c.gz' -2026-01-16 11:18:37.836 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.836 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.Navigation.0uohp1hz3c.pdb - 200 25665 application/octet-stream 17.9314ms -2026-01-16 11:18:37.847 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Uow.5e91rvkdrb.pdb - null null -2026-01-16 11:18:37.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.848 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.848 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.848 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.848 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.848 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.849 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.849 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.849 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.849 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.849 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.849 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.849 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.849 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.864 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Uow.5e91rvkdrb.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\37xxpsk7fy-{0}-5e91rvkdrb-5e91rvkdrb.gz' -2026-01-16 11:18:37.864 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.864 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Uow.5e91rvkdrb.pdb - 200 26921 application/octet-stream 16.3797ms -2026-01-16 11:18:37.868 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Abstractions.orb44rjru0.pdb - null null -2026-01-16 11:18:37.869 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.869 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.869 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.869 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.870 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.870 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.870 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.870 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.870 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.870 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.870 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.870 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.870 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.870 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.870 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.870 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.870 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.870 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.870 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.870 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.871 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.884 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Users.Abstractions.orb44rjru0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\02tit97twy-{0}-orb44rjru0-orb44rjru0.gz' -2026-01-16 11:18:37.885 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.885 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Abstractions.orb44rjru0.pdb - 200 16949 application/octet-stream 16.6699ms -2026-01-16 11:18:37.889 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Domain.Shared.vgsk234b3o.pdb - null null -2026-01-16 11:18:37.889 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.890 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.890 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.890 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.890 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.890 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.890 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.890 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.890 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.890 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.890 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.890 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.890 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.890 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.904 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Users.Domain.Shared.vgsk234b3o.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\i5q2ei5dis-{0}-vgsk234b3o-vgsk234b3o.gz' -2026-01-16 11:18:37.904 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.904 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Domain.Shared.vgsk234b3o.pdb - 200 13285 application/octet-stream 15.0455ms -2026-01-16 11:18:37.908 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.2signrlt2s.pdb - null null -2026-01-16 11:18:37.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.909 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.909 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.909 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.909 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.910 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.910 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.910 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.910 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.910 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.910 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.910 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.910 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.910 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.923 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Validation.2signrlt2s.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wypl5pd007-{0}-2signrlt2s-2signrlt2s.gz' -2026-01-16 11:18:37.923 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.923 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.2signrlt2s.pdb - 200 24513 application/octet-stream 15.0682ms -2026-01-16 11:18:37.929 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.Abstractions.w444c7rnxm.pdb - null null -2026-01-16 11:18:37.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.930 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.930 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.931 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.931 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.931 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.931 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.931 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.931 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.931 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.945 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Validation.Abstractions.w444c7rnxm.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mb6vj9j06o-{0}-w444c7rnxm-w444c7rnxm.gz' -2026-01-16 11:18:37.945 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.945 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.Abstractions.w444c7rnxm.pdb - 200 14137 application/octet-stream 16.4623ms -2026-01-16 11:18:37.950 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.VirtualFileSystem.7z6calscx3.pdb - null null -2026-01-16 11:18:37.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.951 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.951 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.951 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.951 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.951 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.951 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.951 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.951 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.951 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.951 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.951 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.951 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.951 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.951 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.951 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.952 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.952 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.952 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.952 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.952 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.975 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.VirtualFileSystem.7z6calscx3.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9vnkhoiruq-{0}-7z6calscx3-7z6calscx3.gz' -2026-01-16 11:18:37.975 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:37.976 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.VirtualFileSystem.7z6calscx3.pdb - 200 21449 application/octet-stream 25.8721ms -2026-01-16 11:18:37.982 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.bhmldwzrg8.pdb - null null -2026-01-16 11:18:37.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:37.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:37.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:37.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:37.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:37.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:37.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:37.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:37.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:37.983 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:37.984 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:37.984 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:37.984 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:37.984 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:37.984 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:37.984 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:37.984 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:37.984 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.001 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.bhmldwzrg8.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\21kkcfw31s-{0}-bhmldwzrg8-bhmldwzrg8.gz' -2026-01-16 11:18:38.001 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.001 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.bhmldwzrg8.pdb - 200 32493 application/octet-stream 18.5076ms -2026-01-16 11:18:38.008 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Autofac.le1wnuzdja.wasm - null null -2026-01-16 11:18:38.009 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.010 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.010 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.010 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.010 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.010 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.010 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.010 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.010 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.010 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.010 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.010 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.010 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.010 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.010 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.010 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.010 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.010 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.010 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.010 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.011 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.032 +03:00 [INF] Sending file. Request path: '_framework/Autofac.le1wnuzdja.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\le2bmj2hd0-{0}-le1wnuzdja-le1wnuzdja.gz' -2026-01-16 11:18:38.032 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.032 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Autofac.le1wnuzdja.wasm - 200 375661 application/wasm 23.9434ms -2026-01-16 11:18:38.087 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Autofac.Extensions.DependencyInjection.slmisa3m0h.wasm - null null -2026-01-16 11:18:38.088 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.088 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.088 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.088 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.088 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.089 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.089 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.089 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.089 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.089 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.089 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.089 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.089 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.089 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.089 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.089 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.089 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.089 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.089 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.089 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.090 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.106 +03:00 [INF] Sending file. Request path: '_framework/Autofac.Extensions.DependencyInjection.slmisa3m0h.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4h1lb8bivh-{0}-slmisa3m0h-slmisa3m0h.gz' -2026-01-16 11:18:38.106 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.106 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Autofac.Extensions.DependencyInjection.slmisa3m0h.wasm - 200 28470 application/wasm 19.7472ms -2026-01-16 11:18:38.114 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Autofac.Extras.DynamicProxy.tlrq82knod.wasm - null null -2026-01-16 11:18:38.115 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.115 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.115 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.115 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.115 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.115 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.115 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.115 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.115 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.115 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.115 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.116 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.116 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.116 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.116 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.116 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.116 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.134 +03:00 [INF] Sending file. Request path: '_framework/Autofac.Extras.DynamicProxy.tlrq82knod.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5nm56h6008-{0}-tlrq82knod-tlrq82knod.gz' -2026-01-16 11:18:38.134 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.135 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Autofac.Extras.DynamicProxy.tlrq82knod.wasm - 200 20278 application/wasm 20.7989ms -2026-01-16 11:18:38.139 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Blazorise.b7jgl9ok7l.wasm - null null -2026-01-16 11:18:38.140 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.141 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.141 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.141 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.141 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.141 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.142 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.142 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.142 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.142 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.142 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.142 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.142 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.142 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.167 +03:00 [INF] Sending file. Request path: '_framework/Blazorise.b7jgl9ok7l.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nf98avu1u9-{0}-b7jgl9ok7l-b7jgl9ok7l.gz' -2026-01-16 11:18:38.167 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.167 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Blazorise.b7jgl9ok7l.wasm - 200 1520668 application/wasm 28.0189ms -2026-01-16 11:18:38.181 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Blazorise.Bootstrap5.rtyv8tyzko.wasm - null null -2026-01-16 11:18:38.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.182 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.183 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.183 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.183 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.183 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.183 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.183 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.183 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.183 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.198 +03:00 [INF] Sending file. Request path: '_framework/Blazorise.Bootstrap5.rtyv8tyzko.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\zme3jcftw8-{0}-rtyv8tyzko-rtyv8tyzko.gz' -2026-01-16 11:18:38.198 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.199 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Blazorise.Bootstrap5.rtyv8tyzko.wasm - 200 119621 application/wasm 17.6027ms -2026-01-16 11:18:38.203 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Blazorise.Components.yo1ahawdcj.wasm - null null -2026-01-16 11:18:38.204 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.204 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.205 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.205 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.205 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.205 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.205 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.205 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.205 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.205 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.205 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.205 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.205 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.205 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.205 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.205 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.205 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.205 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.205 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.205 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.206 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.226 +03:00 [INF] Sending file. Request path: '_framework/Blazorise.Components.yo1ahawdcj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\o9zothbqd4-{0}-yo1ahawdcj-yo1ahawdcj.gz' -2026-01-16 11:18:38.226 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.226 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Blazorise.Components.yo1ahawdcj.wasm - 200 140618 application/wasm 22.5319ms -2026-01-16 11:18:38.231 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Blazorise.DataGrid.nkaqc97wzz.wasm - null null -2026-01-16 11:18:38.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.232 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.232 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.232 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.232 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.232 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.232 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.232 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.232 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.232 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.232 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.232 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.232 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.232 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.232 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.232 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.232 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.232 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.232 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.232 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.232 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.251 +03:00 [INF] Sending file. Request path: '_framework/Blazorise.DataGrid.nkaqc97wzz.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8oc6tn48ma-{0}-nkaqc97wzz-nkaqc97wzz.gz' -2026-01-16 11:18:38.251 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.251 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Blazorise.DataGrid.nkaqc97wzz.wasm - 200 514945 application/wasm 20.613ms -2026-01-16 11:18:38.258 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Blazorise.Icons.FontAwesome.1xtclit6aq.wasm - null null -2026-01-16 11:18:38.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.259 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.259 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.259 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.259 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.259 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.260 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.260 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.260 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.260 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.260 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.260 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.260 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.260 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.275 +03:00 [INF] Sending file. Request path: '_framework/Blazorise.Icons.FontAwesome.1xtclit6aq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b9svievc4z-{0}-1xtclit6aq-1xtclit6aq.gz' -2026-01-16 11:18:38.275 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.275 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Blazorise.Icons.FontAwesome.1xtclit6aq.wasm - 200 134474 application/wasm 17.1108ms -2026-01-16 11:18:38.279 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Blazorise.Licensing.5q2r77toij.wasm - null null -2026-01-16 11:18:38.280 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.280 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.280 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.281 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.281 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.281 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.281 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.281 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.281 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.281 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.281 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.281 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.281 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.281 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.281 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.281 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.281 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.281 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.281 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.281 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.282 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.296 +03:00 [INF] Sending file. Request path: '_framework/Blazorise.Licensing.5q2r77toij.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bebsec1d96-{0}-5q2r77toij-5q2r77toij.gz' -2026-01-16 11:18:38.296 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.297 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Blazorise.Licensing.5q2r77toij.wasm - 200 20278 application/wasm 16.9739ms -2026-01-16 11:18:38.300 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Blazorise.Snackbar.vp0gf9ev05.wasm - null null -2026-01-16 11:18:38.301 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.301 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.301 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.301 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.301 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.301 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.301 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.301 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.301 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.301 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.301 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.301 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.301 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.302 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.302 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.302 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.302 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.302 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.302 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.302 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.302 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.316 +03:00 [INF] Sending file. Request path: '_framework/Blazorise.Snackbar.vp0gf9ev05.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lvl6wsxwb7-{0}-vp0gf9ev05-vp0gf9ev05.gz' -2026-01-16 11:18:38.317 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.317 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Blazorise.Snackbar.vp0gf9ev05.wasm - 200 32054 application/wasm 16.5516ms -2026-01-16 11:18:38.320 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Castle.Core.dr7ya1fwgr.wasm - null null -2026-01-16 11:18:38.321 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.322 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.322 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.322 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.322 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.322 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.322 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.322 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.322 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.322 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.322 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.322 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.322 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.322 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.322 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.322 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.322 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.322 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.322 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.322 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.323 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.338 +03:00 [INF] Sending file. Request path: '_framework/Castle.Core.dr7ya1fwgr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mehy9ugib8-{0}-dr7ya1fwgr-dr7ya1fwgr.gz' -2026-01-16 11:18:38.338 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.339 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Castle.Core.dr7ya1fwgr.wasm - 200 388461 application/wasm 18.2814ms -2026-01-16 11:18:38.342 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Castle.Core.AsyncInterceptor.phbi0db4mk.wasm - null null -2026-01-16 11:18:38.343 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.343 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.343 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.343 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.343 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.343 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.343 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.343 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.343 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.343 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.343 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.343 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.343 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.344 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.344 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.344 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.344 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.344 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.344 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.344 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.344 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.357 +03:00 [INF] Sending file. Request path: '_framework/Castle.Core.AsyncInterceptor.phbi0db4mk.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dnds4j2x25-{0}-phbi0db4mk-phbi0db4mk.gz' -2026-01-16 11:18:38.357 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.357 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Castle.Core.AsyncInterceptor.phbi0db4mk.wasm - 200 19254 application/wasm 14.657ms -2026-01-16 11:18:38.361 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Duende.IdentityModel.w8uizqq8rq.wasm - null null -2026-01-16 11:18:38.361 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.362 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.362 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.362 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.362 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.362 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.362 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.362 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.362 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.362 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.362 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.362 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.362 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.363 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.376 +03:00 [INF] Sending file. Request path: '_framework/Duende.IdentityModel.w8uizqq8rq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2h3cgpc6ac-{0}-w8uizqq8rq-w8uizqq8rq.gz' -2026-01-16 11:18:38.376 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.376 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Duende.IdentityModel.w8uizqq8rq.wasm - 200 202580 application/wasm 15.3393ms -2026-01-16 11:18:38.380 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/JetBrains.Annotations.30nyqsrum5.wasm - null null -2026-01-16 11:18:38.380 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.380 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.381 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.381 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.381 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.381 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.381 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.381 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.381 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.381 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.381 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.381 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.381 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.381 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.396 +03:00 [INF] Sending file. Request path: '_framework/JetBrains.Annotations.30nyqsrum5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6sdzj3kgop-{0}-30nyqsrum5-30nyqsrum5.gz' -2026-01-16 11:18:38.396 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.396 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/JetBrains.Annotations.30nyqsrum5.wasm - 200 122181 application/wasm 16.0916ms -2026-01-16 11:18:38.399 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Authorization.f7yamg8acn.wasm - null null -2026-01-16 11:18:38.399 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.400 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.400 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.400 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.400 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.400 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.400 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.400 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.400 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.400 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.400 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.400 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.400 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.400 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.400 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.400 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.400 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.400 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.400 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.400 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.400 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.413 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Authorization.f7yamg8acn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\y8t8qzdrbk-{0}-f7yamg8acn-f7yamg8acn.gz' -2026-01-16 11:18:38.413 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.413 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Authorization.f7yamg8acn.wasm - 200 45371 application/wasm 14.6188ms -2026-01-16 11:18:38.417 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.i180xx2qq9.wasm - null null -2026-01-16 11:18:38.418 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.418 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.418 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.418 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.418 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.418 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.418 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.419 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.419 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.419 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.419 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.419 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.419 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.419 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.419 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.419 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.419 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.419 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.419 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.419 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.419 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.436 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.i180xx2qq9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\00mrq6s2ss-{0}-i180xx2qq9-i180xx2qq9.gz' -2026-01-16 11:18:38.436 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.436 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.i180xx2qq9.wasm - 200 388973 application/wasm 18.8882ms -2026-01-16 11:18:38.449 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Authorization.8nosel0t6a.wasm - null null -2026-01-16 11:18:38.450 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.450 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.450 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.450 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.450 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.450 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.450 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.450 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.450 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.450 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.450 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.450 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.450 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.451 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.451 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.451 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.451 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.451 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.451 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.451 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.451 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.464 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.Authorization.8nosel0t6a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b9vfzkzuzt-{0}-8nosel0t6a-8nosel0t6a.gz' -2026-01-16 11:18:38.464 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.465 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Authorization.8nosel0t6a.wasm - 200 23862 application/wasm 15.5502ms -2026-01-16 11:18:38.468 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Forms.au92kshad9.wasm - null null -2026-01-16 11:18:38.469 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.469 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.469 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.469 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.469 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.469 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.469 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.469 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.469 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.469 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.469 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.469 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.469 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.470 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.470 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.470 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.470 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.470 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.470 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.470 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.470 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.485 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.Forms.au92kshad9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0l9h2m1r4h-{0}-au92kshad9-au92kshad9.gz' -2026-01-16 11:18:38.486 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.486 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Forms.au92kshad9.wasm - 200 37691 application/wasm 17.9436ms -2026-01-16 11:18:38.491 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Web.gl9seasc22.wasm - null null -2026-01-16 11:18:38.492 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.492 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.492 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.492 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.492 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.492 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.492 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.492 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.492 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.492 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.492 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.492 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.492 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.492 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.492 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.492 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.492 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.492 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.492 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.492 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.492 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.507 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.Web.gl9seasc22.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fqoi4if8m2-{0}-gl9seasc22-gl9seasc22.gz' -2026-01-16 11:18:38.507 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.508 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Web.gl9seasc22.wasm - 200 179023 application/wasm 16.7421ms -2026-01-16 11:18:38.511 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.9qaxkpf6y7.wasm - null null -2026-01-16 11:18:38.511 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.512 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.512 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.512 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.512 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.512 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.512 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.512 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.512 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.512 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.512 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.512 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.512 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.512 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.527 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.WebAssembly.9qaxkpf6y7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4vwfdqnp17-{0}-9qaxkpf6y7-9qaxkpf6y7.gz' -2026-01-16 11:18:38.527 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.527 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.9qaxkpf6y7.wasm - 200 155978 application/wasm 16.3077ms -2026-01-16 11:18:38.531 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.q8d1vzef3m.wasm - null null -2026-01-16 11:18:38.533 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.533 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.533 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.533 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.533 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.533 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.533 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.533 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.533 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.533 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.533 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.533 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.533 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.533 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.533 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.533 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.533 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.533 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.533 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.533 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.534 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.547 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.q8d1vzef3m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\19o2at4dip-{0}-q8d1vzef3m-q8d1vzef3m.gz' -2026-01-16 11:18:38.547 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.547 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.q8d1vzef3m.wasm - 200 96064 application/wasm 16.0471ms -2026-01-16 11:18:38.551 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Metadata.begmnasal1.wasm - null null -2026-01-16 11:18:38.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.552 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.552 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.552 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.552 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.552 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.552 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.552 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.553 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.553 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.553 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.553 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.553 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.553 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.568 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Metadata.begmnasal1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\94aawuaijs-{0}-begmnasal1-begmnasal1.gz' -2026-01-16 11:18:38.568 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.568 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Metadata.begmnasal1.wasm - 200 5942 application/wasm 17.174ms -2026-01-16 11:18:38.572 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.WebUtilities.6cgd80d0to.wasm - null null -2026-01-16 11:18:38.573 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.573 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.573 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.573 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.573 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.573 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.573 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.573 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.573 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.573 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.573 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.573 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.573 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.574 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.574 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.574 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.574 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.574 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.574 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.574 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.574 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.588 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.WebUtilities.6cgd80d0to.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sk2xioyf5m-{0}-6cgd80d0to-6cgd80d0to.gz' -2026-01-16 11:18:38.588 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.589 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.WebUtilities.6cgd80d0to.wasm - 200 97088 application/wasm 16.8384ms -2026-01-16 11:18:38.593 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Bcl.AsyncInterfaces.a6wsrpgfw5.wasm - null null -2026-01-16 11:18:38.594 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.594 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.594 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.594 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.594 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.594 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.594 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.594 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.594 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.594 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.594 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.594 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.594 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.595 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.595 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.595 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.595 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.595 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.595 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.595 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.595 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.607 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Bcl.AsyncInterfaces.a6wsrpgfw5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\efezora84v-{0}-a6wsrpgfw5-a6wsrpgfw5.gz' -2026-01-16 11:18:38.607 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.607 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Bcl.AsyncInterfaces.a6wsrpgfw5.wasm - 200 9526 application/wasm 13.9265ms -2026-01-16 11:18:38.610 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.u1l3a5juxx.wasm - null null -2026-01-16 11:18:38.611 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.611 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.611 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.611 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.611 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.611 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.611 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.611 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.611 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.611 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.612 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.612 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.612 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.612 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.612 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.612 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.612 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.612 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.612 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.612 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.612 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.625 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.u1l3a5juxx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wloi09r5kq-{0}-u1l3a5juxx-u1l3a5juxx.gz' -2026-01-16 11:18:38.625 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.625 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.u1l3a5juxx.wasm - 200 56123 application/wasm 14.78ms -2026-01-16 11:18:38.628 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Abstractions.vvlexwbaez.wasm - null null -2026-01-16 11:18:38.629 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.629 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.629 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.629 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.629 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.629 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.629 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.629 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.629 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.629 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.629 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.629 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.629 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.630 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.630 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.630 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.630 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.630 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.630 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.630 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.630 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.643 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Caching.Abstractions.vvlexwbaez.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b1crvod4be-{0}-vvlexwbaez-vvlexwbaez.gz' -2026-01-16 11:18:38.643 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.643 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Abstractions.vvlexwbaez.wasm - 200 27446 application/wasm 15.069ms -2026-01-16 11:18:38.647 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Hybrid.u0s8zqcpy7.wasm - null null -2026-01-16 11:18:38.647 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.647 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.647 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.648 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.648 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.648 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.648 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.648 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.648 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.648 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.648 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.648 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.648 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.648 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.648 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.648 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.648 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.648 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.648 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.648 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.648 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.663 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Caching.Hybrid.u0s8zqcpy7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\t7frkttiob-{0}-u0s8zqcpy7-u0s8zqcpy7.gz' -2026-01-16 11:18:38.663 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.663 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Hybrid.u0s8zqcpy7.wasm - 200 85824 application/wasm 16.7973ms -2026-01-16 11:18:38.667 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Memory.6z3ajjz4f1.wasm - null null -2026-01-16 11:18:38.668 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.668 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.668 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.668 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.668 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.668 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.668 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.668 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.668 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.668 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.668 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.668 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.668 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.669 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.669 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.669 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.669 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.669 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.669 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.669 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.669 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.683 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Caching.Memory.6z3ajjz4f1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6gi3ua4ioz-{0}-6z3ajjz4f1-6z3ajjz4f1.gz' -2026-01-16 11:18:38.683 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.683 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Memory.6z3ajjz4f1.wasm - 200 37691 application/wasm 16.0525ms -2026-01-16 11:18:38.687 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.x8wh4xd62i.wasm - null null -2026-01-16 11:18:38.688 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.689 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.689 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.689 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.689 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.689 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.689 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.689 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.689 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.689 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.689 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.689 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.689 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.690 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.690 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.690 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.690 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.690 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.690 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.690 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.690 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.703 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.x8wh4xd62i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\h1kacpcskm-{0}-x8wh4xd62i-x8wh4xd62i.gz' -2026-01-16 11:18:38.703 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.703 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.x8wh4xd62i.wasm - 200 34619 application/wasm 16.2058ms -2026-01-16 11:18:38.708 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Abstractions.sgloa63pwd.wasm - null null -2026-01-16 11:18:38.709 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.709 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.710 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.710 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.710 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.710 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.710 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.710 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.710 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.710 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.710 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.710 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.710 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.710 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.710 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.710 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.710 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.710 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.710 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.710 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.710 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.724 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.Abstractions.sgloa63pwd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\zxi0ykhieh-{0}-sgloa63pwd-sgloa63pwd.gz' -2026-01-16 11:18:38.724 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.724 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Abstractions.sgloa63pwd.wasm - 200 18230 application/wasm 15.4507ms -2026-01-16 11:18:38.728 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Binder.3jwzw3qxt4.wasm - null null -2026-01-16 11:18:38.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.729 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.729 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.729 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.729 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.729 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.730 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.730 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.730 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.730 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.730 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.730 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.730 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.730 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.743 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.Binder.3jwzw3qxt4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ko014cnbr7-{0}-3jwzw3qxt4-3jwzw3qxt4.gz' -2026-01-16 11:18:38.743 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.743 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Binder.3jwzw3qxt4.wasm - 200 33083 application/wasm 14.8534ms -2026-01-16 11:18:38.746 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.CommandLine.z1qo7xx5ru.wasm - null null -2026-01-16 11:18:38.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.747 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.747 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.747 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.747 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.747 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.747 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.747 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.747 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.747 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.747 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.747 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.747 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.747 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.765 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.CommandLine.z1qo7xx5ru.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0qcnzm5lmb-{0}-z1qo7xx5ru-z1qo7xx5ru.gz' -2026-01-16 11:18:38.765 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.765 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.CommandLine.z1qo7xx5ru.wasm - 200 15158 application/wasm 19.2057ms -2026-01-16 11:18:38.770 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.EnvironmentVariables.3gcxsk3zbu.wasm - null null -2026-01-16 11:18:38.771 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.771 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.771 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.771 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.771 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.771 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.771 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.771 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.771 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.771 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.771 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.771 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.771 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.772 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.772 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.772 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.772 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.772 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.772 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.772 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.772 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.786 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.EnvironmentVariables.3gcxsk3zbu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\urvjz3sczp-{0}-3gcxsk3zbu-3gcxsk3zbu.gz' -2026-01-16 11:18:38.786 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.786 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.EnvironmentVariables.3gcxsk3zbu.wasm - 200 11574 application/wasm 16.4681ms -2026-01-16 11:18:38.791 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.FileExtensions.phra2kqghi.wasm - null null -2026-01-16 11:18:38.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.792 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.792 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.793 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.793 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.793 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.793 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.793 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.793 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.793 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.793 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.793 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.793 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.793 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.807 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.FileExtensions.phra2kqghi.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6yhtz7i0uq-{0}-phra2kqghi-phra2kqghi.gz' -2026-01-16 11:18:38.807 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.807 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.FileExtensions.phra2kqghi.wasm - 200 18230 application/wasm 15.8958ms -2026-01-16 11:18:38.811 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Json.9udmvturlf.wasm - null null -2026-01-16 11:18:38.812 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.812 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.812 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.812 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.812 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.812 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.812 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.812 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.812 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.812 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.812 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.812 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.812 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.813 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.813 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.813 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.813 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.813 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.813 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.813 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.813 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.827 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.Json.9udmvturlf.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jn8nx9ltxb-{0}-9udmvturlf-9udmvturlf.gz' -2026-01-16 11:18:38.827 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.827 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Json.9udmvturlf.wasm - 200 17718 application/wasm 16.3797ms -2026-01-16 11:18:38.832 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.UserSecrets.86yue58ssu.wasm - null null -2026-01-16 11:18:38.832 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.833 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.833 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.833 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.833 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.833 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.833 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.833 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.833 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.833 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.833 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.833 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.833 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.833 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.834 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.834 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.834 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.834 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.834 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.834 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.834 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.849 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.UserSecrets.86yue58ssu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wlq0vssna7-{0}-86yue58ssu-86yue58ssu.gz' -2026-01-16 11:18:38.849 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.849 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.UserSecrets.86yue58ssu.wasm - 200 16182 application/wasm 17.2487ms -2026-01-16 11:18:38.852 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.92ulj88j6e.wasm - null null -2026-01-16 11:18:38.853 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.854 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.854 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.854 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.854 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.854 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.854 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.854 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.854 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.854 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.854 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.854 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.854 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.854 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.868 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.DependencyInjection.92ulj88j6e.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ap6jjl5cdc-{0}-92ulj88j6e-92ulj88j6e.gz' -2026-01-16 11:18:38.868 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.868 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.92ulj88j6e.wasm - 200 85312 application/wasm 15.861ms -2026-01-16 11:18:38.873 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.qzg75988t9.wasm - null null -2026-01-16 11:18:38.874 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.874 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.874 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.874 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.874 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.874 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.874 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.874 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.874 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.874 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.874 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.874 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.874 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.875 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.875 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.875 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.875 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.875 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.875 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.875 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.875 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.889 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.DependencyInjection.Abstractions.qzg75988t9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2yinc5vl42-{0}-qzg75988t9-qzg75988t9.gz' -2026-01-16 11:18:38.889 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.889 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.qzg75988t9.wasm - 200 55611 application/wasm 16.4472ms -2026-01-16 11:18:38.893 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.tgzcelqpkb.wasm - null null -2026-01-16 11:18:38.894 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.894 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.894 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.894 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.894 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.894 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.894 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.894 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.894 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.894 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.895 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.895 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.895 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.895 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.895 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.895 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.895 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.895 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.895 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.907 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Diagnostics.tgzcelqpkb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\q77258df46-{0}-tgzcelqpkb-tgzcelqpkb.gz' -2026-01-16 11:18:38.907 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.907 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.tgzcelqpkb.wasm - 200 25910 application/wasm 14.0464ms -2026-01-16 11:18:38.912 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.Abstractions.hq61ozpvxa.wasm - null null -2026-01-16 11:18:38.913 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.913 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.913 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.913 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.913 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.913 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.913 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.913 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.913 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.913 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.913 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.913 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.913 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.913 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.913 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.913 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.913 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.913 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.913 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.913 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.914 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.927 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Diagnostics.Abstractions.hq61ozpvxa.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\hlwf1zkx1t-{0}-hq61ozpvxa-hq61ozpvxa.gz' -2026-01-16 11:18:38.927 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.927 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.Abstractions.hq61ozpvxa.wasm - 200 20790 application/wasm 15.0334ms -2026-01-16 11:18:38.930 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Abstractions.wbhloeatw3.wasm - null null -2026-01-16 11:18:38.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.931 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.931 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.931 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.931 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.931 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.931 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.931 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.931 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.931 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.931 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.931 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.931 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.932 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.944 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Abstractions.wbhloeatw3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\hwi4k0i86u-{0}-wbhloeatw3-wbhloeatw3.gz' -2026-01-16 11:18:38.944 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.944 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Abstractions.wbhloeatw3.wasm - 200 13110 application/wasm 14.5416ms -2026-01-16 11:18:38.947 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Composite.z8bwpsdnc0.wasm - null null -2026-01-16 11:18:38.948 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.948 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.948 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.948 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.948 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.949 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.949 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.949 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.949 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.949 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.949 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.949 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.949 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.949 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.963 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Composite.z8bwpsdnc0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9or5ity2wj-{0}-z8bwpsdnc0-z8bwpsdnc0.gz' -2026-01-16 11:18:38.963 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.963 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Composite.z8bwpsdnc0.wasm - 200 8502 application/wasm 15.7318ms -2026-01-16 11:18:38.967 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Embedded.ptqvg1m34t.wasm - null null -2026-01-16 11:18:38.969 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.969 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.969 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.969 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.969 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.969 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.969 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.969 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.969 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.970 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.970 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.970 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.970 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.970 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.970 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.970 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.970 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.970 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.984 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Embedded.ptqvg1m34t.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gud3t43je0-{0}-ptqvg1m34t-ptqvg1m34t.gz' -2026-01-16 11:18:38.984 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:38.985 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Embedded.ptqvg1m34t.wasm - 200 23350 application/wasm 17.3173ms -2026-01-16 11:18:38.989 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Physical.y5k56zvg10.wasm - null null -2026-01-16 11:18:38.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.990 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:38.990 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:38.990 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:38.990 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:38.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:38.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:38.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:38.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:38.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:38.990 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:38.991 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:38.991 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:38.991 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:38.991 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:38.991 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:38.991 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:38.991 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:38.991 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.005 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Physical.y5k56zvg10.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\02df65jx0j-{0}-y5k56zvg10-y5k56zvg10.gz' -2026-01-16 11:18:39.005 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.005 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Physical.y5k56zvg10.wasm - 200 35131 application/wasm 16.5027ms -2026-01-16 11:18:39.010 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileSystemGlobbing.4cqycihgg0.wasm - null null -2026-01-16 11:18:39.010 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.010 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.011 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.011 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.011 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.011 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.011 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.011 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.011 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.011 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.011 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.028 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileSystemGlobbing.4cqycihgg0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4328gy858z-{0}-4cqycihgg0-4cqycihgg0.gz' -2026-01-16 11:18:39.028 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.028 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileSystemGlobbing.4cqycihgg0.wasm - 200 37691 application/wasm 18.6492ms -2026-01-16 11:18:39.043 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Hosting.Abstractions.5v78u2d057.wasm - null null -2026-01-16 11:18:39.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.044 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.044 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.044 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.044 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.044 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.045 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.045 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.045 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.045 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.045 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.045 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.045 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.045 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.062 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Hosting.Abstractions.5v78u2d057.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0bjpxbow7h-{0}-5v78u2d057-5v78u2d057.gz' -2026-01-16 11:18:39.062 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.063 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Hosting.Abstractions.5v78u2d057.wasm - 200 43835 application/wasm 19.5386ms -2026-01-16 11:18:39.069 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Http.apre2arxjd.wasm - null null -2026-01-16 11:18:39.070 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.070 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.070 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.071 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.071 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.071 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.071 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.071 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.071 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.071 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.071 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.071 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.071 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.071 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.072 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.072 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.072 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.072 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.072 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.072 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.072 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.088 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Http.apre2arxjd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ocorhjn9ks-{0}-apre2arxjd-apre2arxjd.gz' -2026-01-16 11:18:39.088 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.088 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Http.apre2arxjd.wasm - 200 82752 application/wasm 18.6271ms -2026-01-16 11:18:39.093 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.mml9tf1r1w.wasm - null null -2026-01-16 11:18:39.093 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.093 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.094 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.094 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.094 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.094 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.094 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.094 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.094 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.094 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.094 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.094 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.094 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.094 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.094 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.094 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.094 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.094 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.094 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.094 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.095 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.109 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Localization.mml9tf1r1w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uqdbs11skp-{0}-mml9tf1r1w-mml9tf1r1w.gz' -2026-01-16 11:18:39.109 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.109 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.mml9tf1r1w.wasm - 200 21302 application/wasm 16.912ms -2026-01-16 11:18:39.113 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.Abstractions.80p7fyumuw.wasm - null null -2026-01-16 11:18:39.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.114 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.114 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.114 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.114 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.114 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.115 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.115 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.115 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.115 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.115 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.115 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.115 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.115 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.128 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Localization.Abstractions.80p7fyumuw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j8jaks8ba9-{0}-80p7fyumuw-80p7fyumuw.gz' -2026-01-16 11:18:39.129 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.129 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.Abstractions.80p7fyumuw.wasm - 200 9014 application/wasm 15.6933ms -2026-01-16 11:18:39.132 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.05o184w673.wasm - null null -2026-01-16 11:18:39.133 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.133 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.133 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.133 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.133 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.133 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.133 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.133 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.133 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.133 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.133 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.133 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.133 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.133 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.133 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.134 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.134 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.134 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.134 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.134 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.134 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.148 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Logging.05o184w673.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1cbwctdp50-{0}-05o184w673-05o184w673.gz' -2026-01-16 11:18:39.148 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.149 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.05o184w673.wasm - 200 41275 application/wasm 16.4833ms -2026-01-16 11:18:39.152 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.Abstractions.hwa38jh90v.wasm - null null -2026-01-16 11:18:39.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.154 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.154 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.154 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.154 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.154 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.155 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.155 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.155 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.155 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.155 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.155 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.155 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.155 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.170 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Logging.Abstractions.hwa38jh90v.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\zatd8kwe6z-{0}-hwa38jh90v-hwa38jh90v.gz' -2026-01-16 11:18:39.170 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.170 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.Abstractions.hwa38jh90v.wasm - 200 56635 application/wasm 17.8021ms -2026-01-16 11:18:39.178 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.zsk78mkyl2.wasm - null null -2026-01-16 11:18:39.178 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.179 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.179 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.179 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.179 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.179 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.179 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.179 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.179 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.179 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.179 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.179 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.179 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.179 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.179 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.179 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.179 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.179 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.179 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.179 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.180 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.195 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Options.zsk78mkyl2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nx5gv127wz-{0}-zsk78mkyl2-zsk78mkyl2.gz' -2026-01-16 11:18:39.195 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.196 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.zsk78mkyl2.wasm - 200 55099 application/wasm 17.7423ms -2026-01-16 11:18:39.199 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.ConfigurationExtensions.qltknulxmy.wasm - null null -2026-01-16 11:18:39.200 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.200 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.200 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.200 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.200 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.200 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.201 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.201 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.201 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.201 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.201 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.201 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.201 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.201 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.201 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.201 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.201 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.201 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.201 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.201 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.202 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.217 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Options.ConfigurationExtensions.qltknulxmy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\eycsz92dw7-{0}-qltknulxmy-qltknulxmy.gz' -2026-01-16 11:18:39.217 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.217 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.ConfigurationExtensions.qltknulxmy.wasm - 200 11574 application/wasm 18.0901ms -2026-01-16 11:18:39.223 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Primitives.51b5spqlwz.wasm - null null -2026-01-16 11:18:39.224 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.224 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.224 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.224 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.224 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.224 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.225 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.225 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.225 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.225 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.225 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.225 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.225 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.225 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.225 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.240 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Primitives.51b5spqlwz.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dtxltxy254-{0}-51b5spqlwz-51b5spqlwz.gz' -2026-01-16 11:18:39.240 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.240 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Primitives.51b5spqlwz.wasm - 200 34619 application/wasm 17.1617ms -2026-01-16 11:18:39.244 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Validation.vibclmvzbq.wasm - null null -2026-01-16 11:18:39.245 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.245 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.245 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.245 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.245 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.245 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.245 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.245 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.245 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.245 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.245 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.245 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.245 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.246 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.246 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.246 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.246 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.246 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.246 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.246 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.246 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.260 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Validation.vibclmvzbq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wxjaiwsnh4-{0}-vibclmvzbq-vibclmvzbq.gz' -2026-01-16 11:18:39.260 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.260 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Validation.vibclmvzbq.wasm - 200 33083 application/wasm 16.1787ms -2026-01-16 11:18:39.264 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Abstractions.fm59ec96sb.wasm - null null -2026-01-16 11:18:39.264 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.264 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.265 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.265 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.265 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.265 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.265 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.265 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.265 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.265 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.265 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.265 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.265 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.265 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.265 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.265 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.265 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.265 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.265 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.265 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.265 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.280 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.Abstractions.fm59ec96sb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pw25ps676d-{0}-fm59ec96sb-fm59ec96sb.gz' -2026-01-16 11:18:39.280 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.280 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Abstractions.fm59ec96sb.wasm - 200 9014 application/wasm 16.7555ms -2026-01-16 11:18:39.284 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.JsonWebTokens.d706uu8nnf.wasm - null null -2026-01-16 11:18:39.285 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.285 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.285 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.285 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.285 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.285 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.285 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.285 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.285 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.285 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.285 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.285 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.285 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.286 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.286 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.286 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.286 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.286 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.286 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.286 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.286 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.300 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.JsonWebTokens.d706uu8nnf.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0ly9bxx2uc-{0}-d706uu8nnf-d706uu8nnf.gz' -2026-01-16 11:18:39.300 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.301 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.JsonWebTokens.d706uu8nnf.wasm - 200 161610 application/wasm 16.8611ms -2026-01-16 11:18:39.306 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Logging.lzotatrep2.wasm - null null -2026-01-16 11:18:39.307 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.308 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.308 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.308 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.308 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.308 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.308 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.308 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.308 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.308 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.308 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.308 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.308 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.308 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.308 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.308 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.308 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.308 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.309 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.309 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.309 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.323 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.Logging.lzotatrep2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\az540fuh9f-{0}-lzotatrep2-lzotatrep2.gz' -2026-01-16 11:18:39.323 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.323 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Logging.lzotatrep2.wasm - 200 26422 application/wasm 17.0061ms -2026-01-16 11:18:39.327 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Tokens.zeqz59uvkx.wasm - null null -2026-01-16 11:18:39.328 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.328 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.328 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.328 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.328 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.328 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.328 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.328 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.328 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.328 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.329 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.329 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.329 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.329 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.329 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.329 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.329 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.329 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.329 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.347 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.Tokens.zeqz59uvkx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pe5jdgvqrx-{0}-zeqz59uvkx-zeqz59uvkx.gz' -2026-01-16 11:18:39.347 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.347 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Tokens.zeqz59uvkx.wasm - 200 374125 application/wasm 19.8245ms -2026-01-16 11:18:39.352 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.kksrzpvoig.wasm - null null -2026-01-16 11:18:39.353 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.353 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.353 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.353 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.353 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.354 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.354 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.354 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.354 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.354 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.354 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.354 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.354 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.354 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.370 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.JSInterop.kksrzpvoig.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fulott20a4-{0}-kksrzpvoig-kksrzpvoig.gz' -2026-01-16 11:18:39.370 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.370 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.kksrzpvoig.wasm - 200 64827 application/wasm 17.8259ms -2026-01-16 11:18:39.377 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.WebAssembly.9udcqny0aq.wasm - null null -2026-01-16 11:18:39.378 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.379 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.379 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.379 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.379 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.379 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.379 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.379 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.379 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.379 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.379 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.379 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.379 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.379 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.379 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.380 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.380 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.380 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.380 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.380 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.380 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.397 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.JSInterop.WebAssembly.9udcqny0aq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9m4wklcqem-{0}-9udcqny0aq-9udcqny0aq.gz' -2026-01-16 11:18:39.397 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.397 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.WebAssembly.9udcqny0aq.wasm - 200 14646 application/wasm 20.3377ms -2026-01-16 11:18:39.402 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Net.Http.Headers.dqwvlhacs5.wasm - null null -2026-01-16 11:18:39.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.403 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.404 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.404 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.404 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.404 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.404 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.404 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.404 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.404 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.418 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Net.Http.Headers.dqwvlhacs5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\awoyestlxb-{0}-dqwvlhacs5-dqwvlhacs5.gz' -2026-01-16 11:18:39.418 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.418 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Net.Http.Headers.dqwvlhacs5.wasm - 200 75072 application/wasm 15.8681ms -2026-01-16 11:18:39.423 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Context.y5n2fi0oo0.wasm - null null -2026-01-16 11:18:39.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.425 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.425 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.425 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.425 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.425 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.425 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.425 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.425 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.425 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.443 +03:00 [INF] Sending file. Request path: '_framework/Nito.AsyncEx.Context.y5n2fi0oo0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6cfa8ozy3y-{0}-y5n2fi0oo0-y5n2fi0oo0.gz' -2026-01-16 11:18:39.443 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.443 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Context.y5n2fi0oo0.wasm - 200 13622 application/wasm 19.9384ms -2026-01-16 11:18:39.446 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Tasks.pmw3wnkbvb.wasm - null null -2026-01-16 11:18:39.447 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.447 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.447 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.447 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.447 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.448 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.448 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.448 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.448 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.448 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.448 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.448 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.448 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.448 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.462 +03:00 [INF] Sending file. Request path: '_framework/Nito.AsyncEx.Tasks.pmw3wnkbvb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pw3yczwgxh-{0}-pmw3wnkbvb-pmw3wnkbvb.gz' -2026-01-16 11:18:39.462 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.462 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Tasks.pmw3wnkbvb.wasm - 200 35643 application/wasm 15.974ms -2026-01-16 11:18:39.466 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Nito.Disposables.86nxvj1yiv.wasm - null null -2026-01-16 11:18:39.467 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.467 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.467 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.467 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.467 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.467 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.467 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.467 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.467 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.467 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.467 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.467 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.467 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.468 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.468 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.468 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.468 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.468 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.468 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.468 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.468 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.482 +03:00 [INF] Sending file. Request path: '_framework/Nito.Disposables.86nxvj1yiv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4m6819m7ll-{0}-86nxvj1yiv-86nxvj1yiv.gz' -2026-01-16 11:18:39.482 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.482 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Nito.Disposables.86nxvj1yiv.wasm - 200 22326 application/wasm 15.8907ms -2026-01-16 11:18:39.486 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/NUglify.p1yxori32v.wasm - null null -2026-01-16 11:18:39.487 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.487 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.487 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.487 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.487 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.487 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.487 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.487 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.487 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.487 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.487 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.487 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.487 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.487 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.487 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.487 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.487 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.487 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.487 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.487 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.488 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.508 +03:00 [INF] Sending file. Request path: '_framework/NUglify.p1yxori32v.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2fi9048uqb-{0}-p1yxori32v-p1yxori32v.gz' -2026-01-16 11:18:39.508 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.508 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/NUglify.p1yxori32v.wasm - 200 637333 application/wasm 22.3688ms -2026-01-16 11:18:39.513 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/OpenIddict.Abstractions.xc5u4bcwuv.wasm - null null -2026-01-16 11:18:39.514 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.514 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.514 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.514 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.514 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.514 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.514 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.514 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.514 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.514 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.514 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.514 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.514 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.515 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.515 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.515 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.515 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.515 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.515 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.515 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.515 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.529 +03:00 [INF] Sending file. Request path: '_framework/OpenIddict.Abstractions.xc5u4bcwuv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\46s7kaf9kj-{0}-xc5u4bcwuv-xc5u4bcwuv.gz' -2026-01-16 11:18:39.529 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.529 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/OpenIddict.Abstractions.xc5u4bcwuv.wasm - 200 380269 application/wasm 15.9241ms -2026-01-16 11:18:39.533 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Riok.Mapperly.Abstractions.bgo5wowxjs.wasm - null null -2026-01-16 11:18:39.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.534 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.534 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.534 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.534 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.534 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.534 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.535 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.535 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.535 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.549 +03:00 [INF] Sending file. Request path: '_framework/Riok.Mapperly.Abstractions.bgo5wowxjs.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3d5qji182j-{0}-bgo5wowxjs-bgo5wowxjs.gz' -2026-01-16 11:18:39.549 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.549 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Riok.Mapperly.Abstractions.bgo5wowxjs.wasm - 200 33083 application/wasm 16.5645ms -2026-01-16 11:18:39.554 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.CodeDom.fbxkfrockh.wasm - null null -2026-01-16 11:18:39.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.555 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.555 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.555 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.555 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.556 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.556 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.556 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.556 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.556 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.556 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.556 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.556 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.556 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.556 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.556 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.556 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.556 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.556 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.556 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.556 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.571 +03:00 [INF] Sending file. Request path: '_framework/System.CodeDom.fbxkfrockh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j53ve7gv1w-{0}-fbxkfrockh-fbxkfrockh.gz' -2026-01-16 11:18:39.571 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.571 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.CodeDom.fbxkfrockh.wasm - 200 174415 application/wasm 17.2886ms -2026-01-16 11:18:39.576 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.EventLog.x6zrz89c6o.wasm - null null -2026-01-16 11:18:39.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.577 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.577 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.577 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.577 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.577 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.577 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.577 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.577 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.577 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.577 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.577 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.577 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.578 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.593 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.EventLog.x6zrz89c6o.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j2puov35am-{0}-x6zrz89c6o-x6zrz89c6o.gz' -2026-01-16 11:18:39.593 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.593 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.EventLog.x6zrz89c6o.wasm - 200 41787 application/wasm 17.2721ms -2026-01-16 11:18:39.597 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IdentityModel.Tokens.Jwt.5tt1rwyygx.wasm - null null -2026-01-16 11:18:39.597 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.597 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.598 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.598 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.598 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.598 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.598 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.598 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.598 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.598 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.598 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.598 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.598 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.598 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.598 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.598 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.598 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.598 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.598 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.598 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.598 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.612 +03:00 [INF] Sending file. Request path: '_framework/System.IdentityModel.Tokens.Jwt.5tt1rwyygx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tr0pha0myb-{0}-5tt1rwyygx-5tt1rwyygx.gz' -2026-01-16 11:18:39.612 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.613 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IdentityModel.Tokens.Jwt.5tt1rwyygx.wasm - 200 81216 application/wasm 15.9055ms -2026-01-16 11:18:39.618 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.Dynamic.Core.2czhr4esfi.wasm - null null -2026-01-16 11:18:39.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.619 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.619 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.619 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.619 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.619 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.620 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.620 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.620 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.620 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.620 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.620 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.620 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.620 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.640 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.Dynamic.Core.2czhr4esfi.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\i8w7eyc5en-{0}-2czhr4esfi-2czhr4esfi.gz' -2026-01-16 11:18:39.640 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.640 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.Dynamic.Core.2czhr4esfi.wasm - 200 240985 application/wasm 22.065ms -2026-01-16 11:18:39.644 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Management.ot1u48wl1s.wasm - null null -2026-01-16 11:18:39.644 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.644 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.645 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.645 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.645 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.645 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.645 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.645 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.645 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.645 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.645 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.645 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.645 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.645 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.645 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.645 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.645 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.645 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.645 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.645 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.646 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.660 +03:00 [INF] Sending file. Request path: '_framework/System.Management.ot1u48wl1s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\evjyfukwb1-{0}-ot1u48wl1s-ot1u48wl1s.gz' -2026-01-16 11:18:39.660 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.660 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Management.ot1u48wl1s.wasm - 200 63803 application/wasm 16.0742ms -2026-01-16 11:18:39.666 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/TimeZoneConverter.halbc9brmz.wasm - null null -2026-01-16 11:18:39.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.667 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.667 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.667 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.667 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.668 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.668 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.668 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.668 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.668 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.668 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.668 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.668 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.668 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.683 +03:00 [INF] Sending file. Request path: '_framework/TimeZoneConverter.halbc9brmz.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xqev0b9yez-{0}-halbc9brmz-halbc9brmz.gz' -2026-01-16 11:18:39.683 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.683 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/TimeZoneConverter.halbc9brmz.wasm - 200 63803 application/wasm 16.7355ms -2026-01-16 11:18:39.686 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme.xsba7x7ipe.wasm - null null -2026-01-16 11:18:39.687 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.687 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.688 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.688 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.688 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.688 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.688 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.688 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.688 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.688 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.688 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.688 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.688 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.689 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.689 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.689 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.689 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.689 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.689 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.689 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.689 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.703 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme.xsba7x7ipe.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ym7urt49w9-{0}-xsba7x7ipe-xsba7x7ipe.gz' -2026-01-16 11:18:39.703 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.703 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme.xsba7x7ipe.wasm - 200 45371 application/wasm 16.3508ms -2026-01-16 11:18:39.706 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.LeptonXLiteTheme.tiy463c9qs.wasm - null null -2026-01-16 11:18:39.707 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.707 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.707 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.707 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.707 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.708 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.708 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.708 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.708 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.708 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.708 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.708 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.708 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.708 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.708 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.708 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.708 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.708 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.708 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.708 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.708 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.722 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.LeptonXLiteTheme.tiy463c9qs.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\adei3dyjzv-{0}-tiy463c9qs-tiy463c9qs.gz' -2026-01-16 11:18:39.722 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.722 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.LeptonXLiteTheme.tiy463c9qs.wasm - 200 39739 application/wasm 15.9918ms -2026-01-16 11:18:39.726 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.LeptonXLiteTheme.Bundling.0tjiudviiw.wasm - null null -2026-01-16 11:18:39.726 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.726 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.726 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.726 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.726 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.727 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.727 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.727 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.727 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.727 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.727 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.727 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.727 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.727 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.727 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.727 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.727 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.727 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.727 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.727 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.727 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.741 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.LeptonXLiteTheme.Bundling.0tjiudviiw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nv8s0qp5je-{0}-0tjiudviiw-0tjiudviiw.gz' -2026-01-16 11:18:39.741 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.741 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.LeptonXLiteTheme.Bundling.0tjiudviiw.wasm - 200 10038 application/wasm 15.5856ms -2026-01-16 11:18:39.744 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.CSharp.aars8n89vy.wasm - null null -2026-01-16 11:18:39.745 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.745 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.745 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.745 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.745 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.746 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.746 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.746 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.746 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.746 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.746 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.746 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.746 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.746 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.746 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.746 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.746 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.746 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.746 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.746 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.746 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.762 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.CSharp.aars8n89vy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\esvbxkosdi-{0}-aars8n89vy-aars8n89vy.gz' -2026-01-16 11:18:39.762 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.762 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.CSharp.aars8n89vy.wasm - 200 301411 application/wasm 17.893ms -2026-01-16 11:18:39.766 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.Core.upxd87cdr1.wasm - null null -2026-01-16 11:18:39.767 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.767 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.767 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.767 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.767 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.767 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.767 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.767 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.767 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.767 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.767 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.767 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.767 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.767 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.767 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.767 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.767 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.767 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.767 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.767 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.768 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.783 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.VisualBasic.Core.upxd87cdr1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jc5kei53j8-{0}-upxd87cdr1-upxd87cdr1.gz' -2026-01-16 11:18:39.783 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.784 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.Core.upxd87cdr1.wasm - 200 418674 application/wasm 17.9314ms -2026-01-16 11:18:39.788 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.lo3va0ewdb.wasm - null null -2026-01-16 11:18:39.789 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.789 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.789 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.789 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.789 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.790 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.790 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.790 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.790 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.790 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.790 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.790 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.790 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.790 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.790 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.790 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.790 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.790 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.790 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.790 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.791 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.803 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.VisualBasic.lo3va0ewdb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\57p19o16fi-{0}-lo3va0ewdb-lo3va0ewdb.gz' -2026-01-16 11:18:39.803 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.804 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.lo3va0ewdb.wasm - 200 6966 application/wasm 15.8094ms -2026-01-16 11:18:39.808 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Primitives.xf0i7ifc2c.wasm - null null -2026-01-16 11:18:39.809 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.809 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.809 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.809 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.809 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.810 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.810 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.810 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.810 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.810 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.810 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.810 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.810 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.810 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.825 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Win32.Primitives.xf0i7ifc2c.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\p8pizku5xb-{0}-xf0i7ifc2c-xf0i7ifc2c.gz' -2026-01-16 11:18:39.825 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.825 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Primitives.xf0i7ifc2c.wasm - 200 5430 application/wasm 17.0797ms -2026-01-16 11:18:39.828 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Registry.egcs66c38p.wasm - null null -2026-01-16 11:18:39.829 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.829 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.830 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.830 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.830 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.830 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.830 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.830 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.830 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.830 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.830 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.830 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.830 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.830 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.844 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Win32.Registry.egcs66c38p.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ouubhvk51-{0}-egcs66c38p-egcs66c38p.gz' -2026-01-16 11:18:39.844 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.844 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Registry.egcs66c38p.wasm - 200 22838 application/wasm 15.8464ms -2026-01-16 11:18:39.847 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.AppContext.229uy454et.wasm - null null -2026-01-16 11:18:39.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.848 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.848 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.848 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.848 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.849 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.849 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.849 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.849 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.849 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.849 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.849 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.849 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.849 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.860 +03:00 [INF] Sending file. Request path: '_framework/System.AppContext.229uy454et.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vtyu92lgvy-{0}-229uy454et-229uy454et.gz' -2026-01-16 11:18:39.860 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.860 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.AppContext.229uy454et.wasm - 200 4918 application/wasm 12.9439ms -2026-01-16 11:18:39.863 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Buffers.ffy4vk49sl.wasm - null null -2026-01-16 11:18:39.864 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.864 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.864 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.864 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.864 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.864 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.864 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.864 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.864 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.864 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.864 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.864 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.864 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.865 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.865 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.865 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.865 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.865 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.865 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.865 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.865 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.878 +03:00 [INF] Sending file. Request path: '_framework/System.Buffers.ffy4vk49sl.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\abrvn071f9-{0}-ffy4vk49sl-ffy4vk49sl.gz' -2026-01-16 11:18:39.878 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.878 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Buffers.ffy4vk49sl.wasm - 200 4918 application/wasm 15.1963ms -2026-01-16 11:18:39.881 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.Concurrent.vwjty21qm0.wasm - null null -2026-01-16 11:18:39.882 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.882 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.882 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.882 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.882 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.882 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.883 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.883 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.883 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.883 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.883 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.883 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.883 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.883 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.883 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.896 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.Concurrent.vwjty21qm0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5kmfc755lz-{0}-vwjty21qm0-vwjty21qm0.gz' -2026-01-16 11:18:39.896 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.896 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.Concurrent.vwjty21qm0.wasm - 200 78656 application/wasm 14.6813ms -2026-01-16 11:18:39.899 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.Immutable.62ow9webvq.wasm - null null -2026-01-16 11:18:39.900 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.900 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.900 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.900 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.900 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.900 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.900 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.900 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.900 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.900 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.900 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.900 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.900 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.901 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.901 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.901 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.901 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.901 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.901 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.901 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.901 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.915 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.Immutable.62ow9webvq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\y8eoflnwlp-{0}-62ow9webvq-62ow9webvq.gz' -2026-01-16 11:18:39.915 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.915 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.Immutable.62ow9webvq.wasm - 200 240985 application/wasm 16.4272ms -2026-01-16 11:18:39.919 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.NonGeneric.8znze2bng9.wasm - null null -2026-01-16 11:18:39.919 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.920 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.920 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.920 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.920 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.920 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.920 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.920 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.920 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.920 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.945 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.NonGeneric.8znze2bng9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\iq26svu8f5-{0}-8znze2bng9-8znze2bng9.gz' -2026-01-16 11:18:39.945 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.945 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.NonGeneric.8znze2bng9.wasm - 200 37691 application/wasm 26.6298ms -2026-01-16 11:18:39.949 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.Specialized.xek5hgzu5v.wasm - null null -2026-01-16 11:18:39.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.950 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.950 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.950 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.950 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.950 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.951 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.951 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.951 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.951 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.951 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.951 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.951 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.951 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.964 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.Specialized.xek5hgzu5v.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4cpzjuj3r0-{0}-xek5hgzu5v-xek5hgzu5v.gz' -2026-01-16 11:18:39.964 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.964 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.Specialized.xek5hgzu5v.wasm - 200 37691 application/wasm 14.8674ms -2026-01-16 11:18:39.967 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.0nghqyig8i.wasm - null null -2026-01-16 11:18:39.967 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.967 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.968 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.968 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.968 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.968 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.968 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.968 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.968 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.968 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.968 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.968 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.968 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.968 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.968 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.968 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.968 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.968 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.968 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.968 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.969 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.982 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.0nghqyig8i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rssb0afnfp-{0}-0nghqyig8i-0nghqyig8i.gz' -2026-01-16 11:18:39.982 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:39.982 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.0nghqyig8i.wasm - 200 102725 application/wasm 15.4817ms -2026-01-16 11:18:39.986 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Annotations.x5puxnf36m.wasm - null null -2026-01-16 11:18:39.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.987 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:39.987 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:39.987 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:39.987 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:39.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:39.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:39.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:39.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:39.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:39.987 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:39.988 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:39.988 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:39.988 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:39.988 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:39.988 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:39.988 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:39.988 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:39.988 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.000 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.Annotations.x5puxnf36m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sxzb8xtw7k-{0}-x5puxnf36m-x5puxnf36m.gz' -2026-01-16 11:18:40.000 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.000 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Annotations.x5puxnf36m.wasm - 200 92480 application/wasm 14.5408ms -2026-01-16 11:18:40.005 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.DataAnnotations.w951woxztj.wasm - null null -2026-01-16 11:18:40.006 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.006 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.006 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.007 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.007 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.007 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.007 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.007 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.007 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.007 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.007 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.007 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.007 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.007 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.007 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.007 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.007 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.007 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.007 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.007 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.007 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.022 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.DataAnnotations.w951woxztj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\koqxcel3zt-{0}-w951woxztj-w951woxztj.gz' -2026-01-16 11:18:40.022 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.022 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.DataAnnotations.w951woxztj.wasm - 200 6454 application/wasm 16.5004ms -2026-01-16 11:18:40.025 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.EventBasedAsync.xxfp6nuzvv.wasm - null null -2026-01-16 11:18:40.025 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.026 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.026 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.026 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.026 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.026 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.026 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.026 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.026 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.026 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.026 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.026 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.026 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.027 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.040 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.EventBasedAsync.xxfp6nuzvv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vq3ormnt3h-{0}-xxfp6nuzvv-xxfp6nuzvv.gz' -2026-01-16 11:18:40.040 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.040 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.EventBasedAsync.xxfp6nuzvv.wasm - 200 16182 application/wasm 15.4221ms -2026-01-16 11:18:40.045 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Primitives.lfp6xvb2nc.wasm - null null -2026-01-16 11:18:40.045 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.046 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.046 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.046 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.046 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.046 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.046 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.046 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.046 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.046 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.046 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.046 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.046 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.046 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.061 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.Primitives.lfp6xvb2nc.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\f7c6808jvl-{0}-lfp6xvb2nc-lfp6xvb2nc.gz' -2026-01-16 11:18:40.061 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.062 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Primitives.lfp6xvb2nc.wasm - 200 32054 application/wasm 17.065ms -2026-01-16 11:18:40.065 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.TypeConverter.b6pminnty5.wasm - null null -2026-01-16 11:18:40.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.066 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.066 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.066 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.066 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.066 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.066 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.066 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.066 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.067 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.067 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.067 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.067 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.067 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.085 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.TypeConverter.b6pminnty5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lj5t7hnftt-{0}-b6pminnty5-b6pminnty5.gz' -2026-01-16 11:18:40.085 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.085 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.TypeConverter.b6pminnty5.wasm - 200 306531 application/wasm 20.4693ms -2026-01-16 11:18:40.089 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.1kxs5658en.wasm - null null -2026-01-16 11:18:40.090 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.090 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.090 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.090 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.090 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.091 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.091 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.091 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.091 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.091 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.091 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.091 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.091 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.091 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.106 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.1kxs5658en.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3bfqm2cg1o-{0}-1kxs5658en-1kxs5658en.gz' -2026-01-16 11:18:40.106 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.106 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.1kxs5658en.wasm - 200 5942 application/wasm 17.2348ms -2026-01-16 11:18:40.112 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Configuration.dfuzh9rwie.wasm - null null -2026-01-16 11:18:40.113 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.113 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.113 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.113 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.113 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.113 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.113 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.113 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.113 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.113 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.113 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.113 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.113 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.114 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.114 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.114 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.114 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.114 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.114 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.114 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.114 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.130 +03:00 [INF] Sending file. Request path: '_framework/System.Configuration.dfuzh9rwie.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xe6xuwrov9-{0}-dfuzh9rwie-dfuzh9rwie.gz' -2026-01-16 11:18:40.130 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.131 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Configuration.dfuzh9rwie.wasm - 200 9014 application/wasm 18.6957ms -2026-01-16 11:18:40.133 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Console.5bpbf67g8o.wasm - null null -2026-01-16 11:18:40.134 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.134 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.135 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.135 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.135 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.135 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.135 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.135 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.135 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.135 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.135 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.135 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.135 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.136 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.151 +03:00 [INF] Sending file. Request path: '_framework/System.Console.5bpbf67g8o.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6mvz9phqs1-{0}-5bpbf67g8o-5bpbf67g8o.gz' -2026-01-16 11:18:40.151 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.151 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Console.5bpbf67g8o.wasm - 200 43835 application/wasm 17.7116ms -2026-01-16 11:18:40.157 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Core.zxsh7ohdyg.wasm - null null -2026-01-16 11:18:40.157 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.157 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.158 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.158 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.158 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.158 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.158 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.158 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.158 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.158 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.158 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.158 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.158 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.158 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.158 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.158 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.158 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.158 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.158 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.158 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.158 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.174 +03:00 [INF] Sending file. Request path: '_framework/System.Core.zxsh7ohdyg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\cubawh6yyf-{0}-zxsh7ohdyg-zxsh7ohdyg.gz' -2026-01-16 11:18:40.174 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.174 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Core.zxsh7ohdyg.wasm - 200 13110 application/wasm 17.1018ms -2026-01-16 11:18:40.176 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Data.Common.f0gomia98j.wasm - null null -2026-01-16 11:18:40.177 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.177 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.177 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.177 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.177 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.177 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.177 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.177 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.177 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.178 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.178 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.178 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.178 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.178 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.178 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.178 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.178 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.178 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.178 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.178 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.178 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.199 +03:00 [INF] Sending file. Request path: '_framework/System.Data.Common.f0gomia98j.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1c47smzjbl-{0}-f0gomia98j-f0gomia98j.gz' -2026-01-16 11:18:40.199 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.199 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Data.Common.f0gomia98j.wasm - 200 1008076 application/wasm 23.0107ms -2026-01-16 11:18:40.206 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Data.DataSetExtensions.3k3coynn1w.wasm - null null -2026-01-16 11:18:40.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.207 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.207 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.207 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.207 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.207 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.207 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.207 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.207 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.207 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.207 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.207 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.207 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.208 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.208 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.208 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.208 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.208 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.208 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.208 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.208 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.223 +03:00 [INF] Sending file. Request path: '_framework/System.Data.DataSetExtensions.3k3coynn1w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ud5iprd0cp-{0}-3k3coynn1w-3k3coynn1w.gz' -2026-01-16 11:18:40.223 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.223 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Data.DataSetExtensions.3k3coynn1w.wasm - 200 5430 application/wasm 17.294ms -2026-01-16 11:18:40.226 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Data.d1s9ppg3o7.wasm - null null -2026-01-16 11:18:40.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.227 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.228 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.228 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.228 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.228 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.228 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.228 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.228 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.228 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.228 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.241 +03:00 [INF] Sending file. Request path: '_framework/System.Data.d1s9ppg3o7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\z59k6pwvr9-{0}-d1s9ppg3o7-d1s9ppg3o7.gz' -2026-01-16 11:18:40.241 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.241 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Data.d1s9ppg3o7.wasm - 200 15158 application/wasm 14.3412ms -2026-01-16 11:18:40.245 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Contracts.yj802auekg.wasm - null null -2026-01-16 11:18:40.246 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.246 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.246 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.246 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.246 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.246 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.246 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.246 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.246 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.246 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.246 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.246 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.246 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.246 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.246 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.246 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.247 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.247 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.247 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.247 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.247 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.261 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Contracts.yj802auekg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\895yo00sin-{0}-yj802auekg-yj802auekg.gz' -2026-01-16 11:18:40.261 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.261 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Contracts.yj802auekg.wasm - 200 5942 application/wasm 15.6736ms -2026-01-16 11:18:40.263 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Debug.d3luf33vju.wasm - null null -2026-01-16 11:18:40.264 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.264 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.264 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.264 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.264 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.265 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.265 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.265 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.265 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.265 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.265 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.265 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.265 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.265 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.265 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.265 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.265 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.265 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.265 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.265 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.265 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.279 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Debug.d3luf33vju.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\eplp8tl5qp-{0}-d3luf33vju-d3luf33vju.gz' -2026-01-16 11:18:40.279 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.279 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Debug.d3luf33vju.wasm - 200 5430 application/wasm 15.9798ms -2026-01-16 11:18:40.282 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.DiagnosticSource.4iwxfpqf71.wasm - null null -2026-01-16 11:18:40.283 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.284 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.284 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.284 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.284 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.284 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.284 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.284 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.284 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.284 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.284 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.284 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.284 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.284 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.284 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.285 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.285 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.285 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.285 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.285 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.285 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.302 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.DiagnosticSource.4iwxfpqf71.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1hb9b6viqf-{0}-4iwxfpqf71-4iwxfpqf71.gz' -2026-01-16 11:18:40.302 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.303 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.DiagnosticSource.4iwxfpqf71.wasm - 200 192335 application/wasm 20.051ms -2026-01-16 11:18:40.307 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.FileVersionInfo.pqffbmgf59.wasm - null null -2026-01-16 11:18:40.308 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.308 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.308 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.308 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.308 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.309 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.309 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.309 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.309 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.309 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.309 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.309 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.309 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.309 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.309 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.309 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.309 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.309 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.309 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.309 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.309 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.323 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.FileVersionInfo.pqffbmgf59.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s56fv99ax6-{0}-pqffbmgf59-pqffbmgf59.gz' -2026-01-16 11:18:40.323 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.323 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.FileVersionInfo.pqffbmgf59.wasm - 200 12598 application/wasm 15.7909ms -2026-01-16 11:18:40.327 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Process.hgedtugxkh.wasm - null null -2026-01-16 11:18:40.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.329 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.329 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.329 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.329 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.329 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.329 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.329 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.330 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.330 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.330 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.330 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.330 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.330 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.344 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Process.hgedtugxkh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ulvoxvx0qx-{0}-hgedtugxkh-hgedtugxkh.gz' -2026-01-16 11:18:40.344 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.344 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Process.hgedtugxkh.wasm - 200 46395 application/wasm 16.5256ms -2026-01-16 11:18:40.348 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.StackTrace.apl6dmc0ay.wasm - null null -2026-01-16 11:18:40.349 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.349 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.349 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.349 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.349 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.349 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.349 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.349 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.349 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.349 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.349 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.349 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.349 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.349 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.349 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.349 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.349 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.349 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.349 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.349 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.350 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.363 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.StackTrace.apl6dmc0ay.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b4bxks5sgj-{0}-apl6dmc0ay-apl6dmc0ay.gz' -2026-01-16 11:18:40.363 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.363 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.StackTrace.apl6dmc0ay.wasm - 200 15670 application/wasm 15.5475ms -2026-01-16 11:18:40.366 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.TextWriterTraceListener.p621ruagc5.wasm - null null -2026-01-16 11:18:40.367 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.367 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.367 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.367 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.367 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.367 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.367 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.367 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.367 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.367 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.367 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.367 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.367 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.368 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.368 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.368 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.368 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.368 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.368 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.368 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.368 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.382 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.TextWriterTraceListener.p621ruagc5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0rz7u0vbo5-{0}-p621ruagc5-p621ruagc5.gz' -2026-01-16 11:18:40.382 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.382 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.TextWriterTraceListener.p621ruagc5.wasm - 200 21302 application/wasm 15.6966ms -2026-01-16 11:18:40.386 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Tools.f5hnfusd9n.wasm - null null -2026-01-16 11:18:40.387 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.387 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.387 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.387 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.387 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.387 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.387 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.387 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.387 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.387 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.387 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.387 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.387 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.388 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.388 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.388 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.388 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.388 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.388 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.388 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.388 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.400 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Tools.f5hnfusd9n.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rtkunlcxi7-{0}-f5hnfusd9n-f5hnfusd9n.gz' -2026-01-16 11:18:40.400 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.400 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Tools.f5hnfusd9n.wasm - 200 4918 application/wasm 14.2799ms -2026-01-16 11:18:40.403 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.TraceSource.z6jsaoha6p.wasm - null null -2026-01-16 11:18:40.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.405 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.405 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.405 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.405 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.405 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.405 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.405 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.405 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.405 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.405 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.405 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.405 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.406 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.406 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.406 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.406 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.406 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.406 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.406 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.406 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.419 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.TraceSource.z6jsaoha6p.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3okia77zo6-{0}-z6jsaoha6p-z6jsaoha6p.gz' -2026-01-16 11:18:40.419 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.420 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.TraceSource.z6jsaoha6p.wasm - 200 48443 application/wasm 16.286ms -2026-01-16 11:18:40.424 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Tracing.d1w6x6c56c.wasm - null null -2026-01-16 11:18:40.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.425 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.425 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.425 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.425 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.425 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.425 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.425 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.426 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.426 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.426 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.426 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.426 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.426 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.440 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Tracing.d1w6x6c56c.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bl5rt2o9qk-{0}-d1w6x6c56c-d1w6x6c56c.gz' -2026-01-16 11:18:40.440 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.440 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Tracing.d1w6x6c56c.wasm - 200 5942 application/wasm 16.6038ms -2026-01-16 11:18:40.444 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Drawing.Primitives.l0kpbmmg5r.wasm - null null -2026-01-16 11:18:40.445 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.445 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.445 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.445 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.445 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.445 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.445 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.445 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.445 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.445 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.445 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.445 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.445 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.446 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.446 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.446 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.446 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.446 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.446 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.446 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.446 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.459 +03:00 [INF] Sending file. Request path: '_framework/System.Drawing.Primitives.l0kpbmmg5r.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mnh24cyvjl-{0}-l0kpbmmg5r-l0kpbmmg5r.gz' -2026-01-16 11:18:40.459 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.460 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Drawing.Primitives.l0kpbmmg5r.wasm - 200 54587 application/wasm 15.6148ms -2026-01-16 11:18:40.464 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Drawing.ur4stg427u.wasm - null null -2026-01-16 11:18:40.464 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.465 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.465 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.465 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.465 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.465 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.465 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.465 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.465 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.465 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.465 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.465 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.465 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.465 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.465 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.465 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.465 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.465 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.465 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.465 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.466 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.479 +03:00 [INF] Sending file. Request path: '_framework/System.Drawing.ur4stg427u.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tcko64rf2o-{0}-ur4stg427u-ur4stg427u.gz' -2026-01-16 11:18:40.479 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.479 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Drawing.ur4stg427u.wasm - 200 10038 application/wasm 15.452ms -2026-01-16 11:18:40.482 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Dynamic.Runtime.hhm1961hd1.wasm - null null -2026-01-16 11:18:40.483 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.483 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.483 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.483 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.483 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.483 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.483 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.483 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.483 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.483 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.483 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.483 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.483 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.484 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.484 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.484 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.484 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.484 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.484 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.484 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.484 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.499 +03:00 [INF] Sending file. Request path: '_framework/System.Dynamic.Runtime.hhm1961hd1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bmbd8giz1p-{0}-hhm1961hd1-hhm1961hd1.gz' -2026-01-16 11:18:40.499 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.499 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Dynamic.Runtime.hhm1961hd1.wasm - 200 5942 application/wasm 16.4911ms -2026-01-16 11:18:40.502 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Formats.Asn1.9b1kh77dim.wasm - null null -2026-01-16 11:18:40.503 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.503 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.503 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.503 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.503 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.503 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.503 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.503 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.503 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.503 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.503 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.503 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.503 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.503 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.503 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.503 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.504 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.504 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.504 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.504 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.504 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.518 +03:00 [INF] Sending file. Request path: '_framework/System.Formats.Asn1.9b1kh77dim.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3nsgkkymfm-{0}-9b1kh77dim-9b1kh77dim.gz' -2026-01-16 11:18:40.518 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.518 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Formats.Asn1.9b1kh77dim.wasm - 200 86848 application/wasm 16.0464ms -2026-01-16 11:18:40.521 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Formats.Tar.pwu9oiomot.wasm - null null -2026-01-16 11:18:40.522 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.522 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.522 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.522 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.522 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.523 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.523 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.523 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.523 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.523 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.523 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.523 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.523 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.523 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.523 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.523 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.523 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.523 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.523 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.523 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.524 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.537 +03:00 [INF] Sending file. Request path: '_framework/System.Formats.Tar.pwu9oiomot.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\hazqfqk5pt-{0}-pwu9oiomot-pwu9oiomot.gz' -2026-01-16 11:18:40.537 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.537 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Formats.Tar.pwu9oiomot.wasm - 200 28470 application/wasm 15.7354ms -2026-01-16 11:18:40.541 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Globalization.Calendars.w6686c3eg8.wasm - null null -2026-01-16 11:18:40.542 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.542 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.542 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.542 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.542 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.542 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.542 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.542 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.542 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.542 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.542 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.542 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.542 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.542 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.542 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.542 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.542 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.542 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.542 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.542 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.543 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.554 +03:00 [INF] Sending file. Request path: '_framework/System.Globalization.Calendars.w6686c3eg8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\095aowv2ry-{0}-w6686c3eg8-w6686c3eg8.gz' -2026-01-16 11:18:40.555 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.555 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Globalization.Calendars.w6686c3eg8.wasm - 200 5430 application/wasm 13.8553ms -2026-01-16 11:18:40.558 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Globalization.Extensions.koczvzp0tt.wasm - null null -2026-01-16 11:18:40.559 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.559 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.559 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.559 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.559 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.560 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.560 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.560 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.560 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.560 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.560 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.560 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.560 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.560 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.560 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.560 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.560 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.560 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.560 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.560 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.560 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.574 +03:00 [INF] Sending file. Request path: '_framework/System.Globalization.Extensions.koczvzp0tt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dl0jfhz19c-{0}-koczvzp0tt-koczvzp0tt.gz' -2026-01-16 11:18:40.574 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.574 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Globalization.Extensions.koczvzp0tt.wasm - 200 4918 application/wasm 15.4931ms -2026-01-16 11:18:40.577 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Globalization.k8m97q3m8s.wasm - null null -2026-01-16 11:18:40.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.578 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.578 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.578 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.578 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.578 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.578 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.578 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.578 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.578 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.578 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.578 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.578 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.579 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.594 +03:00 [INF] Sending file. Request path: '_framework/System.Globalization.k8m97q3m8s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8q1hdhcajb-{0}-k8m97q3m8s-k8m97q3m8s.gz' -2026-01-16 11:18:40.594 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.594 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Globalization.k8m97q3m8s.wasm - 200 5430 application/wasm 16.9047ms -2026-01-16 11:18:40.597 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.Brotli.66hvl0dk85.wasm - null null -2026-01-16 11:18:40.598 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.598 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.598 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.598 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.598 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.598 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.598 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.598 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.598 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.598 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.598 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.598 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.598 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.598 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.599 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.599 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.599 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.599 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.599 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.599 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.599 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.611 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Compression.Brotli.66hvl0dk85.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\klv0zda5b4-{0}-66hvl0dk85-66hvl0dk85.gz' -2026-01-16 11:18:40.611 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.611 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.Brotli.66hvl0dk85.wasm - 200 18230 application/wasm 14.39ms -2026-01-16 11:18:40.614 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.FileSystem.jhbp0nl2b8.wasm - null null -2026-01-16 11:18:40.615 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.615 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.616 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.616 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.616 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.616 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.616 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.616 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.616 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.616 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.616 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.629 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Compression.FileSystem.jhbp0nl2b8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3qa8sgt8n1-{0}-jhbp0nl2b8-jhbp0nl2b8.gz' -2026-01-16 11:18:40.629 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.629 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.FileSystem.jhbp0nl2b8.wasm - 200 4918 application/wasm 15.2257ms -2026-01-16 11:18:40.632 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.ZipFile.nap78ewmdw.wasm - null null -2026-01-16 11:18:40.633 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.633 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.633 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.633 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.633 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.633 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.633 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.633 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.633 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.633 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.634 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.634 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.634 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.634 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.634 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.634 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.634 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.634 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.634 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.634 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.634 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.647 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Compression.ZipFile.nap78ewmdw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s0uvr55768-{0}-nap78ewmdw-nap78ewmdw.gz' -2026-01-16 11:18:40.647 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.647 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.ZipFile.nap78ewmdw.wasm - 200 43323 application/wasm 14.8869ms -2026-01-16 11:18:40.651 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.wjdy7ns833.wasm - null null -2026-01-16 11:18:40.651 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.651 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.651 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.651 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.651 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.652 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.652 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.652 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.652 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.652 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.652 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.652 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.652 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.652 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.667 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Compression.wjdy7ns833.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b9wmrmes1g-{0}-wjdy7ns833-wjdy7ns833.gz' -2026-01-16 11:18:40.667 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.667 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.wjdy7ns833.wasm - 200 157514 application/wasm 16.2763ms -2026-01-16 11:18:40.670 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.AccessControl.eod3jwbqn7.wasm - null null -2026-01-16 11:18:40.671 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.671 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.671 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.671 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.671 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.672 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.672 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.672 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.672 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.672 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.672 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.672 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.672 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.672 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.672 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.672 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.672 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.672 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.672 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.672 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.673 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.685 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.AccessControl.eod3jwbqn7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dxkig4l83f-{0}-eod3jwbqn7-eod3jwbqn7.gz' -2026-01-16 11:18:40.686 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.686 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.AccessControl.eod3jwbqn7.wasm - 200 21814 application/wasm 15.2284ms -2026-01-16 11:18:40.690 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.DriveInfo.driq9z3dvq.wasm - null null -2026-01-16 11:18:40.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.691 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.691 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.691 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.691 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.691 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.691 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.691 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.691 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.691 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.691 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.691 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.691 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.692 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.706 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.DriveInfo.driq9z3dvq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\53tiabgbqz-{0}-driq9z3dvq-driq9z3dvq.gz' -2026-01-16 11:18:40.706 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.706 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.DriveInfo.driq9z3dvq.wasm - 200 13622 application/wasm 16.7784ms -2026-01-16 11:18:40.709 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.Primitives.81fwc35czq.wasm - null null -2026-01-16 11:18:40.710 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.710 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.710 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.710 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.710 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.711 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.711 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.711 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.711 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.711 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.711 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.711 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.711 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.711 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.724 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.Primitives.81fwc35czq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3hdbxu1ccm-{0}-81fwc35czq-81fwc35czq.gz' -2026-01-16 11:18:40.724 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.724 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.Primitives.81fwc35czq.wasm - 200 4918 application/wasm 14.8977ms -2026-01-16 11:18:40.728 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.Watcher.adgwo4kuza.wasm - null null -2026-01-16 11:18:40.728 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.728 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.729 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.729 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.729 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.729 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.729 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.729 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.729 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.729 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.729 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.729 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.729 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.729 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.743 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.Watcher.adgwo4kuza.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0nk9uqd91z-{0}-adgwo4kuza-adgwo4kuza.gz' -2026-01-16 11:18:40.743 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.743 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.Watcher.adgwo4kuza.wasm - 200 22838 application/wasm 15.0671ms -2026-01-16 11:18:40.746 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.bwu3sqaj6h.wasm - null null -2026-01-16 11:18:40.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.747 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.747 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.747 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.747 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.747 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.748 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.748 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.748 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.748 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.748 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.748 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.748 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.748 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.761 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.bwu3sqaj6h.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0oeun214in-{0}-bwu3sqaj6h-bwu3sqaj6h.gz' -2026-01-16 11:18:40.761 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.761 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.bwu3sqaj6h.wasm - 200 5430 application/wasm 15.4651ms -2026-01-16 11:18:40.764 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.IsolatedStorage.h5a2uwu0ao.wasm - null null -2026-01-16 11:18:40.765 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.765 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.766 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.766 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.766 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.766 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.766 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.766 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.766 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.766 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.766 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.766 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.766 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.767 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.781 +03:00 [INF] Sending file. Request path: '_framework/System.IO.IsolatedStorage.h5a2uwu0ao.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wxrt5vpq1k-{0}-h5a2uwu0ao-h5a2uwu0ao.gz' -2026-01-16 11:18:40.781 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.781 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.IsolatedStorage.h5a2uwu0ao.wasm - 200 24886 application/wasm 16.9099ms -2026-01-16 11:18:40.785 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.MemoryMappedFiles.7rigkgafok.wasm - null null -2026-01-16 11:18:40.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.786 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.786 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.786 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.786 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.786 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.786 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.786 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.786 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.786 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.787 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.787 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.787 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.787 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.798 +03:00 [INF] Sending file. Request path: '_framework/System.IO.MemoryMappedFiles.7rigkgafok.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vyic7lxnxv-{0}-7rigkgafok-7rigkgafok.gz' -2026-01-16 11:18:40.798 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.798 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.MemoryMappedFiles.7rigkgafok.wasm - 200 39739 application/wasm 13.7613ms -2026-01-16 11:18:40.802 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipelines.pq56wwa14f.wasm - null null -2026-01-16 11:18:40.803 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.803 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.803 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.803 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.803 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.803 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.803 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.803 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.803 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.803 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.803 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.803 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.803 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.803 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.803 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.803 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.803 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.803 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.803 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.803 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.804 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.815 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Pipelines.pq56wwa14f.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\a08rh4wqum-{0}-pq56wwa14f-pq56wwa14f.gz' -2026-01-16 11:18:40.815 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.815 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipelines.pq56wwa14f.wasm - 200 67904 application/wasm 13.2431ms -2026-01-16 11:18:40.818 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipes.AccessControl.orawgey7bd.wasm - null null -2026-01-16 11:18:40.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.819 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.819 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.819 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.819 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.819 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.820 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.820 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.820 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.820 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.820 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.820 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.820 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.820 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.833 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Pipes.AccessControl.orawgey7bd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\l16mq4yf9p-{0}-orawgey7bd-orawgey7bd.gz' -2026-01-16 11:18:40.833 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.833 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipes.AccessControl.orawgey7bd.wasm - 200 13110 application/wasm 15.0766ms -2026-01-16 11:18:40.836 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipes.qv5hx9ne5m.wasm - null null -2026-01-16 11:18:40.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.838 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.838 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.838 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.838 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.838 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.838 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.838 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.838 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.838 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.848 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Pipes.qv5hx9ne5m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\r2irkbzfn5-{0}-qv5hx9ne5m-qv5hx9ne5m.gz' -2026-01-16 11:18:40.848 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.848 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipes.qv5hx9ne5m.wasm - 200 32054 application/wasm 11.8302ms -2026-01-16 11:18:40.852 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.UnmanagedMemoryStream.zjpuh62vtt.wasm - null null -2026-01-16 11:18:40.853 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.854 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.854 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.854 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.854 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.854 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.854 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.854 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.854 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.854 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.854 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.854 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.854 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.855 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.868 +03:00 [INF] Sending file. Request path: '_framework/System.IO.UnmanagedMemoryStream.zjpuh62vtt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\u2mfjvv6a6-{0}-zjpuh62vtt-zjpuh62vtt.gz' -2026-01-16 11:18:40.868 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.868 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.UnmanagedMemoryStream.zjpuh62vtt.wasm - 200 5430 application/wasm 15.9986ms -2026-01-16 11:18:40.872 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.kdm5se4z4i.wasm - null null -2026-01-16 11:18:40.873 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.873 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.873 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.873 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.873 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.873 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.873 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.873 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.873 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.873 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.873 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.873 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.873 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.874 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.874 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.874 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.874 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.874 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.874 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.874 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.874 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.886 +03:00 [INF] Sending file. Request path: '_framework/System.IO.kdm5se4z4i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tx0zr2bfyn-{0}-kdm5se4z4i-kdm5se4z4i.gz' -2026-01-16 11:18:40.886 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.886 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.kdm5se4z4i.wasm - 200 5430 application/wasm 14.5082ms -2026-01-16 11:18:40.890 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.AsyncEnumerable.24q069vvmu.wasm - null null -2026-01-16 11:18:40.891 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.891 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.891 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.891 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.891 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.891 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.891 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.891 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.891 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.891 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.891 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.891 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.891 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.892 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.892 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.892 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.892 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.892 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.892 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.892 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.892 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.909 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.AsyncEnumerable.24q069vvmu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c7lzsfjd6q-{0}-24q069vvmu-24q069vvmu.gz' -2026-01-16 11:18:40.909 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.909 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.AsyncEnumerable.24q069vvmu.wasm - 200 446327 application/wasm 18.8419ms -2026-01-16 11:18:40.919 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.Expressions.5vac4cfeo2.wasm - null null -2026-01-16 11:18:40.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.920 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.921 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.921 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.921 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.921 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.921 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.921 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.921 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.921 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.938 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.Expressions.5vac4cfeo2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ofq1bjb4ny-{0}-5vac4cfeo2-5vac4cfeo2.gz' -2026-01-16 11:18:40.938 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.938 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.Expressions.5vac4cfeo2.wasm - 200 565131 application/wasm 19.2866ms -2026-01-16 11:18:40.942 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.Parallel.wec9zwybs3.wasm - null null -2026-01-16 11:18:40.943 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.943 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.943 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.943 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.943 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.943 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.943 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.943 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.943 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.943 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.943 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.943 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.943 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.943 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.943 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.943 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.943 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.943 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.944 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.944 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.944 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.960 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.Parallel.wec9zwybs3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gqwqnnwtf4-{0}-wec9zwybs3-wec9zwybs3.gz' -2026-01-16 11:18:40.960 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.960 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.Parallel.wec9zwybs3.wasm - 200 212820 application/wasm 18.6402ms -2026-01-16 11:18:40.964 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.Queryable.aacsqokaru.wasm - null null -2026-01-16 11:18:40.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.966 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.966 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.966 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.966 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.966 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.966 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.966 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.966 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.966 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.966 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.966 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.966 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.966 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.966 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.980 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.Queryable.aacsqokaru.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6oa4hfxdqf-{0}-aacsqokaru-aacsqokaru.gz' -2026-01-16 11:18:40.981 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:40.981 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.Queryable.aacsqokaru.wasm - 200 68416 application/wasm 16.3532ms -2026-01-16 11:18:40.986 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.xsk9czcoz7.wasm - null null -2026-01-16 11:18:40.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.987 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:40.987 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:40.987 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:40.987 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:40.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:40.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:40.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:40.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:40.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:40.987 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:40.988 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:40.988 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:40.988 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:40.988 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:40.988 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:40.988 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:40.988 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:40.988 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.003 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.xsk9czcoz7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xukhwpcysr-{0}-xsk9czcoz7-xsk9czcoz7.gz' -2026-01-16 11:18:41.003 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.003 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.xsk9czcoz7.wasm - 200 190799 application/wasm 17.3757ms -2026-01-16 11:18:41.008 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Memory.av3iy8oqe6.wasm - null null -2026-01-16 11:18:41.009 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.009 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.009 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.009 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.009 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.009 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.009 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.009 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.009 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.009 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.009 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.009 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.009 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.010 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.010 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.010 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.010 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.010 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.010 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.010 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.010 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.024 +03:00 [INF] Sending file. Request path: '_framework/System.Memory.av3iy8oqe6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\20k8bcs2ry-{0}-av3iy8oqe6-av3iy8oqe6.gz' -2026-01-16 11:18:41.024 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.024 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Memory.av3iy8oqe6.wasm - 200 45371 application/wasm 16.3297ms -2026-01-16 11:18:41.029 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Http.Json.f5ti54ia1a.wasm - null null -2026-01-16 11:18:41.029 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.030 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.030 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.030 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.030 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.030 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.030 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.030 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.030 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.030 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.030 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.030 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.030 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.030 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.030 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.030 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.030 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.030 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.030 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.030 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.031 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.044 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Http.Json.f5ti54ia1a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\hdhp2fv8el-{0}-f5ti54ia1a-f5ti54ia1a.gz' -2026-01-16 11:18:41.044 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.044 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Http.Json.f5ti54ia1a.wasm - 200 45883 application/wasm 15.0198ms -2026-01-16 11:18:41.047 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Http.xnexopyo77.wasm - null null -2026-01-16 11:18:41.048 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.048 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.048 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.048 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.048 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.048 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.048 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.048 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.048 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.048 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.048 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.048 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.048 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.048 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.048 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.048 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.048 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.048 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.049 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.049 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.049 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.065 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Http.xnexopyo77.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5zhsh7htpt-{0}-xnexopyo77-xnexopyo77.gz' -2026-01-16 11:18:41.065 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.065 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Http.xnexopyo77.wasm - 200 286046 application/wasm 18.0282ms -2026-01-16 11:18:41.069 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.HttpListener.qea3lr0ivv.wasm - null null -2026-01-16 11:18:41.070 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.070 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.070 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.070 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.070 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.070 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.070 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.070 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.070 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.070 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.070 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.070 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.070 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.071 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.071 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.071 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.071 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.071 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.071 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.071 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.071 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.081 +03:00 [INF] Sending file. Request path: '_framework/System.Net.HttpListener.qea3lr0ivv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xstee2l2o3-{0}-qea3lr0ivv-qea3lr0ivv.gz' -2026-01-16 11:18:41.081 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.082 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.HttpListener.qea3lr0ivv.wasm - 200 45883 application/wasm 12.4028ms -2026-01-16 11:18:41.085 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Mail.kabvwy0nwb.wasm - null null -2026-01-16 11:18:41.085 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.086 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.086 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.086 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.086 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.086 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.086 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.086 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.086 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.086 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.086 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.086 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.086 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.086 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.086 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.086 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.086 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.086 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.086 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.086 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.086 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.099 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Mail.kabvwy0nwb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\brj66r630l-{0}-kabvwy0nwb-kabvwy0nwb.gz' -2026-01-16 11:18:41.099 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.100 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Mail.kabvwy0nwb.wasm - 200 95040 application/wasm 14.963ms -2026-01-16 11:18:41.103 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.NameResolution.r77xqyi48e.wasm - null null -2026-01-16 11:18:41.104 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.104 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.104 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.104 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.104 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.105 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.105 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.105 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.105 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.105 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.105 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.105 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.105 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.105 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.115 +03:00 [INF] Sending file. Request path: '_framework/System.Net.NameResolution.r77xqyi48e.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0muzq1nn1l-{0}-r77xqyi48e-r77xqyi48e.gz' -2026-01-16 11:18:41.115 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.115 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.NameResolution.r77xqyi48e.wasm - 200 14134 application/wasm 11.9375ms -2026-01-16 11:18:41.119 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.NetworkInformation.4y8ae4b47g.wasm - null null -2026-01-16 11:18:41.120 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.120 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.120 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.120 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.120 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.120 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.120 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.120 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.120 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.120 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.120 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.120 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.120 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.121 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.121 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.121 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.121 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.121 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.121 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.121 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.121 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.134 +03:00 [INF] Sending file. Request path: '_framework/System.Net.NetworkInformation.4y8ae4b47g.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\t7lf75pu6w-{0}-4y8ae4b47g-4y8ae4b47g.gz' -2026-01-16 11:18:41.135 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.135 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.NetworkInformation.4y8ae4b47g.wasm - 200 32054 application/wasm 15.7015ms -2026-01-16 11:18:41.138 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Ping.fb39s7nqmu.wasm - null null -2026-01-16 11:18:41.139 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.139 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.140 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.140 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.140 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.140 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.140 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.140 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.140 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.140 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.140 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.140 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.140 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.140 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.140 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.140 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.140 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.140 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.140 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.140 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.140 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.152 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Ping.fb39s7nqmu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1qhthfilvz-{0}-fb39s7nqmu-fb39s7nqmu.gz' -2026-01-16 11:18:41.152 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.152 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Ping.fb39s7nqmu.wasm - 200 17718 application/wasm 13.8694ms -2026-01-16 11:18:41.156 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Primitives.2oo4pve6tx.wasm - null null -2026-01-16 11:18:41.157 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.157 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.157 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.157 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.157 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.157 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.157 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.157 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.157 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.157 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.157 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.157 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.157 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.158 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.158 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.158 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.158 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.158 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.158 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.158 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.158 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.172 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Primitives.2oo4pve6tx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xxez8u380e-{0}-2oo4pve6tx-2oo4pve6tx.gz' -2026-01-16 11:18:41.172 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.172 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Primitives.2oo4pve6tx.wasm - 200 97088 application/wasm 16.1958ms -2026-01-16 11:18:41.176 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Quic.wedsu6m1ok.wasm - null null -2026-01-16 11:18:41.176 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.176 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.176 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.176 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.176 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.177 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.177 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.177 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.177 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.177 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.177 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.177 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.177 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.177 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.177 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.177 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.177 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.177 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.177 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.177 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.177 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.190 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Quic.wedsu6m1ok.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mavmo5ad6x-{0}-wedsu6m1ok-wedsu6m1ok.gz' -2026-01-16 11:18:41.190 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.190 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Quic.wedsu6m1ok.wasm - 200 28982 application/wasm 14.8962ms -2026-01-16 11:18:41.194 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Requests.dd8um1v0v4.wasm - null null -2026-01-16 11:18:41.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.194 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.195 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.195 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.195 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.195 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.195 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.195 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.195 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.195 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.195 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.195 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.195 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.195 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.208 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Requests.dd8um1v0v4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\g8osyueis5-{0}-dd8um1v0v4-dd8um1v0v4.gz' -2026-01-16 11:18:41.208 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.208 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Requests.dd8um1v0v4.wasm - 200 55611 application/wasm 14.591ms -2026-01-16 11:18:41.213 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Security.j01yc12epg.wasm - null null -2026-01-16 11:18:41.214 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.214 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.214 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.214 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.214 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.214 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.214 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.215 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.215 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.215 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.215 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.215 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.215 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.215 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.215 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.215 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.215 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.215 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.215 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.215 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.215 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.229 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Security.j01yc12epg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vd1ks16ws6-{0}-j01yc12epg-j01yc12epg.gz' -2026-01-16 11:18:41.229 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.230 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Security.j01yc12epg.wasm - 200 104261 application/wasm 16.197ms -2026-01-16 11:18:41.233 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.ServerSentEvents.n20pwunwwa.wasm - null null -2026-01-16 11:18:41.234 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.234 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.234 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.234 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.234 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.234 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.234 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.234 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.234 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.234 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.234 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.234 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.234 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.234 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.234 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.234 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.234 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.234 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.234 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.234 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.235 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.248 +03:00 [INF] Sending file. Request path: '_framework/System.Net.ServerSentEvents.n20pwunwwa.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rp6twqxirl-{0}-n20pwunwwa-n20pwunwwa.gz' -2026-01-16 11:18:41.249 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.249 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.ServerSentEvents.n20pwunwwa.wasm - 200 30518 application/wasm 15.826ms -2026-01-16 11:18:41.254 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.ServicePoint.6qgdmrxct2.wasm - null null -2026-01-16 11:18:41.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.255 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.255 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.255 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.255 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.255 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.256 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.256 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.256 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.256 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.256 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.256 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.256 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.256 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.270 +03:00 [INF] Sending file. Request path: '_framework/System.Net.ServicePoint.6qgdmrxct2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v7t97n1u19-{0}-6qgdmrxct2-6qgdmrxct2.gz' -2026-01-16 11:18:41.270 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.271 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.ServicePoint.6qgdmrxct2.wasm - 200 4918 application/wasm 16.8887ms -2026-01-16 11:18:41.276 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Sockets.0jj55xk9rv.wasm - null null -2026-01-16 11:18:41.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.277 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.277 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.277 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.277 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.277 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.278 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.278 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.278 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.278 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.278 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.278 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.278 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.278 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.291 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Sockets.0jj55xk9rv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\i4k589b7bn-{0}-0jj55xk9rv-0jj55xk9rv.gz' -2026-01-16 11:18:41.291 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.291 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Sockets.0jj55xk9rv.wasm - 200 64315 application/wasm 14.8621ms -2026-01-16 11:18:41.295 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebClient.3wc74qco9q.wasm - null null -2026-01-16 11:18:41.295 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.296 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.296 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.296 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.296 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.296 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.296 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.296 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.296 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.296 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.296 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.296 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.296 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.297 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.311 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebClient.3wc74qco9q.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9mnjsb8x3q-{0}-3wc74qco9q-3wc74qco9q.gz' -2026-01-16 11:18:41.311 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.311 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebClient.3wc74qco9q.wasm - 200 45883 application/wasm 16.3126ms -2026-01-16 11:18:41.315 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebHeaderCollection.4ybcvi6krs.wasm - null null -2026-01-16 11:18:41.315 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.316 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.316 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.316 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.316 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.316 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.316 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.316 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.316 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.316 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.316 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.316 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.316 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.316 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.316 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.316 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.316 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.316 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.316 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.316 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.316 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.328 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebHeaderCollection.4ybcvi6krs.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\apet8won7e-{0}-4ybcvi6krs-4ybcvi6krs.gz' -2026-01-16 11:18:41.328 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.329 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebHeaderCollection.4ybcvi6krs.wasm - 200 22838 application/wasm 13.696ms -2026-01-16 11:18:41.333 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebProxy.zxvs9bwlaq.wasm - null null -2026-01-16 11:18:41.333 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.334 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.334 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.334 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.334 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.334 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.334 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.334 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.334 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.334 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.334 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.334 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.334 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.335 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.346 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebProxy.zxvs9bwlaq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n8e7iy8bgt-{0}-zxvs9bwlaq-zxvs9bwlaq.gz' -2026-01-16 11:18:41.346 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.347 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebProxy.zxvs9bwlaq.wasm - 200 11574 application/wasm 13.8142ms -2026-01-16 11:18:41.351 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebSockets.Client.n57nf3z1br.wasm - null null -2026-01-16 11:18:41.352 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.352 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.352 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.352 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.352 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.353 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.353 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.353 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.353 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.353 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.353 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.353 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.353 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.353 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.353 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.353 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.353 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.353 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.353 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.353 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.353 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.369 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebSockets.Client.n57nf3z1br.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rnseevpeje-{0}-n57nf3z1br-n57nf3z1br.gz' -2026-01-16 11:18:41.369 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.369 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebSockets.Client.n57nf3z1br.wasm - 200 42299 application/wasm 18.2795ms -2026-01-16 11:18:41.375 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebSockets.i3475fl55i.wasm - null null -2026-01-16 11:18:41.375 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.375 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.376 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.376 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.376 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.376 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.376 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.376 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.376 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.376 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.376 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.376 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.376 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.376 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.377 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.377 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.377 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.377 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.377 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.377 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.377 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.392 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebSockets.i3475fl55i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fixxlx5x95-{0}-i3475fl55i-i3475fl55i.gz' -2026-01-16 11:18:41.392 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.392 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebSockets.i3475fl55i.wasm - 200 98629 application/wasm 17.3124ms -2026-01-16 11:18:41.395 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.2jb9y9tls4.wasm - null null -2026-01-16 11:18:41.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.396 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.396 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.396 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.396 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.397 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.397 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.397 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.397 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.397 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.397 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.397 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.397 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.397 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.397 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.397 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.397 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.397 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.397 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.397 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.397 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.413 +03:00 [INF] Sending file. Request path: '_framework/System.Net.2jb9y9tls4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sdhyils1a8-{0}-2jb9y9tls4-2jb9y9tls4.gz' -2026-01-16 11:18:41.413 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.413 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.2jb9y9tls4.wasm - 200 6966 application/wasm 17.5083ms -2026-01-16 11:18:41.416 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Numerics.Vectors.tjoypuu8wa.wasm - null null -2026-01-16 11:18:41.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.417 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.417 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.417 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.417 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.417 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.417 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.417 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.417 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.417 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.417 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.417 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.417 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.418 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.443 +03:00 [INF] Sending file. Request path: '_framework/System.Numerics.Vectors.tjoypuu8wa.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\52qfucpyv5-{0}-tjoypuu8wa-tjoypuu8wa.gz' -2026-01-16 11:18:41.443 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.443 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Numerics.Vectors.tjoypuu8wa.wasm - 200 5430 application/wasm 27.1587ms -2026-01-16 11:18:41.447 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Numerics.zb6snwiiqo.wasm - null null -2026-01-16 11:18:41.447 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.447 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.448 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.448 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.448 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.448 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.448 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.448 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.448 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.448 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.448 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.448 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.448 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.448 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.463 +03:00 [INF] Sending file. Request path: '_framework/System.Numerics.zb6snwiiqo.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3mhjbwzot4-{0}-zb6snwiiqo-zb6snwiiqo.gz' -2026-01-16 11:18:41.463 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.463 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Numerics.zb6snwiiqo.wasm - 200 4918 application/wasm 16.7577ms -2026-01-16 11:18:41.466 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ObjectModel.qra8ipv6cl.wasm - null null -2026-01-16 11:18:41.467 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.467 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.467 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.467 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.467 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.468 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.468 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.468 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.468 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.468 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.468 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.468 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.468 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.469 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.483 +03:00 [INF] Sending file. Request path: '_framework/System.ObjectModel.qra8ipv6cl.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\69h7jimh8b-{0}-qra8ipv6cl-qra8ipv6cl.gz' -2026-01-16 11:18:41.483 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.483 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ObjectModel.qra8ipv6cl.wasm - 200 31030 application/wasm 16.633ms -2026-01-16 11:18:41.487 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.DataContractSerialization.cdaesawoob.wasm - null null -2026-01-16 11:18:41.488 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.488 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.488 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.488 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.488 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.488 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.488 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.488 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.488 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.488 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.488 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.488 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.488 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.489 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.489 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.489 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.489 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.489 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.489 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.489 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.489 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.508 +03:00 [INF] Sending file. Request path: '_framework/System.Private.DataContractSerialization.cdaesawoob.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xukodscfdt-{0}-cdaesawoob-cdaesawoob.gz' -2026-01-16 11:18:41.508 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.508 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.DataContractSerialization.cdaesawoob.wasm - 200 849331 application/wasm 21.2529ms -2026-01-16 11:18:41.514 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.Uri.d7c7uu4en8.wasm - null null -2026-01-16 11:18:41.515 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.515 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.515 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.515 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.515 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.515 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.515 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.515 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.515 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.515 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.515 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.515 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.515 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.516 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.516 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.516 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.516 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.516 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.516 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.516 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.516 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.532 +03:00 [INF] Sending file. Request path: '_framework/System.Private.Uri.d7c7uu4en8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ru8d7hu3hx-{0}-d7c7uu4en8-d7c7uu4en8.gz' -2026-01-16 11:18:41.532 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.532 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.Uri.d7c7uu4en8.wasm - 200 95040 application/wasm 18.0685ms -2026-01-16 11:18:41.536 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.Xml.Linq.yklun9npsh.wasm - null null -2026-01-16 11:18:41.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.537 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.537 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.537 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.537 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.537 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.537 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.538 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.538 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.538 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.538 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.538 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.538 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.538 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.551 +03:00 [INF] Sending file. Request path: '_framework/System.Private.Xml.Linq.yklun9npsh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wby45u92ah-{0}-yklun9npsh-yklun9npsh.gz' -2026-01-16 11:18:41.551 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.551 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.Xml.Linq.yklun9npsh.wasm - 200 143690 application/wasm 15.3999ms -2026-01-16 11:18:41.555 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.Xml.8fl2owujec.wasm - null null -2026-01-16 11:18:41.556 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.556 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.556 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.556 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.556 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.557 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.557 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.557 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.557 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.557 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.557 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.557 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.557 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.557 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.557 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.557 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.557 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.557 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.557 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.557 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.557 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.588 +03:00 [INF] Sending file. Request path: '_framework/System.Private.Xml.8fl2owujec.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4tw2sl7qh6-{0}-8fl2owujec-8fl2owujec.gz' -2026-01-16 11:18:41.588 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.588 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.Xml.8fl2owujec.wasm - 200 3096336 application/wasm 32.7719ms -2026-01-16 11:18:41.604 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.DispatchProxy.dur3huf884.wasm - null null -2026-01-16 11:18:41.605 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.605 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.605 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.605 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.605 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.605 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.605 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.605 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.605 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.605 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.605 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.605 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.605 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.606 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.606 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.606 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.606 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.606 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.606 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.606 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.606 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.621 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.DispatchProxy.dur3huf884.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1vtfgkdvnc-{0}-dur3huf884-dur3huf884.gz' -2026-01-16 11:18:41.621 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.621 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.DispatchProxy.dur3huf884.wasm - 200 27958 application/wasm 16.9401ms -2026-01-16 11:18:41.626 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.ILGeneration.pei97jn90w.wasm - null null -2026-01-16 11:18:41.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.627 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.627 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.627 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.627 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.627 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.627 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.627 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.628 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.628 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.628 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.628 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.628 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.628 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.643 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Emit.ILGeneration.pei97jn90w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v1gyf0d1ub-{0}-pei97jn90w-pei97jn90w.gz' -2026-01-16 11:18:41.643 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.643 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.ILGeneration.pei97jn90w.wasm - 200 5430 application/wasm 17.3432ms -2026-01-16 11:18:41.647 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.Lightweight.ywsyqlj9p1.wasm - null null -2026-01-16 11:18:41.648 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.648 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.648 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.648 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.648 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.648 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.648 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.648 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.648 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.648 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.648 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.648 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.648 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.649 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.649 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.649 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.649 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.649 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.649 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.649 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.649 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.662 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Emit.Lightweight.ywsyqlj9p1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fhnd5yeiv1-{0}-ywsyqlj9p1-ywsyqlj9p1.gz' -2026-01-16 11:18:41.662 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.662 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.Lightweight.ywsyqlj9p1.wasm - 200 5430 application/wasm 15.0166ms -2026-01-16 11:18:41.666 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.tumhikm19o.wasm - null null -2026-01-16 11:18:41.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.667 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.667 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.667 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.667 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.667 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.668 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.668 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.668 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.668 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.668 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.668 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.668 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.668 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.683 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Emit.tumhikm19o.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vgtdlzmyp9-{0}-tumhikm19o-tumhikm19o.gz' -2026-01-16 11:18:41.683 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.683 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.tumhikm19o.wasm - 200 122693 application/wasm 16.5857ms -2026-01-16 11:18:41.697 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Extensions.z98cfn5ig8.wasm - null null -2026-01-16 11:18:41.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.697 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.697 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.697 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.697 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.698 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.698 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.698 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.698 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.698 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.698 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.698 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.698 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.698 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.698 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.698 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.698 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.698 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.698 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.698 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.698 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.710 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Extensions.z98cfn5ig8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5188hd084t-{0}-z98cfn5ig8-z98cfn5ig8.gz' -2026-01-16 11:18:41.710 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.710 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Extensions.z98cfn5ig8.wasm - 200 4918 application/wasm 13.8606ms -2026-01-16 11:18:41.714 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Metadata.j4t1n1ywxj.wasm - null null -2026-01-16 11:18:41.714 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.714 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.714 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.715 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.715 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.715 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.715 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.715 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.715 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.715 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.715 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.715 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.715 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.715 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.715 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.715 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.715 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.715 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.715 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.715 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.715 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.731 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Metadata.j4t1n1ywxj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ih2v39fwix-{0}-j4t1n1ywxj-j4t1n1ywxj.gz' -2026-01-16 11:18:41.731 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.732 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Metadata.j4t1n1ywxj.wasm - 200 493441 application/wasm 18.1047ms -2026-01-16 11:18:41.737 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Primitives.p4ntci6hk7.wasm - null null -2026-01-16 11:18:41.738 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.738 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.738 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.738 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.738 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.738 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.738 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.738 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.738 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.738 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.738 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.738 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.738 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.739 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.739 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.739 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.739 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.739 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.739 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.739 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.739 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.753 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Primitives.p4ntci6hk7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\z9kjf4ns5o-{0}-p4ntci6hk7-p4ntci6hk7.gz' -2026-01-16 11:18:41.753 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.753 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Primitives.p4ntci6hk7.wasm - 200 5430 application/wasm 16.6851ms -2026-01-16 11:18:41.757 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.TypeExtensions.puzzlnwex2.wasm - null null -2026-01-16 11:18:41.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.757 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.758 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.758 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.758 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.758 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.758 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.758 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.758 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.758 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.758 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.758 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.758 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.758 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.758 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.758 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.758 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.758 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.758 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.758 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.758 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.772 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.TypeExtensions.puzzlnwex2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7ukk8euu3c-{0}-puzzlnwex2-puzzlnwex2.gz' -2026-01-16 11:18:41.773 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.773 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.TypeExtensions.puzzlnwex2.wasm - 200 14134 application/wasm 16.0103ms -2026-01-16 11:18:41.777 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.lt32pnnkzd.wasm - null null -2026-01-16 11:18:41.778 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.778 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.778 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.778 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.778 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.778 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.778 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.778 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.778 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.778 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.778 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.778 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.778 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.778 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.778 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.778 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.778 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.778 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.778 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.778 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.779 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.792 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.lt32pnnkzd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5zfqu7bsm3-{0}-lt32pnnkzd-lt32pnnkzd.gz' -2026-01-16 11:18:41.792 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.792 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.lt32pnnkzd.wasm - 200 5942 application/wasm 15.4948ms -2026-01-16 11:18:41.795 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Resources.Reader.c8jfsntxbn.wasm - null null -2026-01-16 11:18:41.796 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.796 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.796 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.796 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.796 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.796 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.796 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.796 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.796 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.796 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.796 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.796 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.796 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.797 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.797 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.797 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.797 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.797 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.797 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.797 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.797 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.811 +03:00 [INF] Sending file. Request path: '_framework/System.Resources.Reader.c8jfsntxbn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5fcb3hbz6f-{0}-c8jfsntxbn-c8jfsntxbn.gz' -2026-01-16 11:18:41.811 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.811 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Resources.Reader.c8jfsntxbn.wasm - 200 4918 application/wasm 16.0221ms -2026-01-16 11:18:41.815 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Resources.ResourceManager.q30psrnl7u.wasm - null null -2026-01-16 11:18:41.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.816 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.816 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.816 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.816 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.817 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.817 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.817 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.817 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.817 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.817 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.817 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.817 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.817 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.833 +03:00 [INF] Sending file. Request path: '_framework/System.Resources.ResourceManager.q30psrnl7u.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\k3xfrex2pp-{0}-q30psrnl7u-q30psrnl7u.gz' -2026-01-16 11:18:41.833 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.833 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Resources.ResourceManager.q30psrnl7u.wasm - 200 5430 application/wasm 17.6512ms -2026-01-16 11:18:41.836 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Resources.Writer.wvyn0j1lcg.wasm - null null -2026-01-16 11:18:41.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.837 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.838 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.838 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.838 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.838 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.838 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.838 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.838 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.838 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.850 +03:00 [INF] Sending file. Request path: '_framework/System.Resources.Writer.wvyn0j1lcg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wsg9isam35-{0}-wvyn0j1lcg-wvyn0j1lcg.gz' -2026-01-16 11:18:41.850 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.851 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Resources.Writer.wvyn0j1lcg.wasm - 200 16694 application/wasm 14.5728ms -2026-01-16 11:18:41.856 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.CompilerServices.Unsafe.djrvtrz9tb.wasm - null null -2026-01-16 11:18:41.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.857 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.857 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.857 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.857 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.857 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.857 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.857 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.857 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.857 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.857 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.857 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.857 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.857 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.868 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.CompilerServices.Unsafe.djrvtrz9tb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\smsvmq9glf-{0}-djrvtrz9tb-djrvtrz9tb.gz' -2026-01-16 11:18:41.868 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.868 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.CompilerServices.Unsafe.djrvtrz9tb.wasm - 200 4918 application/wasm 12.4024ms -2026-01-16 11:18:41.872 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.CompilerServices.VisualC.luekj4crl6.wasm - null null -2026-01-16 11:18:41.873 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.873 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.873 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.873 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.873 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.873 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.873 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.873 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.873 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.873 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.873 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.873 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.873 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.874 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.874 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.874 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.874 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.874 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.874 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.874 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.874 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.888 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.CompilerServices.VisualC.luekj4crl6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\w5clnjen17-{0}-luekj4crl6-luekj4crl6.gz' -2026-01-16 11:18:41.888 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.888 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.CompilerServices.VisualC.luekj4crl6.wasm - 200 6966 application/wasm 16.1844ms -2026-01-16 11:18:41.892 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Extensions.d5mymlulmr.wasm - null null -2026-01-16 11:18:41.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.892 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.892 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.892 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.892 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.893 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.893 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.893 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.893 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.893 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.893 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.893 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.893 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.893 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.893 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.893 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.893 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.893 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.893 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.904 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Extensions.d5mymlulmr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n6jkmkc1vw-{0}-d5mymlulmr-d5mymlulmr.gz' -2026-01-16 11:18:41.904 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.905 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Extensions.d5mymlulmr.wasm - 200 7478 application/wasm 12.9974ms -2026-01-16 11:18:41.908 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Handles.ih3cmfwxzd.wasm - null null -2026-01-16 11:18:41.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.909 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.909 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.909 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.909 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.909 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.910 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.910 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.910 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.910 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.910 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.910 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.910 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.910 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.924 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Handles.ih3cmfwxzd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2b53wjzpk1-{0}-ih3cmfwxzd-ih3cmfwxzd.gz' -2026-01-16 11:18:41.924 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.924 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Handles.ih3cmfwxzd.wasm - 200 5430 application/wasm 15.5618ms -2026-01-16 11:18:41.926 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.RuntimeInformation.nvwt5l6jkw.wasm - null null -2026-01-16 11:18:41.927 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.927 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.927 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.927 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.927 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.928 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.928 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.928 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.928 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.928 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.928 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.928 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.928 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.928 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.928 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.928 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.928 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.928 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.928 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.928 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.928 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.941 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.InteropServices.RuntimeInformation.nvwt5l6jkw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5rxlvv130r-{0}-nvwt5l6jkw-nvwt5l6jkw.gz' -2026-01-16 11:18:41.941 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.941 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.RuntimeInformation.nvwt5l6jkw.wasm - 200 4918 application/wasm 14.9181ms -2026-01-16 11:18:41.945 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.0us88a4qml.wasm - null null -2026-01-16 11:18:41.946 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.946 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.946 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.946 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.946 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.946 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.946 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.946 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.946 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.946 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.946 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.946 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.946 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.946 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.946 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.946 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.946 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.946 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.946 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.946 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.947 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.960 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.InteropServices.0us88a4qml.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\t1e5pdefro-{0}-0us88a4qml-0us88a4qml.gz' -2026-01-16 11:18:41.960 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.960 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.0us88a4qml.wasm - 200 54587 application/wasm 15.3481ms -2026-01-16 11:18:41.963 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Intrinsics.bd7qf7pr2d.wasm - null null -2026-01-16 11:18:41.964 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.964 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.964 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.964 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.964 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.964 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.965 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.965 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.965 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.965 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.965 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.965 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.965 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.965 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.965 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.978 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Intrinsics.bd7qf7pr2d.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\q8hyt22w7t-{0}-bd7qf7pr2d-bd7qf7pr2d.gz' -2026-01-16 11:18:41.978 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.978 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Intrinsics.bd7qf7pr2d.wasm - 200 6966 application/wasm 14.3154ms -2026-01-16 11:18:41.980 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Loader.opo019ewpt.wasm - null null -2026-01-16 11:18:41.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.981 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:41.981 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:41.981 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:41.981 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.982 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:41.982 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:41.982 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:41.982 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:41.982 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:41.982 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.982 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:41.982 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:41.982 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:41.982 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:41.982 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:41.982 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:41.982 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:41.982 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:41.982 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:41.982 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.998 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Loader.opo019ewpt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lulkrkawwl-{0}-opo019ewpt-opo019ewpt.gz' -2026-01-16 11:18:41.998 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:41.999 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Loader.opo019ewpt.wasm - 200 5430 application/wasm 18.051ms -2026-01-16 11:18:42.003 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Numerics.opgppvbdi6.wasm - null null -2026-01-16 11:18:42.004 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.004 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.004 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.004 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.004 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.004 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.004 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.004 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.004 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.004 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.004 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.004 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.005 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.005 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.005 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.005 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.005 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.005 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.005 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.005 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.005 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.019 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Numerics.opgppvbdi6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\15lzitxs0t-{0}-opgppvbdi6-opgppvbdi6.gz' -2026-01-16 11:18:42.019 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.019 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Numerics.opgppvbdi6.wasm - 200 134986 application/wasm 16.1204ms -2026-01-16 11:18:42.024 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Formatters.seonqd55ks.wasm - null null -2026-01-16 11:18:42.024 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.025 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.025 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.025 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.025 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.025 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.025 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.025 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.025 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.025 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.025 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.025 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.025 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.025 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.025 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.025 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.025 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.025 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.025 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.025 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.026 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.040 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.Formatters.seonqd55ks.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n0v9yl0jh6-{0}-seonqd55ks-seonqd55ks.gz' -2026-01-16 11:18:42.040 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.040 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Formatters.seonqd55ks.wasm - 200 55611 application/wasm 16.6843ms -2026-01-16 11:18:42.044 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Json.zn0mp7kdmp.wasm - null null -2026-01-16 11:18:42.045 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.045 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.045 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.045 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.045 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.045 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.045 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.045 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.045 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.045 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.045 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.045 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.045 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.045 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.045 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.045 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.045 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.045 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.045 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.045 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.046 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.059 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.Json.zn0mp7kdmp.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wh4w9dsljz-{0}-zn0mp7kdmp-zn0mp7kdmp.gz' -2026-01-16 11:18:42.059 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.060 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Json.zn0mp7kdmp.wasm - 200 5430 application/wasm 15.6915ms -2026-01-16 11:18:42.063 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Primitives.yueinvlj2j.wasm - null null -2026-01-16 11:18:42.063 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.064 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.064 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.064 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.064 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.064 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.064 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.064 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.064 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.064 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.064 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.064 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.064 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.064 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.064 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.064 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.064 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.064 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.064 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.064 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.064 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.079 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.Primitives.yueinvlj2j.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n1gdasegta-{0}-yueinvlj2j-yueinvlj2j.gz' -2026-01-16 11:18:42.079 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.079 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Primitives.yueinvlj2j.wasm - 200 13110 application/wasm 16.271ms -2026-01-16 11:18:42.090 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Xml.v8gymdawqg.wasm - null null -2026-01-16 11:18:42.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.091 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.091 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.091 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.091 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.092 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.092 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.092 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.092 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.092 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.092 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.092 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.092 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.092 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.092 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.092 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.092 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.092 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.092 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.092 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.092 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.107 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.Xml.v8gymdawqg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j0zo8hxl7f-{0}-v8gymdawqg-v8gymdawqg.gz' -2026-01-16 11:18:42.107 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.107 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Xml.v8gymdawqg.wasm - 200 6454 application/wasm 16.8185ms -2026-01-16 11:18:42.110 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.gs7sg0u955.wasm - null null -2026-01-16 11:18:42.111 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.111 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.111 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.111 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.111 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.111 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.111 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.111 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.111 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.111 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.111 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.111 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.111 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.112 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.112 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.112 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.112 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.112 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.112 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.112 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.112 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.127 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.gs7sg0u955.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c9urnolypd-{0}-gs7sg0u955-gs7sg0u955.gz' -2026-01-16 11:18:42.127 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.127 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.gs7sg0u955.wasm - 200 6966 application/wasm 16.7978ms -2026-01-16 11:18:42.130 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.6bp69qbwkj.wasm - null null -2026-01-16 11:18:42.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.130 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.131 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.131 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.131 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.131 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.131 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.131 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.131 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.131 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.131 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.131 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.131 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.131 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.145 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.6bp69qbwkj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\35jd1dce24-{0}-6bp69qbwkj-6bp69qbwkj.gz' -2026-01-16 11:18:42.145 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.145 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.6bp69qbwkj.wasm - 200 34619 application/wasm 15.5657ms -2026-01-16 11:18:42.149 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.AccessControl.6rjkcrpkiw.wasm - null null -2026-01-16 11:18:42.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.149 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.149 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.149 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.149 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.150 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.150 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.150 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.150 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.150 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.150 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.150 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.150 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.150 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.164 +03:00 [INF] Sending file. Request path: '_framework/System.Security.AccessControl.6rjkcrpkiw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ad9pnuyu1n-{0}-6rjkcrpkiw-6rjkcrpkiw.gz' -2026-01-16 11:18:42.164 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.165 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.AccessControl.6rjkcrpkiw.wasm - 200 47931 application/wasm 15.9508ms -2026-01-16 11:18:42.168 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Claims.hk3ae85l96.wasm - null null -2026-01-16 11:18:42.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.169 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.169 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.169 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.169 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.169 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.170 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.170 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.170 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.170 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.170 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.170 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.170 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.170 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.184 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Claims.hk3ae85l96.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vbfh1norfg-{0}-hk3ae85l96-hk3ae85l96.gz' -2026-01-16 11:18:42.184 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.184 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Claims.hk3ae85l96.wasm - 200 44859 application/wasm 16.049ms -2026-01-16 11:18:42.188 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Algorithms.whyyu092ah.wasm - null null -2026-01-16 11:18:42.189 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.189 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.189 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.189 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.189 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.189 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.189 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.189 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.189 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.189 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.190 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.190 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.190 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.190 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.190 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.190 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.190 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.190 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.190 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.203 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Algorithms.whyyu092ah.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lts4eaytip-{0}-whyyu092ah-whyyu092ah.gz' -2026-01-16 11:18:42.203 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.204 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Algorithms.whyyu092ah.wasm - 200 6966 application/wasm 15.2895ms -2026-01-16 11:18:42.207 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Cng.m6se2pcpu2.wasm - null null -2026-01-16 11:18:42.209 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.209 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.209 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.209 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.209 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.209 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.209 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.209 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.209 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.209 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.209 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.209 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.209 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.209 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.209 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.209 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.209 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.209 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.209 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.209 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.210 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.223 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Cng.m6se2pcpu2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fe4hdxl6xd-{0}-m6se2pcpu2-m6se2pcpu2.gz' -2026-01-16 11:18:42.223 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.224 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Cng.m6se2pcpu2.wasm - 200 5942 application/wasm 16.3533ms -2026-01-16 11:18:42.228 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Csp.hhoaoktf3s.wasm - null null -2026-01-16 11:18:42.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.229 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.229 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.229 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.229 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.229 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.229 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.229 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.229 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.229 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.229 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.229 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.229 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.229 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.244 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Csp.hhoaoktf3s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\e6c5growx5-{0}-hhoaoktf3s-hhoaoktf3s.gz' -2026-01-16 11:18:42.244 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.244 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Csp.hhoaoktf3s.wasm - 200 5942 application/wasm 16.0281ms -2026-01-16 11:18:42.247 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Encoding.52vboi33gw.wasm - null null -2026-01-16 11:18:42.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.248 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.248 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.248 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.248 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.248 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.248 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.248 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.248 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.248 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.248 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.248 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.248 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.249 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.263 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Encoding.52vboi33gw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9nnkgpt0mz-{0}-52vboi33gw-52vboi33gw.gz' -2026-01-16 11:18:42.263 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.263 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Encoding.52vboi33gw.wasm - 200 5430 application/wasm 15.8652ms -2026-01-16 11:18:42.267 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.OpenSsl.ml0tyz68i8.wasm - null null -2026-01-16 11:18:42.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.268 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.268 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.268 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.268 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.268 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.269 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.269 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.269 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.269 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.269 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.269 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.269 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.269 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.282 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.OpenSsl.ml0tyz68i8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ggd18ngby9-{0}-ml0tyz68i8-ml0tyz68i8.gz' -2026-01-16 11:18:42.282 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.282 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.OpenSsl.ml0tyz68i8.wasm - 200 5430 application/wasm 15.1721ms -2026-01-16 11:18:42.285 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Primitives.1dlu2dh7y8.wasm - null null -2026-01-16 11:18:42.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.286 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.286 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.286 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.286 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.286 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.287 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.287 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.287 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.287 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.287 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.287 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.287 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.287 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.301 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Primitives.1dlu2dh7y8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ibvt59z0m8-{0}-1dlu2dh7y8-1dlu2dh7y8.gz' -2026-01-16 11:18:42.301 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.301 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Primitives.1dlu2dh7y8.wasm - 200 5430 application/wasm 15.6633ms -2026-01-16 11:18:42.305 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.X509Certificates.6uh0qispd4.wasm - null null -2026-01-16 11:18:42.306 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.306 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.306 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.306 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.306 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.306 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.306 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.306 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.306 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.306 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.306 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.306 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.306 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.307 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.307 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.307 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.307 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.307 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.307 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.307 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.307 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.320 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.X509Certificates.6uh0qispd4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kv01n2x7di-{0}-6uh0qispd4-6uh0qispd4.gz' -2026-01-16 11:18:42.320 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.320 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.X509Certificates.6uh0qispd4.wasm - 200 6454 application/wasm 14.781ms -2026-01-16 11:18:42.323 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.mbts90zzn6.wasm - null null -2026-01-16 11:18:42.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.324 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.324 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.324 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.324 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.325 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.325 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.325 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.325 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.325 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.325 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.325 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.325 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.325 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.325 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.325 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.325 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.325 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.325 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.325 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.343 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.mbts90zzn6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\najz3idkx9-{0}-mbts90zzn6-mbts90zzn6.gz' -2026-01-16 11:18:42.343 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.343 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.mbts90zzn6.wasm - 200 642453 application/wasm 19.8974ms -2026-01-16 11:18:42.347 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Principal.Windows.rp57epmxji.wasm - null null -2026-01-16 11:18:42.348 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.348 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.348 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.348 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.348 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.348 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.348 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.348 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.348 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.348 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.348 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.348 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.348 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.348 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.348 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.348 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.348 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.349 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.349 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.349 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.349 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.362 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Principal.Windows.rp57epmxji.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6c4gn33xif-{0}-rp57epmxji-rp57epmxji.gz' -2026-01-16 11:18:42.362 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.362 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Principal.Windows.rp57epmxji.wasm - 200 27446 application/wasm 14.7311ms -2026-01-16 11:18:42.366 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Principal.0lplkfn42e.wasm - null null -2026-01-16 11:18:42.367 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.367 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.367 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.367 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.367 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.367 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.367 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.367 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.367 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.367 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.367 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.367 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.367 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.367 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.367 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.367 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.367 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.367 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.367 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.367 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.367 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.382 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Principal.0lplkfn42e.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bapixjfy1p-{0}-0lplkfn42e-0lplkfn42e.gz' -2026-01-16 11:18:42.382 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.382 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Principal.0lplkfn42e.wasm - 200 4918 application/wasm 16.0924ms -2026-01-16 11:18:42.385 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.SecureString.dhwpww24h2.wasm - null null -2026-01-16 11:18:42.386 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.386 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.386 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.386 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.386 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.386 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.386 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.386 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.386 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.386 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.386 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.386 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.386 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.387 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.387 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.387 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.387 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.387 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.387 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.387 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.387 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.401 +03:00 [INF] Sending file. Request path: '_framework/System.Security.SecureString.dhwpww24h2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\z7kpj97i3q-{0}-dhwpww24h2-dhwpww24h2.gz' -2026-01-16 11:18:42.401 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.401 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.SecureString.dhwpww24h2.wasm - 200 5430 application/wasm 16.0662ms -2026-01-16 11:18:42.405 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.l9hsxb0sdk.wasm - null null -2026-01-16 11:18:42.406 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.406 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.406 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.406 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.406 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.406 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.406 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.406 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.406 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.406 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.406 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.406 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.406 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.407 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.407 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.407 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.407 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.407 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.407 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.407 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.407 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.420 +03:00 [INF] Sending file. Request path: '_framework/System.Security.l9hsxb0sdk.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4w9pau8lca-{0}-l9hsxb0sdk-l9hsxb0sdk.gz' -2026-01-16 11:18:42.420 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.420 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.l9hsxb0sdk.wasm - 200 7990 application/wasm 15.4563ms -2026-01-16 11:18:42.424 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ServiceModel.Web.zcvkay2idv.wasm - null null -2026-01-16 11:18:42.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.425 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.425 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.425 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.425 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.425 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.425 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.425 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.425 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.425 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.425 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.425 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.425 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.438 +03:00 [INF] Sending file. Request path: '_framework/System.ServiceModel.Web.zcvkay2idv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wy542848av-{0}-zcvkay2idv-zcvkay2idv.gz' -2026-01-16 11:18:42.438 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.438 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ServiceModel.Web.zcvkay2idv.wasm - 200 6454 application/wasm 14.4488ms -2026-01-16 11:18:42.442 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ServiceProcess.x10kdcthsy.wasm - null null -2026-01-16 11:18:42.443 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.443 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.443 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.443 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.443 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.443 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.443 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.443 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.443 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.443 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.443 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.443 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.443 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.444 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.444 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.444 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.444 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.444 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.444 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.444 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.444 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.458 +03:00 [INF] Sending file. Request path: '_framework/System.ServiceProcess.x10kdcthsy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2yoiew09ss-{0}-x10kdcthsy-x10kdcthsy.gz' -2026-01-16 11:18:42.458 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.458 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ServiceProcess.x10kdcthsy.wasm - 200 5430 application/wasm 16.3815ms -2026-01-16 11:18:42.462 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.CodePages.36p8aommvy.wasm - null null -2026-01-16 11:18:42.463 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.463 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.463 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.463 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.463 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.463 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.463 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.463 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.463 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.463 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.463 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.463 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.463 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.464 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.464 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.464 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.464 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.464 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.464 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.464 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.464 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.482 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Encoding.CodePages.36p8aommvy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lrsfp7sbdw-{0}-36p8aommvy-36p8aommvy.gz' -2026-01-16 11:18:42.482 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.482 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.CodePages.36p8aommvy.wasm - 200 732580 application/wasm 19.511ms -2026-01-16 11:18:42.493 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.Extensions.7s9z475qvj.wasm - null null -2026-01-16 11:18:42.493 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.493 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.493 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.493 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.493 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.494 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.494 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.494 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.494 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.494 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.494 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.494 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.494 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.494 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.494 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.494 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.494 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.494 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.494 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.494 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.494 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.509 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Encoding.Extensions.7s9z475qvj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ij3a13vyp7-{0}-7s9z475qvj-7s9z475qvj.gz' -2026-01-16 11:18:42.509 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.510 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.Extensions.7s9z475qvj.wasm - 200 5430 application/wasm 16.8702ms -2026-01-16 11:18:42.515 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.ldc2rqh80i.wasm - null null -2026-01-16 11:18:42.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.516 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.516 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.516 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.516 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.516 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.517 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.517 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.517 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.517 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.517 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.517 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.517 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.517 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.532 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Encoding.ldc2rqh80i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\w1z5z4lpop-{0}-ldc2rqh80i-ldc2rqh80i.gz' -2026-01-16 11:18:42.532 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.532 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.ldc2rqh80i.wasm - 200 5430 application/wasm 16.4531ms -2026-01-16 11:18:42.535 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Encodings.Web.8dol48h5sw.wasm - null null -2026-01-16 11:18:42.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.536 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.537 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.537 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.537 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.537 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.537 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.537 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.537 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.537 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.550 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Encodings.Web.8dol48h5sw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b5ft8vnha4-{0}-8dol48h5sw-8dol48h5sw.gz' -2026-01-16 11:18:42.550 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.550 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Encodings.Web.8dol48h5sw.wasm - 200 55611 application/wasm 14.844ms -2026-01-16 11:18:42.554 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Json.3vc5r851ef.wasm - null null -2026-01-16 11:18:42.554 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.555 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.555 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.555 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.555 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.555 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.555 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.555 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.556 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.556 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.556 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.556 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.556 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.556 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.572 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Json.3vc5r851ef.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\is1y7e0ewf-{0}-3vc5r851ef-3vc5r851ef.gz' -2026-01-16 11:18:42.572 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.573 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Json.3vc5r851ef.wasm - 200 638869 application/wasm 18.7141ms -2026-01-16 11:18:42.576 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.RegularExpressions.fa55zq7noc.wasm - null null -2026-01-16 11:18:42.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.577 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.577 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.577 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.577 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.577 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.578 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.578 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.578 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.578 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.578 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.578 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.578 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.578 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.594 +03:00 [INF] Sending file. Request path: '_framework/System.Text.RegularExpressions.fa55zq7noc.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b5e2kemd87-{0}-fa55zq7noc-fa55zq7noc.gz' -2026-01-16 11:18:42.594 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.594 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.RegularExpressions.fa55zq7noc.wasm - 200 374637 application/wasm 17.6792ms -2026-01-16 11:18:42.597 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.AccessControl.0jx6t23d4a.wasm - null null -2026-01-16 11:18:42.598 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.598 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.598 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.598 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.598 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.598 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.598 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.598 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.598 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.598 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.598 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.598 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.598 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.598 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.598 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.598 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.598 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.598 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.598 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.598 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.598 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.612 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.AccessControl.0jx6t23d4a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7hxeyq70th-{0}-0jx6t23d4a-0jx6t23d4a.gz' -2026-01-16 11:18:42.612 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.612 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.AccessControl.0jx6t23d4a.wasm - 200 23350 application/wasm 15.1785ms -2026-01-16 11:18:42.616 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Channels.5yls0a3tlo.wasm - null null -2026-01-16 11:18:42.617 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.617 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.617 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.617 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.617 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.617 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.617 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.617 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.617 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.617 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.617 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.617 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.617 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.617 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.617 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.617 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.617 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.617 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.617 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.617 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.618 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.632 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Channels.5yls0a3tlo.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\yfc45zghwv-{0}-5yls0a3tlo-5yls0a3tlo.gz' -2026-01-16 11:18:42.632 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.632 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Channels.5yls0a3tlo.wasm - 200 56123 application/wasm 16.0712ms -2026-01-16 11:18:42.639 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Overlapped.7fzdvfjpcj.wasm - null null -2026-01-16 11:18:42.640 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.640 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.640 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.640 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.640 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.640 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.640 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.640 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.640 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.640 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.640 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.640 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.640 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.641 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.641 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.641 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.641 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.641 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.641 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.641 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.641 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.654 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Overlapped.7fzdvfjpcj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1nn32vjcux-{0}-7fzdvfjpcj-7fzdvfjpcj.gz' -2026-01-16 11:18:42.654 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.655 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Overlapped.7fzdvfjpcj.wasm - 200 5430 application/wasm 15.3101ms -2026-01-16 11:18:42.658 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Dataflow.b1bop2hs5a.wasm - null null -2026-01-16 11:18:42.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.659 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.659 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.659 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.659 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.659 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.660 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.660 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.660 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.660 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.660 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.660 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.660 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.660 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.675 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Tasks.Dataflow.b1bop2hs5a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bygxarg1od-{0}-b1bop2hs5a-b1bop2hs5a.gz' -2026-01-16 11:18:42.675 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.675 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Dataflow.b1bop2hs5a.wasm - 200 175439 application/wasm 16.6865ms -2026-01-16 11:18:42.678 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Extensions.w1aib1cdwa.wasm - null null -2026-01-16 11:18:42.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.679 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.679 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.679 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.679 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.679 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.679 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.679 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.679 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.680 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.695 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Tasks.Extensions.w1aib1cdwa.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wzcconrhmx-{0}-w1aib1cdwa-w1aib1cdwa.gz' -2026-01-16 11:18:42.695 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.695 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Extensions.w1aib1cdwa.wasm - 200 5430 application/wasm 16.6256ms -2026-01-16 11:18:42.698 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Parallel.k09pj8k6wz.wasm - null null -2026-01-16 11:18:42.699 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.699 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.699 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.699 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.699 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.699 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.699 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.699 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.699 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.699 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.699 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.699 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.699 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.699 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.699 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.699 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.699 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.700 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.700 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.700 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.700 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.715 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Tasks.Parallel.k09pj8k6wz.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\eo71wakl9t-{0}-k09pj8k6wz-k09pj8k6wz.gz' -2026-01-16 11:18:42.715 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.715 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Parallel.k09pj8k6wz.wasm - 200 51003 application/wasm 16.5615ms -2026-01-16 11:18:42.718 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.ixxtp5uj8k.wasm - null null -2026-01-16 11:18:42.719 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.719 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.719 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.719 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.719 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.719 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.719 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.719 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.719 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.719 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.719 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.719 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.719 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.720 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.720 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.720 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.720 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.720 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.720 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.720 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.720 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.735 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Tasks.ixxtp5uj8k.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dmqlrfwu1b-{0}-ixxtp5uj8k-ixxtp5uj8k.gz' -2026-01-16 11:18:42.735 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.735 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.ixxtp5uj8k.wasm - 200 6454 application/wasm 16.5055ms -2026-01-16 11:18:42.739 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Thread.oikmdgabjt.wasm - null null -2026-01-16 11:18:42.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.740 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.740 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.741 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.741 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.741 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.741 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.741 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.741 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.741 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.741 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.741 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.741 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.741 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.741 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.741 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.741 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.741 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.741 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.741 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.741 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.754 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Thread.oikmdgabjt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v09yqluov3-{0}-oikmdgabjt-oikmdgabjt.gz' -2026-01-16 11:18:42.754 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.754 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Thread.oikmdgabjt.wasm - 200 5430 application/wasm 15.433ms -2026-01-16 11:18:42.758 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.ThreadPool.szctd5y8bn.wasm - null null -2026-01-16 11:18:42.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.759 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.759 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.759 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.759 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.759 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.759 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.759 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.759 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.759 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.759 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.759 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.759 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.760 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.775 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.ThreadPool.szctd5y8bn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jfyqp856kd-{0}-szctd5y8bn-szctd5y8bn.gz' -2026-01-16 11:18:42.775 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.775 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.ThreadPool.szctd5y8bn.wasm - 200 5430 application/wasm 16.6183ms -2026-01-16 11:18:42.778 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Timer.k8rrsskw5o.wasm - null null -2026-01-16 11:18:42.778 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.778 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.778 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.778 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.778 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.779 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.779 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.779 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.779 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.779 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.779 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.779 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.779 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.779 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.779 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.779 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.779 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.779 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.779 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.779 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.779 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.794 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Timer.k8rrsskw5o.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kw1ofqxbky-{0}-k8rrsskw5o-k8rrsskw5o.gz' -2026-01-16 11:18:42.794 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.794 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Timer.k8rrsskw5o.wasm - 200 4918 application/wasm 16.2231ms -2026-01-16 11:18:42.797 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.s2hrn953g9.wasm - null null -2026-01-16 11:18:42.797 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.798 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.798 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.798 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.798 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.798 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.798 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.798 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.798 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.798 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.798 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.798 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.798 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.798 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.812 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.s2hrn953g9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6obifrcy4d-{0}-s2hrn953g9-s2hrn953g9.gz' -2026-01-16 11:18:42.812 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.812 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.s2hrn953g9.wasm - 200 34619 application/wasm 14.7177ms -2026-01-16 11:18:42.815 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Transactions.Local.nufsb5pyrr.wasm - null null -2026-01-16 11:18:42.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.816 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.816 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.816 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.816 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.816 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.816 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.816 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.816 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.816 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.816 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.816 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.816 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.817 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.831 +03:00 [INF] Sending file. Request path: '_framework/System.Transactions.Local.nufsb5pyrr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vnl4qu3in7-{0}-nufsb5pyrr-nufsb5pyrr.gz' -2026-01-16 11:18:42.831 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.832 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Transactions.Local.nufsb5pyrr.wasm - 200 165711 application/wasm 16.6637ms -2026-01-16 11:18:42.835 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Transactions.3ezo8twol7.wasm - null null -2026-01-16 11:18:42.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.836 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.836 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.836 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.836 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.836 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.836 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.836 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.836 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.836 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.836 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.836 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.836 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.837 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.849 +03:00 [INF] Sending file. Request path: '_framework/System.Transactions.3ezo8twol7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v8zohqruou-{0}-3ezo8twol7-3ezo8twol7.gz' -2026-01-16 11:18:42.849 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.849 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Transactions.3ezo8twol7.wasm - 200 6454 application/wasm 14.31ms -2026-01-16 11:18:42.853 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ValueTuple.lle7yi2fzv.wasm - null null -2026-01-16 11:18:42.853 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.853 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.853 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.853 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.853 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.854 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.854 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.854 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.854 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.854 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.854 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.854 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.854 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.854 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.867 +03:00 [INF] Sending file. Request path: '_framework/System.ValueTuple.lle7yi2fzv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\io39vdvq9n-{0}-lle7yi2fzv-lle7yi2fzv.gz' -2026-01-16 11:18:42.867 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.867 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ValueTuple.lle7yi2fzv.wasm - 200 5430 application/wasm 14.0131ms -2026-01-16 11:18:42.870 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Web.HttpUtility.u5rdfpwou6.wasm - null null -2026-01-16 11:18:42.871 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.871 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.871 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.871 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.871 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.871 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.871 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.871 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.871 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.871 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.871 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.871 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.871 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.872 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.872 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.872 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.872 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.872 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.872 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.872 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.872 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.885 +03:00 [INF] Sending file. Request path: '_framework/System.Web.HttpUtility.u5rdfpwou6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rn4buhtgqs-{0}-u5rdfpwou6-u5rdfpwou6.gz' -2026-01-16 11:18:42.885 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.885 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Web.HttpUtility.u5rdfpwou6.wasm - 200 19766 application/wasm 15.2091ms -2026-01-16 11:18:42.889 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Web.wygikf6la5.wasm - null null -2026-01-16 11:18:42.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.890 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.890 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.890 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.890 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.890 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.890 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.890 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.891 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.891 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.891 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.891 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.891 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.891 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.904 +03:00 [INF] Sending file. Request path: '_framework/System.Web.wygikf6la5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ru9f3t39bb-{0}-wygikf6la5-wygikf6la5.gz' -2026-01-16 11:18:42.904 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.904 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Web.wygikf6la5.wasm - 200 4918 application/wasm 14.7884ms -2026-01-16 11:18:42.907 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Windows.axtn86mzz6.wasm - null null -2026-01-16 11:18:42.908 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.908 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.908 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.908 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.908 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.909 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.909 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.909 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.909 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.909 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.909 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.909 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.909 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.909 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.921 +03:00 [INF] Sending file. Request path: '_framework/System.Windows.axtn86mzz6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1my90r3byi-{0}-axtn86mzz6-axtn86mzz6.gz' -2026-01-16 11:18:42.921 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.921 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Windows.axtn86mzz6.wasm - 200 5430 application/wasm 13.9409ms -2026-01-16 11:18:42.925 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.Linq.j4b5ce3025.wasm - null null -2026-01-16 11:18:42.925 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.926 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.926 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.926 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.926 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.926 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.926 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.926 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.926 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.926 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.926 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.926 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.926 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.926 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.926 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.926 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.926 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.926 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.926 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.926 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.926 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.939 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.Linq.j4b5ce3025.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2m6czvvsuo-{0}-j4b5ce3025-j4b5ce3025.gz' -2026-01-16 11:18:42.939 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.940 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.Linq.j4b5ce3025.wasm - 200 5430 application/wasm 14.7304ms -2026-01-16 11:18:42.942 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.ReaderWriter.60z52rxro3.wasm - null null -2026-01-16 11:18:42.943 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.943 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.943 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.943 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.943 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.943 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.943 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.943 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.943 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.943 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.943 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.943 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.943 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.943 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.943 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.943 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.943 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.943 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.943 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.943 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.944 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.956 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.ReaderWriter.60z52rxro3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rg4isli5jp-{0}-60z52rxro3-60z52rxro3.gz' -2026-01-16 11:18:42.956 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.956 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.ReaderWriter.60z52rxro3.wasm - 200 11574 application/wasm 13.4692ms -2026-01-16 11:18:42.958 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.Serialization.pm5yw3aolk.wasm - null null -2026-01-16 11:18:42.959 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.959 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.959 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.959 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.959 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.959 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.959 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.959 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.959 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.959 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.959 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.959 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.959 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.960 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.960 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.960 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.960 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.960 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.960 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.960 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.960 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.972 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.Serialization.pm5yw3aolk.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\o41cy5pfaz-{0}-pm5yw3aolk-pm5yw3aolk.gz' -2026-01-16 11:18:42.972 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.972 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.Serialization.pm5yw3aolk.wasm - 200 5942 application/wasm 13.8227ms -2026-01-16 11:18:42.975 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XDocument.b4xtw4lbmx.wasm - null null -2026-01-16 11:18:42.976 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.976 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.976 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.976 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.976 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.976 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.976 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.976 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.976 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.976 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.976 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.976 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.976 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.976 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.976 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.976 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.976 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.976 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.976 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.976 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.976 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.990 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XDocument.b4xtw4lbmx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\veh6k128ug-{0}-b4xtw4lbmx-b4xtw4lbmx.gz' -2026-01-16 11:18:42.990 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:42.990 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XDocument.b4xtw4lbmx.wasm - 200 5430 application/wasm 14.761ms -2026-01-16 11:18:42.993 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XPath.XDocument.p6s7bmw3ej.wasm - null null -2026-01-16 11:18:42.993 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.993 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:42.994 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:42.994 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:42.994 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:42.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:42.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:42.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:42.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:42.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:42.994 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:42.994 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:42.994 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:42.994 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:42.994 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:42.994 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:42.994 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:42.994 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:42.994 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.009 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XPath.XDocument.p6s7bmw3ej.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dp2x1o3mj5-{0}-p6s7bmw3ej-p6s7bmw3ej.gz' -2026-01-16 11:18:43.009 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.009 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XPath.XDocument.p6s7bmw3ej.wasm - 200 5430 application/wasm 16.2407ms -2026-01-16 11:18:43.012 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XPath.egozus3d9z.wasm - null null -2026-01-16 11:18:43.013 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.013 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.013 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.013 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.013 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.013 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.013 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.013 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.013 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.013 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.013 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.013 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.013 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.013 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.013 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.013 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.013 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.013 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.013 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.013 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.013 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.028 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XPath.egozus3d9z.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6kx3a3nw65-{0}-egozus3d9z-egozus3d9z.gz' -2026-01-16 11:18:43.028 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.028 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XPath.egozus3d9z.wasm - 200 5430 application/wasm 16.0108ms -2026-01-16 11:18:43.031 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XmlDocument.771pf23z5h.wasm - null null -2026-01-16 11:18:43.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.032 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.032 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.032 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.032 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.032 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.032 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.032 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.032 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.032 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.047 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XmlDocument.771pf23z5h.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mit9lp1cls-{0}-771pf23z5h-771pf23z5h.gz' -2026-01-16 11:18:43.047 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.047 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XmlDocument.771pf23z5h.wasm - 200 5430 application/wasm 16.2846ms -2026-01-16 11:18:43.051 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XmlSerializer.h0uogtkh03.wasm - null null -2026-01-16 11:18:43.051 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.051 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.051 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.051 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.051 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.052 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.052 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.052 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.052 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.052 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.052 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.052 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.052 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.052 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.066 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XmlSerializer.h0uogtkh03.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6ubynsl46b-{0}-h0uogtkh03-h0uogtkh03.gz' -2026-01-16 11:18:43.066 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.066 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XmlSerializer.h0uogtkh03.wasm - 200 7478 application/wasm 15.1488ms -2026-01-16 11:18:43.070 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.95nan2l20b.wasm - null null -2026-01-16 11:18:43.070 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.070 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.070 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.070 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.070 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.071 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.071 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.071 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.071 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.071 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.071 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.071 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.071 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.071 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.071 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.071 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.071 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.071 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.071 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.071 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.071 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.083 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.95nan2l20b.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pcooe0k5kk-{0}-95nan2l20b-95nan2l20b.gz' -2026-01-16 11:18:43.083 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.084 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.95nan2l20b.wasm - 200 13110 application/wasm 13.951ms -2026-01-16 11:18:43.087 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.au65xu8d95.wasm - null null -2026-01-16 11:18:43.088 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.088 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.088 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.088 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.088 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.088 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.088 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.088 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.088 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.088 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.088 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.088 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.088 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.089 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.089 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.089 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.089 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.089 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.089 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.089 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.089 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.102 +03:00 [INF] Sending file. Request path: '_framework/System.au65xu8d95.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\um28rmltyb-{0}-au65xu8d95-au65xu8d95.gz' -2026-01-16 11:18:43.102 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.102 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.au65xu8d95.wasm - 200 39739 application/wasm 15.0256ms -2026-01-16 11:18:43.106 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/WindowsBase.mi3hkxthj8.wasm - null null -2026-01-16 11:18:43.107 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.107 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.107 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.107 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.107 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.107 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.107 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.107 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.107 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.107 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.107 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.107 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.107 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.107 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.107 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.107 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.107 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.107 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.107 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.107 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.107 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.120 +03:00 [INF] Sending file. Request path: '_framework/WindowsBase.mi3hkxthj8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8syd5uq41h-{0}-mi3hkxthj8-mi3hkxthj8.gz' -2026-01-16 11:18:43.120 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.120 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/WindowsBase.mi3hkxthj8.wasm - 200 5942 application/wasm 13.9514ms -2026-01-16 11:18:43.124 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/mscorlib.uifnjyorgo.wasm - null null -2026-01-16 11:18:43.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.124 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.124 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.124 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.124 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.125 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.125 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.125 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.125 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.125 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.125 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.125 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.125 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.154 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.154 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.154 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.154 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.154 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.154 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.154 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.155 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.165 +03:00 [INF] Sending file. Request path: '_framework/mscorlib.uifnjyorgo.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xpihquz2r5-{0}-uifnjyorgo-uifnjyorgo.gz' -2026-01-16 11:18:43.165 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.165 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/mscorlib.uifnjyorgo.wasm - 200 49467 application/wasm 41.5202ms -2026-01-16 11:18:43.169 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/netstandard.qvqeanc7qr.wasm - null null -2026-01-16 11:18:43.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.169 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.169 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.169 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.169 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.170 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.170 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.170 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.170 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.170 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.170 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.170 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.170 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.170 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.170 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.170 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.170 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.170 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.170 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.170 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.171 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.183 +03:00 [INF] Sending file. Request path: '_framework/netstandard.qvqeanc7qr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ciukkw19kg-{0}-qvqeanc7qr-qvqeanc7qr.gz' -2026-01-16 11:18:43.183 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.183 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/netstandard.qvqeanc7qr.wasm - 200 90432 application/wasm 14.441ms -2026-01-16 11:18:43.187 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Application.Contracts.xngfzyrqyt.wasm - null null -2026-01-16 11:18:43.188 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.188 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.188 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.188 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.188 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.188 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.188 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.188 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.188 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.188 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.188 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.188 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.188 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.188 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.188 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.188 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.188 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.188 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.188 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.188 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.189 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.201 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Application.Contracts.xngfzyrqyt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0lm5ebgqof-{0}-xngfzyrqyt-xngfzyrqyt.gz' -2026-01-16 11:18:43.201 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.201 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Application.Contracts.xngfzyrqyt.wasm - 200 8502 application/wasm 13.929ms -2026-01-16 11:18:43.205 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Domain.Shared.uowqmvlgpz.wasm - null null -2026-01-16 11:18:43.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.206 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.206 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.206 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.206 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.206 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.207 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.207 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.207 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.207 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.207 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.207 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.207 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.207 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.219 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Domain.Shared.uowqmvlgpz.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\qwx72m6fc1-{0}-uowqmvlgpz-uowqmvlgpz.gz' -2026-01-16 11:18:43.219 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.219 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Domain.Shared.uowqmvlgpz.wasm - 200 23350 application/wasm 14.0693ms -2026-01-16 11:18:43.223 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.HttpApi.Client.8eaik0mqxe.wasm - null null -2026-01-16 11:18:43.224 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.224 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.224 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.224 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.224 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.224 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.224 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.224 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.224 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.224 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.224 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.224 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.224 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.224 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.224 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.224 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.224 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.224 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.224 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.224 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.225 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.237 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.HttpApi.Client.8eaik0mqxe.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\scloparoeu-{0}-8eaik0mqxe-8eaik0mqxe.gz' -2026-01-16 11:18:43.237 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.237 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.HttpApi.Client.8eaik0mqxe.wasm - 200 7990 application/wasm 13.7699ms -2026-01-16 11:18:43.240 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.Application.Contracts.v1mj3k57fr.wasm - null null -2026-01-16 11:18:43.241 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.241 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.241 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.241 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.241 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.241 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.241 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.241 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.241 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.241 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.241 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.241 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.241 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.242 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.242 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.242 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.242 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.242 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.242 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.242 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.242 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.255 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Account.Application.Contracts.v1mj3k57fr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lj6k2ntok7-{0}-v1mj3k57fr-v1mj3k57fr.gz' -2026-01-16 11:18:43.255 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.255 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.Application.Contracts.v1mj3k57fr.wasm - 200 182095 application/wasm 14.6353ms -2026-01-16 11:18:43.258 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.HttpApi.Client.yh9otogzgt.wasm - null null -2026-01-16 11:18:43.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.259 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.259 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.259 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.259 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.259 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.260 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.260 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.260 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.260 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.260 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.260 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.260 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.260 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.272 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Account.HttpApi.Client.yh9otogzgt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\am5qy7si0d-{0}-yh9otogzgt-yh9otogzgt.gz' -2026-01-16 11:18:43.272 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.272 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.HttpApi.Client.yh9otogzgt.wasm - 200 36667 application/wasm 14.1025ms -2026-01-16 11:18:43.276 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.apf4xc15fu.wasm - null null -2026-01-16 11:18:43.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.276 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.276 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.276 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.276 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.277 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.277 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.277 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.277 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.277 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.277 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.277 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.277 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.277 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.290 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.apf4xc15fu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7rtjnlhdr6-{0}-apf4xc15fu-apf4xc15fu.gz' -2026-01-16 11:18:43.290 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.291 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.apf4xc15fu.wasm - 200 23350 application/wasm 14.9572ms -2026-01-16 11:18:43.293 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.rq9i0i0z26.wasm - null null -2026-01-16 11:18:43.294 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.294 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.294 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.294 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.294 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.294 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.294 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.294 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.294 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.294 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.294 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.294 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.294 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.295 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.295 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.295 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.295 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.295 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.295 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.295 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.295 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.318 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.rq9i0i0z26.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dtw2jvq9ko-{0}-rq9i0i0z26-rq9i0i0z26.gz' -2026-01-16 11:18:43.318 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.318 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.rq9i0i0z26.wasm - 200 49979 application/wasm 24.829ms -2026-01-16 11:18:43.326 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.Theming.2ct0cbvcgl.wasm - null null -2026-01-16 11:18:43.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.327 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.327 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.327 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.327 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.327 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.327 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.327 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.327 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.327 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.327 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.327 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.327 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.328 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.341 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.Theming.2ct0cbvcgl.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\zck986wix3-{0}-2ct0cbvcgl-2ct0cbvcgl.gz' -2026-01-16 11:18:43.341 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.341 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.Theming.2ct0cbvcgl.wasm - 200 46395 application/wasm 14.9598ms -2026-01-16 11:18:43.345 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.62nl55cu0f.wasm - null null -2026-01-16 11:18:43.345 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.345 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.345 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.345 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.345 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.345 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.345 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.345 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.345 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.345 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.345 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.345 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.345 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.346 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.346 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.346 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.346 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.346 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.346 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.346 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.346 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.360 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.62nl55cu0f.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\29y4ttn7p6-{0}-62nl55cu0f-62nl55cu0f.gz' -2026-01-16 11:18:43.360 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.360 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.62nl55cu0f.wasm - 200 56635 application/wasm 15.9168ms -2026-01-16 11:18:43.363 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.vtzblf3l1n.wasm - null null -2026-01-16 11:18:43.364 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.364 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.364 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.364 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.364 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.364 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.364 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.364 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.364 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.364 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.364 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.364 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.364 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.365 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.365 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.365 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.365 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.365 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.365 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.365 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.365 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.377 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.vtzblf3l1n.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v23sh1qt8y-{0}-vtzblf3l1n-vtzblf3l1n.gz' -2026-01-16 11:18:43.378 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.378 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.vtzblf3l1n.wasm - 200 9526 application/wasm 14.1836ms -2026-01-16 11:18:43.380 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.qihc53vb7i.wasm - null null -2026-01-16 11:18:43.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.381 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.381 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.381 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.381 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.381 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.382 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.382 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.382 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.382 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.382 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.382 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.382 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.382 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.396 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.qihc53vb7i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dig1ljri84-{0}-qihc53vb7i-qihc53vb7i.gz' -2026-01-16 11:18:43.396 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.396 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.qihc53vb7i.wasm - 200 9014 application/wasm 16.003ms -2026-01-16 11:18:43.399 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.3hipvilosq.wasm - null null -2026-01-16 11:18:43.400 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.400 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.400 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.400 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.400 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.400 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.400 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.400 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.400 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.400 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.400 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.400 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.400 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.401 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.401 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.401 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.401 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.401 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.401 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.401 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.401 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.414 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.3hipvilosq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wywr70k095-{0}-3hipvilosq-3hipvilosq.gz' -2026-01-16 11:18:43.414 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.414 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.3hipvilosq.wasm - 200 53051 application/wasm 15.0328ms -2026-01-16 11:18:43.418 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Contracts.rppoxkx2x4.wasm - null null -2026-01-16 11:18:43.418 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.418 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.418 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.418 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.418 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.419 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.419 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.419 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.419 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.419 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.419 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.419 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.419 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.419 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.419 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.419 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.419 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.419 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.419 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.419 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.419 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.434 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.Contracts.rppoxkx2x4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ch1l6yg9xg-{0}-rppoxkx2x4-rppoxkx2x4.gz' -2026-01-16 11:18:43.434 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.434 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Contracts.rppoxkx2x4.wasm - 200 32054 application/wasm 16.1531ms -2026-01-16 11:18:43.438 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.be6noxwtse.wasm - null null -2026-01-16 11:18:43.438 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.438 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.438 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.438 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.438 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.438 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.438 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.439 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.439 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.439 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.439 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.439 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.439 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.439 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.439 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.439 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.439 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.439 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.439 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.439 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.439 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.454 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.be6noxwtse.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6qc21ahd0h-{0}-be6noxwtse-be6noxwtse.gz' -2026-01-16 11:18:43.455 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.455 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.be6noxwtse.wasm - 200 24886 application/wasm 17.0333ms -2026-01-16 11:18:43.458 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.Contracts.scb5l0zrji.wasm - null null -2026-01-16 11:18:43.459 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.459 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.459 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.459 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.459 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.459 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.459 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.459 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.459 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.459 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.459 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.459 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.459 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.460 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.460 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.460 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.460 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.460 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.460 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.460 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.460 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.475 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Auditing.Contracts.scb5l0zrji.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gvrtk0uenw-{0}-scb5l0zrji-scb5l0zrji.gz' -2026-01-16 11:18:43.475 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.475 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.Contracts.scb5l0zrji.wasm - 200 6454 application/wasm 16.6608ms -2026-01-16 11:18:43.478 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.95q49aor52.wasm - null null -2026-01-16 11:18:43.479 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.479 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.479 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.479 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.479 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.479 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.479 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.479 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.479 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.479 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.479 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.479 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.479 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.480 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.480 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.480 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.480 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.480 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.480 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.480 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.480 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.495 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Auditing.95q49aor52.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0bpurwxf4x-{0}-95q49aor52-95q49aor52.gz' -2026-01-16 11:18:43.495 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.495 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.95q49aor52.wasm - 200 51003 application/wasm 16.819ms -2026-01-16 11:18:43.499 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AuditLogging.Domain.Shared.qnhz2lmy6m.wasm - null null -2026-01-16 11:18:43.499 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.499 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.499 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.499 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.499 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.500 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.500 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.500 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.500 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.500 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.500 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.500 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.500 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.500 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.500 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.500 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.500 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.500 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.500 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.500 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.500 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.515 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AuditLogging.Domain.Shared.qnhz2lmy6m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\een9hz6ik5-{0}-qnhz2lmy6m-qnhz2lmy6m.gz' -2026-01-16 11:18:43.515 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.515 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AuditLogging.Domain.Shared.qnhz2lmy6m.wasm - 200 158026 application/wasm 16.1516ms -2026-01-16 11:18:43.518 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.Abstractions.9vxm0cr7nm.wasm - null null -2026-01-16 11:18:43.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.519 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.519 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.519 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.519 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.519 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.520 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.520 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.520 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.520 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.520 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.520 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.520 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.520 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.536 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Authorization.Abstractions.9vxm0cr7nm.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mzg3hwxb9z-{0}-9vxm0cr7nm-9vxm0cr7nm.gz' -2026-01-16 11:18:43.536 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.536 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.Abstractions.9vxm0cr7nm.wasm - 200 36155 application/wasm 17.5488ms -2026-01-16 11:18:43.540 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.pmcd94mrwk.wasm - null null -2026-01-16 11:18:43.541 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.541 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.541 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.541 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.541 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.541 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.541 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.541 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.541 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.541 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.541 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.541 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.541 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.541 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.542 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.542 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.542 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.542 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.542 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.542 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.542 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.556 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Authorization.pmcd94mrwk.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kmfgdovl74-{0}-pmcd94mrwk-pmcd94mrwk.gz' -2026-01-16 11:18:43.556 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.556 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.pmcd94mrwk.wasm - 200 134986 application/wasm 15.7999ms -2026-01-16 11:18:43.559 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.w0f7283yhs.wasm - null null -2026-01-16 11:18:43.560 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.560 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.560 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.560 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.560 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.560 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.560 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.560 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.560 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.560 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.560 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.560 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.560 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.561 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.561 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.561 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.561 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.561 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.561 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.561 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.561 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.574 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Autofac.w0f7283yhs.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dnh2928fpn-{0}-w0f7283yhs-w0f7283yhs.gz' -2026-01-16 11:18:43.574 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.574 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.w0f7283yhs.wasm - 200 20790 application/wasm 14.7602ms -2026-01-16 11:18:43.577 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.WebAssembly.1v0mwzzkmy.wasm - null null -2026-01-16 11:18:43.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.578 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.578 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.578 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.578 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.578 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.579 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.579 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.579 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.579 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.579 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.579 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.579 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.579 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.593 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Autofac.WebAssembly.1v0mwzzkmy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fy88n7o3re-{0}-1v0mwzzkmy-1v0mwzzkmy.gz' -2026-01-16 11:18:43.593 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.593 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.WebAssembly.1v0mwzzkmy.wasm - 200 6454 application/wasm 15.4487ms -2026-01-16 11:18:43.596 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundJobs.Domain.Shared.u8iz7to1f8.wasm - null null -2026-01-16 11:18:43.596 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.596 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.596 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.596 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.596 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.597 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.597 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.597 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.597 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.597 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.597 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.597 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.597 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.597 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.597 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.597 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.597 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.597 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.597 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.597 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.597 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.611 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BackgroundJobs.Domain.Shared.u8iz7to1f8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\it8pbr6hs7-{0}-u8iz7to1f8-u8iz7to1f8.gz' -2026-01-16 11:18:43.611 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.611 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundJobs.Domain.Shared.u8iz7to1f8.wasm - 200 5430 application/wasm 15.2331ms -2026-01-16 11:18:43.614 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundWorkers.cjdl9on1vi.wasm - null null -2026-01-16 11:18:43.614 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.615 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.615 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.615 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.615 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.615 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.615 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.615 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.615 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.615 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.615 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.615 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.615 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.615 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.615 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.615 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.615 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.631 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BackgroundWorkers.cjdl9on1vi.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tnta0aqntp-{0}-cjdl9on1vi-cjdl9on1vi.gz' -2026-01-16 11:18:43.631 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.631 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundWorkers.cjdl9on1vi.wasm - 200 25398 application/wasm 16.8681ms -2026-01-16 11:18:43.641 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BlazoriseUI.iine40esqe.wasm - null null -2026-01-16 11:18:43.642 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.642 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.642 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.642 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.642 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.642 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.642 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.642 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.642 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.642 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.642 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.642 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.642 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.642 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.642 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.642 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.642 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.643 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.643 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.643 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.643 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.659 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BlazoriseUI.iine40esqe.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ui1xftib7r-{0}-iine40esqe-iine40esqe.gz' -2026-01-16 11:18:43.659 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.659 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BlazoriseUI.iine40esqe.wasm - 200 153418 application/wasm 18.2917ms -2026-01-16 11:18:43.663 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Caching.s09ctqex99.wasm - null null -2026-01-16 11:18:43.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.664 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.664 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.664 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.664 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.664 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.664 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.664 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.664 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.664 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.664 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.664 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.664 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.664 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.680 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Caching.s09ctqex99.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5pr3wxuvo5-{0}-s09ctqex99-s09ctqex99.gz' -2026-01-16 11:18:43.680 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.680 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Caching.s09ctqex99.wasm - 200 85824 application/wasm 17.2677ms -2026-01-16 11:18:43.686 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Castle.Core.din8glqpb5.wasm - null null -2026-01-16 11:18:43.686 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.687 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.687 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.687 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.687 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.687 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.687 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.687 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.687 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.687 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.687 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.687 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.687 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.687 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.687 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.687 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.687 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.687 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.687 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.687 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.688 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.704 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Castle.Core.din8glqpb5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\f5a40y0td5-{0}-din8glqpb5-din8glqpb5.gz' -2026-01-16 11:18:43.705 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.705 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Castle.Core.din8glqpb5.wasm - 200 11574 application/wasm 18.8478ms -2026-01-16 11:18:43.710 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Core.jc6l297fef.wasm - null null -2026-01-16 11:18:43.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.711 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.711 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.711 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.711 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.711 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.711 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.711 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.711 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.711 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.711 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.711 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.711 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.712 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.729 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Core.jc6l297fef.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\klnckblff1-{0}-jc6l297fef-jc6l297fef.gz' -2026-01-16 11:18:43.729 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.729 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Core.jc6l297fef.wasm - 200 311139 application/wasm 19.4492ms -2026-01-16 11:18:43.735 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Data.45tb83m8qj.wasm - null null -2026-01-16 11:18:43.736 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.736 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.736 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.736 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.736 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.737 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.737 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.737 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.737 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.737 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.737 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.737 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.737 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.737 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.737 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.737 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.737 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.737 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.737 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.737 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.737 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.755 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Data.45tb83m8qj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\g2etzqh2n8-{0}-45tb83m8qj-45tb83m8qj.gz' -2026-01-16 11:18:43.755 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.756 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Data.45tb83m8qj.wasm - 200 23862 application/wasm 20.234ms -2026-01-16 11:18:43.767 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Ddd.Application.Contracts.r37rukhywo.wasm - null null -2026-01-16 11:18:43.768 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.768 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.768 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.768 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.768 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.768 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.768 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.768 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.768 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.768 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.768 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.768 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.768 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.768 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.768 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.768 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.768 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.768 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.768 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.768 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.769 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.783 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Ddd.Application.Contracts.r37rukhywo.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bq3ub7csyu-{0}-r37rukhywo-r37rukhywo.gz' -2026-01-16 11:18:43.784 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.784 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Ddd.Application.Contracts.r37rukhywo.wasm - 200 37691 application/wasm 16.6482ms -2026-01-16 11:18:43.789 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.DistributedLocking.Abstractions.tk4mfpf8i8.wasm - null null -2026-01-16 11:18:43.790 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.790 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.790 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.790 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.790 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.790 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.790 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.790 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.790 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.790 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.790 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.790 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.790 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.791 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.791 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.791 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.791 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.791 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.791 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.791 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.791 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.806 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.DistributedLocking.Abstractions.tk4mfpf8i8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\qe2ghijxui-{0}-tk4mfpf8i8-tk4mfpf8i8.gz' -2026-01-16 11:18:43.806 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.806 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.DistributedLocking.Abstractions.tk4mfpf8i8.wasm - 200 7990 application/wasm 16.7104ms -2026-01-16 11:18:43.809 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.Abstractions.5cqj3sommy.wasm - null null -2026-01-16 11:18:43.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.810 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.810 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.810 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.810 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.810 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.810 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.811 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.811 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.811 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.811 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.811 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.811 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.811 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.824 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.EventBus.Abstractions.5cqj3sommy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\30q391t77y-{0}-5cqj3sommy-5cqj3sommy.gz' -2026-01-16 11:18:43.824 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.824 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.Abstractions.5cqj3sommy.wasm - 200 20278 application/wasm 15.0664ms -2026-01-16 11:18:43.829 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.utpzts8k5s.wasm - null null -2026-01-16 11:18:43.829 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.829 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.829 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.829 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.829 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.829 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.829 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.830 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.830 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.830 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.830 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.830 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.830 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.830 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.830 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.830 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.845 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.EventBus.utpzts8k5s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xdn8i8epqw-{0}-utpzts8k5s-utpzts8k5s.gz' -2026-01-16 11:18:43.846 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.846 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.utpzts8k5s.wasm - 200 85824 application/wasm 16.9451ms -2026-01-16 11:18:43.851 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ExceptionHandling.vp0sg9d114.wasm - null null -2026-01-16 11:18:43.852 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.852 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.852 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.852 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.852 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.852 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.852 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.852 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.852 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.852 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.852 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.852 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.852 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.852 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.853 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.853 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.853 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.853 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.853 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.853 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.853 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.867 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ExceptionHandling.vp0sg9d114.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\86e1bzf02o-{0}-vp0sg9d114-vp0sg9d114.gz' -2026-01-16 11:18:43.867 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.867 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ExceptionHandling.vp0sg9d114.wasm - 200 79680 application/wasm 15.9871ms -2026-01-16 11:18:43.873 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Application.Contracts.sfkscfc8zv.wasm - null null -2026-01-16 11:18:43.874 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.874 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.874 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.874 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.874 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.874 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.874 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.874 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.874 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.874 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.874 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.874 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.874 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.875 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.875 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.875 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.875 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.875 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.875 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.875 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.875 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.888 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Application.Contracts.sfkscfc8zv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1k1yaajq7n-{0}-sfkscfc8zv-sfkscfc8zv.gz' -2026-01-16 11:18:43.888 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.888 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Application.Contracts.sfkscfc8zv.wasm - 200 11574 application/wasm 15.2542ms -2026-01-16 11:18:43.892 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.rngg7ug5lr.wasm - null null -2026-01-16 11:18:43.893 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.893 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.893 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.893 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.893 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.893 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.893 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.893 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.893 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.893 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.893 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.893 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.893 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.894 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.894 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.894 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.894 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.894 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.894 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.894 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.894 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.907 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Blazor.rngg7ug5lr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\to2klgum5b-{0}-rngg7ug5lr-rngg7ug5lr.gz' -2026-01-16 11:18:43.907 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.908 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.rngg7ug5lr.wasm - 200 39739 application/wasm 15.2024ms -2026-01-16 11:18:43.911 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.WebAssembly.wh6dfeii6u.wasm - null null -2026-01-16 11:18:43.911 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.911 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.911 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.911 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.911 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.912 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.912 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.912 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.912 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.912 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.912 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.912 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.912 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.912 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.912 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.912 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.912 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.912 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.912 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.912 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.912 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.926 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Blazor.WebAssembly.wh6dfeii6u.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\98qfb9rcua-{0}-wh6dfeii6u-wh6dfeii6u.gz' -2026-01-16 11:18:43.926 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.926 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.WebAssembly.wh6dfeii6u.wasm - 200 5430 application/wasm 15.4442ms -2026-01-16 11:18:43.929 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Domain.Shared.l99wm3i8ic.wasm - null null -2026-01-16 11:18:43.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.930 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.930 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.930 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.930 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.930 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.930 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.930 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.930 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.930 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.944 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Domain.Shared.l99wm3i8ic.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nv73dihqbu-{0}-l99wm3i8ic-l99wm3i8ic.gz' -2026-01-16 11:18:43.944 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.944 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Domain.Shared.l99wm3i8ic.wasm - 200 47419 application/wasm 15.1554ms -2026-01-16 11:18:43.947 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.HttpApi.Client.e611pdn2dh.wasm - null null -2026-01-16 11:18:43.948 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.948 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.948 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.948 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.948 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.948 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.948 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.948 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.948 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.948 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.948 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.948 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.948 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.948 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.948 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.948 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.948 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.948 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.948 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.948 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.949 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.960 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.HttpApi.Client.e611pdn2dh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5kgd4qlij6-{0}-e611pdn2dh-e611pdn2dh.gz' -2026-01-16 11:18:43.960 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.960 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.HttpApi.Client.e611pdn2dh.wasm - 200 22838 application/wasm 12.592ms -2026-01-16 11:18:43.964 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Features.8j0pys3g0l.wasm - null null -2026-01-16 11:18:43.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.965 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.965 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.966 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.966 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.966 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.966 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.966 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.966 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.966 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.979 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Features.8j0pys3g0l.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c4f7xcddbd-{0}-8j0pys3g0l-8j0pys3g0l.gz' -2026-01-16 11:18:43.979 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.979 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Features.8j0pys3g0l.wasm - 200 71488 application/wasm 14.5277ms -2026-01-16 11:18:43.982 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.GlobalFeatures.cncnlsoxlv.wasm - null null -2026-01-16 11:18:43.982 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:43.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:43.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:43.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:43.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:43.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:43.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:43.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:43.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:43.983 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:43.983 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:43.983 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:43.983 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:43.983 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:43.983 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:43.983 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:43.983 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:43.983 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.996 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.GlobalFeatures.cncnlsoxlv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lgshqof3zp-{0}-cncnlsoxlv-cncnlsoxlv.gz' -2026-01-16 11:18:43.996 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:43.996 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.GlobalFeatures.cncnlsoxlv.wasm - 200 26422 application/wasm 13.9365ms -2026-01-16 11:18:43.999 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Guids.rpqf4eel82.wasm - null null -2026-01-16 11:18:44.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.000 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.000 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.000 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.000 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.000 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.000 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.000 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.000 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.000 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.000 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.000 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.000 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.000 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.014 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Guids.rpqf4eel82.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fakjzvu1ye-{0}-rpqf4eel82-rpqf4eel82.gz' -2026-01-16 11:18:44.014 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.015 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Guids.rpqf4eel82.wasm - 200 5942 application/wasm 15.631ms -2026-01-16 11:18:44.019 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Abstractions.8dpdiecfgp.wasm - null null -2026-01-16 11:18:44.020 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.020 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.020 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.020 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.020 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.020 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.020 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.020 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.020 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.020 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.020 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.020 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.020 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.020 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.020 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.020 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.020 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.020 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.020 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.020 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.020 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.034 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Abstractions.8dpdiecfgp.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\orvt5319bs-{0}-8dpdiecfgp-8dpdiecfgp.gz' -2026-01-16 11:18:44.034 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.034 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Abstractions.8dpdiecfgp.wasm - 200 5942 application/wasm 15.1594ms -2026-01-16 11:18:44.037 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.r68qdgcd1b.wasm - null null -2026-01-16 11:18:44.038 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.038 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.038 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.038 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.038 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.038 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.038 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.038 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.038 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.038 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.038 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.038 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.038 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.039 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.039 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.039 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.039 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.039 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.039 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.039 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.039 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.053 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.r68qdgcd1b.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\esehx2q8xm-{0}-r68qdgcd1b-r68qdgcd1b.gz' -2026-01-16 11:18:44.053 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.053 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.r68qdgcd1b.wasm - 200 96576 application/wasm 15.739ms -2026-01-16 11:18:44.058 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.q7bwu8tai1.wasm - null null -2026-01-16 11:18:44.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.059 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.059 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.059 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.059 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.059 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.059 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.059 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.059 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.059 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.074 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.IdentityModel.q7bwu8tai1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\69zsrpzmke-{0}-q7bwu8tai1-q7bwu8tai1.gz' -2026-01-16 11:18:44.074 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.074 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.q7bwu8tai1.wasm - 200 7990 application/wasm 16.1283ms -2026-01-16 11:18:44.077 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.qzbsp0yqt9.wasm - null null -2026-01-16 11:18:44.078 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.078 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.078 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.078 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.078 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.078 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.078 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.078 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.078 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.078 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.078 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.078 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.078 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.079 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.079 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.079 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.079 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.079 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.079 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.079 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.079 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.093 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.qzbsp0yqt9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\985eczt6cq-{0}-qzbsp0yqt9-qzbsp0yqt9.gz' -2026-01-16 11:18:44.093 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.093 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.qzbsp0yqt9.wasm - 200 10550 application/wasm 15.3218ms -2026-01-16 11:18:44.096 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.wghlvqu53y.wasm - null null -2026-01-16 11:18:44.097 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.097 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.097 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.097 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.097 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.097 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.097 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.097 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.097 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.097 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.097 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.097 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.097 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.098 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.098 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.098 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.098 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.098 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.098 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.098 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.098 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.113 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.wghlvqu53y.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\blqvtier8g-{0}-wghlvqu53y-wghlvqu53y.gz' -2026-01-16 11:18:44.113 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.113 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.wghlvqu53y.wasm - 200 54587 application/wasm 16.4276ms -2026-01-16 11:18:44.116 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Application.Contracts.oc86zdrdr6.wasm - null null -2026-01-16 11:18:44.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.116 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.116 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.116 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.116 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.117 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.117 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.117 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.117 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.117 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.117 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.117 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.117 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.117 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.127 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Application.Contracts.oc86zdrdr6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ru0e3g14jl-{0}-oc86zdrdr6-oc86zdrdr6.gz' -2026-01-16 11:18:44.127 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.127 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Application.Contracts.oc86zdrdr6.wasm - 200 21302 application/wasm 11.6176ms -2026-01-16 11:18:44.130 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.heex3hhtoe.wasm - null null -2026-01-16 11:18:44.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.131 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.131 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.131 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.131 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.131 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.131 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.131 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.131 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.131 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.131 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.131 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.131 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.131 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.142 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Blazor.heex3hhtoe.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\opbpkr1dm9-{0}-heex3hhtoe-heex3hhtoe.gz' -2026-01-16 11:18:44.142 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.142 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.heex3hhtoe.wasm - 200 77632 application/wasm 12.0761ms -2026-01-16 11:18:44.145 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.WebAssembly.2yg00gujjm.wasm - null null -2026-01-16 11:18:44.145 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.145 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.145 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.145 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.145 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.146 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.146 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.146 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.146 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.146 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.146 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.146 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.146 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.146 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.146 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.146 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.146 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.146 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.146 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.146 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.146 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.159 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Blazor.WebAssembly.2yg00gujjm.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ggeuqe8fbt-{0}-2yg00gujjm-2yg00gujjm.gz' -2026-01-16 11:18:44.159 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.159 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.WebAssembly.2yg00gujjm.wasm - 200 5430 application/wasm 14.0182ms -2026-01-16 11:18:44.162 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Domain.Shared.8pasengv23.wasm - null null -2026-01-16 11:18:44.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.162 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.162 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.162 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.162 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.162 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.163 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.163 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.163 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.163 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.163 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.163 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.163 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.163 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.178 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Domain.Shared.8pasengv23.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\o0k8cjq56a-{0}-8pasengv23-8pasengv23.gz' -2026-01-16 11:18:44.179 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.179 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Domain.Shared.8pasengv23.wasm - 200 370029 application/wasm 17.045ms -2026-01-16 11:18:44.186 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.HttpApi.Client.plxsdumg7g.wasm - null null -2026-01-16 11:18:44.187 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.187 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.187 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.187 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.187 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.187 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.187 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.187 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.187 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.187 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.187 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.187 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.188 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.188 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.188 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.188 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.188 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.188 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.188 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.188 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.188 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.201 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.HttpApi.Client.plxsdumg7g.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bj1jtfcis3-{0}-plxsdumg7g-plxsdumg7g.gz' -2026-01-16 11:18:44.201 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.201 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.HttpApi.Client.plxsdumg7g.wasm - 200 123205 application/wasm 15.0135ms -2026-01-16 11:18:44.205 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.IdentityModel.ne3sh62c7z.wasm - null null -2026-01-16 11:18:44.205 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.206 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.206 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.206 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.206 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.206 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.206 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.206 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.206 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.206 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.206 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.206 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.206 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.207 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.220 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.IdentityModel.ne3sh62c7z.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6dvntei2gj-{0}-ne3sh62c7z-ne3sh62c7z.gz' -2026-01-16 11:18:44.220 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.220 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.IdentityModel.ne3sh62c7z.wasm - 200 32566 application/wasm 15.4342ms -2026-01-16 11:18:44.224 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.Abstractions.xb0dc1uslz.wasm - null null -2026-01-16 11:18:44.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.225 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.225 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.225 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.225 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.225 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.226 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.226 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.226 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.226 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.226 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.226 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.226 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.226 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.239 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.Abstractions.xb0dc1uslz.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kno3y6bjsa-{0}-xb0dc1uslz-xb0dc1uslz.gz' -2026-01-16 11:18:44.239 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.239 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.Abstractions.xb0dc1uslz.wasm - 200 4918 application/wasm 15.4204ms -2026-01-16 11:18:44.264 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.pnp959fij0.wasm - null null -2026-01-16 11:18:44.265 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.265 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.265 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.265 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.265 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.265 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.265 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.265 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.265 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.265 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.265 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.265 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.265 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.266 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.266 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.267 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.267 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.267 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.267 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.267 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.267 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.290 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.pnp959fij0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xxkqi4ckse-{0}-pnp959fij0-pnp959fij0.gz' -2026-01-16 11:18:44.290 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.290 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.pnp959fij0.wasm - 200 3894 application/wasm 25.655ms -2026-01-16 11:18:44.299 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.SystemTextJson.9pfgthge2g.wasm - null null -2026-01-16 11:18:44.300 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.300 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.300 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.300 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.300 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.300 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.300 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.300 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.300 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.300 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.300 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.300 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.300 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.300 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.300 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.300 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.300 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.300 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.300 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.300 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.301 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.341 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.SystemTextJson.9pfgthge2g.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\y6nmb5oill-{0}-9pfgthge2g-9pfgthge2g.gz' -2026-01-16 11:18:44.341 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.341 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.SystemTextJson.9pfgthge2g.wasm - 200 24374 application/wasm 42.4807ms -2026-01-16 11:18:44.347 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.Abstractions.olczjtqc1j.wasm - null null -2026-01-16 11:18:44.347 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.348 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.348 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.348 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.348 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.348 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.348 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.348 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.348 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.348 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.348 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.348 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.348 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.348 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.348 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.348 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.348 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.348 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.348 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.348 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.348 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.364 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Localization.Abstractions.olczjtqc1j.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6hzosd4d2z-{0}-olczjtqc1j-olczjtqc1j.gz' -2026-01-16 11:18:44.364 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.364 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.Abstractions.olczjtqc1j.wasm - 200 13622 application/wasm 17.1189ms -2026-01-16 11:18:44.367 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.i67lx3dg9t.wasm - null null -2026-01-16 11:18:44.368 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.368 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.368 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.368 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.368 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.368 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.368 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.368 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.369 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.369 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.369 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.369 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.369 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.369 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.369 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.369 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.369 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.369 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.369 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.369 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.369 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.384 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Localization.i67lx3dg9t.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\742lfcokyb-{0}-i67lx3dg9t-i67lx3dg9t.gz' -2026-01-16 11:18:44.384 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.384 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.i67lx3dg9t.wasm - 200 66880 application/wasm 16.5756ms -2026-01-16 11:18:44.388 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Mapperly.tjha8lqr01.wasm - null null -2026-01-16 11:18:44.388 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.388 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.388 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.388 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.388 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.388 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.388 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.388 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.389 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.389 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.389 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.389 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.389 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.389 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.389 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.389 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.389 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.402 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Mapperly.tjha8lqr01.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wlgf7ryjmc-{0}-tjha8lqr01-tjha8lqr01.gz' -2026-01-16 11:18:44.402 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.402 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Mapperly.tjha8lqr01.wasm - 200 18230 application/wasm 14.7265ms -2026-01-16 11:18:44.406 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Minify.lo7abix7jn.wasm - null null -2026-01-16 11:18:44.406 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.406 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.406 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.406 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.406 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.407 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.407 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.407 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.407 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.407 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.407 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.407 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.407 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.407 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.424 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Minify.lo7abix7jn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xo92mb2h1m-{0}-lo7abix7jn-lo7abix7jn.gz' -2026-01-16 11:18:44.424 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.424 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Minify.lo7abix7jn.wasm - 200 6966 application/wasm 18.3586ms -2026-01-16 11:18:44.431 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.Abstractions.phybhmx25i.wasm - null null -2026-01-16 11:18:44.433 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.433 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.433 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.433 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.433 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.433 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.433 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.433 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.433 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.433 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.433 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.433 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.433 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.433 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.433 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.433 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.433 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.433 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.433 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.433 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.434 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.453 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MultiTenancy.Abstractions.phybhmx25i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9h6hwofytn-{0}-phybhmx25i-phybhmx25i.gz' -2026-01-16 11:18:44.453 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.453 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.Abstractions.phybhmx25i.wasm - 200 26934 application/wasm 21.4389ms -2026-01-16 11:18:44.457 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.ilbjum73s1.wasm - null null -2026-01-16 11:18:44.458 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.458 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.458 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.458 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.458 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.458 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.458 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.458 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.458 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.458 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.458 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.458 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.458 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.459 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.459 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.459 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.459 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.459 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.459 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.459 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.459 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.474 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MultiTenancy.ilbjum73s1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\k4tu4vjqt3-{0}-ilbjum73s1-ilbjum73s1.gz' -2026-01-16 11:18:44.474 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.475 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.ilbjum73s1.wasm - 200 31542 application/wasm 17.8679ms -2026-01-16 11:18:44.479 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectExtending.xkxw5ywq2u.wasm - null null -2026-01-16 11:18:44.479 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.479 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.479 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.479 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.479 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.480 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.480 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.480 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.480 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.480 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.480 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.480 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.480 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.480 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.480 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.480 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.480 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.480 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.480 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.480 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.480 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.494 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ObjectExtending.xkxw5ywq2u.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3mtcgnfv0c-{0}-xkxw5ywq2u-xkxw5ywq2u.gz' -2026-01-16 11:18:44.494 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.494 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectExtending.xkxw5ywq2u.wasm - 200 48443 application/wasm 15.3344ms -2026-01-16 11:18:44.497 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectMapping.ufqopy12y4.wasm - null null -2026-01-16 11:18:44.498 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.498 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.498 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.498 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.498 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.498 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.498 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.498 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.498 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.498 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.498 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.498 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.498 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.498 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.498 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.498 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.498 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.498 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.498 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.498 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.498 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.512 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ObjectMapping.ufqopy12y4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\zesov8dx3n-{0}-ufqopy12y4-ufqopy12y4.gz' -2026-01-16 11:18:44.512 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.512 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectMapping.ufqopy12y4.wasm - 200 17206 application/wasm 14.7366ms -2026-01-16 11:18:44.515 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.OpenIddict.Domain.Shared.ept9w5ufhq.wasm - null null -2026-01-16 11:18:44.515 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.515 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.516 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.516 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.516 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.516 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.516 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.516 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.516 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.516 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.516 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.516 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.516 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.516 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.529 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.OpenIddict.Domain.Shared.ept9w5ufhq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\e9mit81pkr-{0}-ept9w5ufhq-ept9w5ufhq.gz' -2026-01-16 11:18:44.529 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.529 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.OpenIddict.Domain.Shared.ept9w5ufhq.wasm - 200 41275 application/wasm 14.0132ms -2026-01-16 11:18:44.532 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Application.Contracts.ihd8hyrzaj.wasm - null null -2026-01-16 11:18:44.533 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.533 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.533 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.533 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.533 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.533 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.533 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.533 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.533 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.533 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.533 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.533 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.533 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.533 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.533 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.533 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.533 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.533 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.533 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.533 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.533 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.547 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Application.Contracts.ihd8hyrzaj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\my5sja1gq5-{0}-ihd8hyrzaj-ihd8hyrzaj.gz' -2026-01-16 11:18:44.547 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.547 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Application.Contracts.ihd8hyrzaj.wasm - 200 14134 application/wasm 14.9943ms -2026-01-16 11:18:44.550 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.v61ue0ybxl.wasm - null null -2026-01-16 11:18:44.551 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.551 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.551 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.551 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.551 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.551 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.552 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.552 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.552 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.552 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.552 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.552 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.552 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.552 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.552 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.566 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Blazor.v61ue0ybxl.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\yyrmustgj2-{0}-v61ue0ybxl-v61ue0ybxl.gz' -2026-01-16 11:18:44.566 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.566 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.v61ue0ybxl.wasm - 200 78656 application/wasm 15.6874ms -2026-01-16 11:18:44.570 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.WebAssembly.ta15fbtaxb.wasm - null null -2026-01-16 11:18:44.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.571 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.571 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.571 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.571 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.571 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.571 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.571 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.571 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.571 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.582 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Blazor.WebAssembly.ta15fbtaxb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tlpod9jcj5-{0}-ta15fbtaxb-ta15fbtaxb.gz' -2026-01-16 11:18:44.582 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.582 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.WebAssembly.ta15fbtaxb.wasm - 200 5430 application/wasm 12.5923ms -2026-01-16 11:18:44.586 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Domain.Shared.dp67lx65bv.wasm - null null -2026-01-16 11:18:44.586 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.586 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.586 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.586 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.586 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.587 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.587 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.587 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.587 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.587 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.587 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.587 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.587 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.587 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.587 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.587 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.587 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.587 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.587 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.587 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.587 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.600 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Domain.Shared.dp67lx65bv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\yzrsadtuc3-{0}-dp67lx65bv-dp67lx65bv.gz' -2026-01-16 11:18:44.600 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.600 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Domain.Shared.dp67lx65bv.wasm - 200 59195 application/wasm 14.73ms -2026-01-16 11:18:44.604 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.HttpApi.Client.52y0vooa2b.wasm - null null -2026-01-16 11:18:44.604 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.604 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.605 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.605 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.605 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.605 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.605 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.605 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.605 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.605 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.605 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.605 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.605 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.605 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.605 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.605 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.605 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.605 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.605 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.605 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.605 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.620 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.HttpApi.Client.52y0vooa2b.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\oo1t1rirr3-{0}-52y0vooa2b-52y0vooa2b.gz' -2026-01-16 11:18:44.620 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.620 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.HttpApi.Client.52y0vooa2b.wasm - 200 68416 application/wasm 15.9866ms -2026-01-16 11:18:44.624 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.RemoteServices.4mwmbxh6wc.wasm - null null -2026-01-16 11:18:44.624 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.624 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.624 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.624 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.624 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.624 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.624 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.624 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.624 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.624 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.624 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.624 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.624 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.625 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.625 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.625 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.625 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.625 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.625 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.625 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.625 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.639 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.RemoteServices.4mwmbxh6wc.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fxolomud6k-{0}-4mwmbxh6wc-4mwmbxh6wc.gz' -2026-01-16 11:18:44.639 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.639 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.RemoteServices.4mwmbxh6wc.wasm - 200 11574 application/wasm 15.7184ms -2026-01-16 11:18:44.642 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Security.631iyyll7y.wasm - null null -2026-01-16 11:18:44.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.643 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.643 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.643 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.643 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.643 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.643 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.643 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.643 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.643 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.643 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.643 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.643 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.643 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.658 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Security.631iyyll7y.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3330bn9dpa-{0}-631iyyll7y-631iyyll7y.gz' -2026-01-16 11:18:44.658 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.658 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Security.631iyyll7y.wasm - 200 48955 application/wasm 15.7352ms -2026-01-16 11:18:44.661 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Serialization.mcwfwlxjtc.wasm - null null -2026-01-16 11:18:44.662 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.662 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.662 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.662 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.662 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.662 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.662 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.662 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.662 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.662 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.662 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.662 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.662 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.662 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.662 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.662 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.662 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.662 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.662 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.662 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.663 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.675 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Serialization.mcwfwlxjtc.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jm5tzubbmd-{0}-mcwfwlxjtc-mcwfwlxjtc.gz' -2026-01-16 11:18:44.675 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.675 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Serialization.mcwfwlxjtc.wasm - 200 6966 application/wasm 13.6467ms -2026-01-16 11:18:44.678 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Application.Contracts.m9cszjvkq4.wasm - null null -2026-01-16 11:18:44.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.679 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.679 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.679 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.679 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.679 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.679 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.679 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.679 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.680 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.693 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Application.Contracts.m9cszjvkq4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sa63frt88b-{0}-m9cszjvkq4-m9cszjvkq4.gz' -2026-01-16 11:18:44.694 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.694 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Application.Contracts.m9cszjvkq4.wasm - 200 14134 application/wasm 15.3395ms -2026-01-16 11:18:44.696 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.9ouzngi5xt.wasm - null null -2026-01-16 11:18:44.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.697 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.697 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.697 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.697 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.697 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.698 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.698 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.698 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.698 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.698 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.698 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.698 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.698 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.712 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Blazor.9ouzngi5xt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\o3t7gsk43d-{0}-9ouzngi5xt-9ouzngi5xt.gz' -2026-01-16 11:18:44.712 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.712 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.9ouzngi5xt.wasm - 200 64827 application/wasm 15.9671ms -2026-01-16 11:18:44.715 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.WebAssembly.66kpp2xe1w.wasm - null null -2026-01-16 11:18:44.716 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.716 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.716 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.716 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.716 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.716 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.716 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.716 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.716 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.716 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.716 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.716 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.716 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.716 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.716 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.716 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.716 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.716 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.716 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.716 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.717 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.730 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Blazor.WebAssembly.66kpp2xe1w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6idcgz9ch1-{0}-66kpp2xe1w-66kpp2xe1w.gz' -2026-01-16 11:18:44.730 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.730 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.WebAssembly.66kpp2xe1w.wasm - 200 5430 application/wasm 14.6973ms -2026-01-16 11:18:44.733 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Domain.Shared.1io4tqsn7k.wasm - null null -2026-01-16 11:18:44.734 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.734 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.734 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.734 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.734 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.734 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.734 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.734 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.734 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.734 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.734 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.734 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.734 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.735 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.735 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.735 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.735 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.735 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.735 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.735 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.735 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.749 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Domain.Shared.1io4tqsn7k.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\a9lyefc7q1-{0}-1io4tqsn7k-1io4tqsn7k.gz' -2026-01-16 11:18:44.749 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.749 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Domain.Shared.1io4tqsn7k.wasm - 200 86336 application/wasm 15.3958ms -2026-01-16 11:18:44.753 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.HttpApi.Client.xe9mymnwdz.wasm - null null -2026-01-16 11:18:44.753 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.753 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.753 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.753 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.753 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.753 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.753 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.753 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.753 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.753 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.753 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.753 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.754 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.754 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.754 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.754 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.754 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.754 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.754 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.754 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.754 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.768 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.HttpApi.Client.xe9mymnwdz.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ivgy4mp33s-{0}-xe9mymnwdz-xe9mymnwdz.gz' -2026-01-16 11:18:44.768 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.768 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.HttpApi.Client.xe9mymnwdz.wasm - 200 23862 application/wasm 15.099ms -2026-01-16 11:18:44.772 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Settings.wyqvmj5hzl.wasm - null null -2026-01-16 11:18:44.773 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.773 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.773 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.773 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.773 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.773 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.773 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.773 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.773 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.773 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.773 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.773 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.773 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.773 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.773 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.773 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.773 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.773 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.773 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.773 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.773 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.786 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Settings.wyqvmj5hzl.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bgt33y9v4t-{0}-wyqvmj5hzl-wyqvmj5hzl.gz' -2026-01-16 11:18:44.786 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.786 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Settings.wyqvmj5hzl.wasm - 200 40763 application/wasm 14.4742ms -2026-01-16 11:18:44.790 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Application.Contracts.ygbs0mhsr6.wasm - null null -2026-01-16 11:18:44.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.791 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.791 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.791 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.791 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.791 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.791 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.791 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.791 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.791 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.791 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.791 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.791 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.791 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.804 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Application.Contracts.ygbs0mhsr6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c16tsznfvz-{0}-ygbs0mhsr6-ygbs0mhsr6.gz' -2026-01-16 11:18:44.804 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.804 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Application.Contracts.ygbs0mhsr6.wasm - 200 12086 application/wasm 13.641ms -2026-01-16 11:18:44.807 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.gd3eudic6u.wasm - null null -2026-01-16 11:18:44.808 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.808 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.808 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.808 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.808 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.808 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.808 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.808 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.808 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.808 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.808 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.808 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.808 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.808 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.808 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.808 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.808 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.808 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.808 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.808 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.809 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.824 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Blazor.gd3eudic6u.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\w9s02i9mfm-{0}-gd3eudic6u-gd3eudic6u.gz' -2026-01-16 11:18:44.824 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.825 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.gd3eudic6u.wasm - 200 35131 application/wasm 17.2884ms -2026-01-16 11:18:44.837 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.WebAssembly.gd0ne5huhq.wasm - null null -2026-01-16 11:18:44.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.838 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.838 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.838 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.838 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.838 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.839 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.839 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.839 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.839 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.839 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.839 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.839 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.839 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.864 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Blazor.WebAssembly.gd0ne5huhq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ddnrcas9h4-{0}-gd0ne5huhq-gd0ne5huhq.gz' -2026-01-16 11:18:44.865 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.865 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.WebAssembly.gd0ne5huhq.wasm - 200 5430 application/wasm 27.7946ms -2026-01-16 11:18:44.869 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Domain.Shared.srlzqit33k.wasm - null null -2026-01-16 11:18:44.870 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.870 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.870 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.870 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.870 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.870 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.870 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.870 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.870 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.870 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.870 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.870 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.870 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.871 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.871 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.871 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.871 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.871 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.871 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.871 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.871 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.886 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Domain.Shared.srlzqit33k.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\so2apr0f18-{0}-srlzqit33k-srlzqit33k.gz' -2026-01-16 11:18:44.886 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.886 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Domain.Shared.srlzqit33k.wasm - 200 44347 application/wasm 17.1226ms -2026-01-16 11:18:44.894 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.HttpApi.Client.d2pijqfx1p.wasm - null null -2026-01-16 11:18:44.894 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.894 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.894 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.894 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.894 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.895 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.895 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.895 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.895 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.895 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.895 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.895 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.895 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.895 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.910 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.HttpApi.Client.d2pijqfx1p.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\imelthvwfz-{0}-d2pijqfx1p-d2pijqfx1p.gz' -2026-01-16 11:18:44.910 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.910 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.HttpApi.Client.d2pijqfx1p.wasm - 200 37179 application/wasm 16.201ms -2026-01-16 11:18:44.914 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Threading.d66hw237g4.wasm - null null -2026-01-16 11:18:44.915 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.915 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.915 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.915 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.915 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.915 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.915 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.915 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.915 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.915 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.915 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.915 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.915 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.915 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.915 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.915 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.915 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.915 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.915 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.915 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.916 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.931 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Threading.d66hw237g4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bipe9d19v0-{0}-d66hw237g4-d66hw237g4.gz' -2026-01-16 11:18:44.931 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.931 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Threading.d66hw237g4.wasm - 200 34619 application/wasm 16.7492ms -2026-01-16 11:18:44.935 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Timing.g07dqr03za.wasm - null null -2026-01-16 11:18:44.935 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.936 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.936 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.936 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.936 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.936 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.936 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.936 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.936 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.936 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.936 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.936 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.936 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.936 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.936 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.936 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.936 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.936 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.936 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.936 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.936 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.951 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Timing.g07dqr03za.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\k5ucu0dgya-{0}-g07dqr03za-g07dqr03za.gz' -2026-01-16 11:18:44.951 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.951 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Timing.g07dqr03za.wasm - 200 19766 application/wasm 16.3018ms -2026-01-16 11:18:44.956 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.72n9motsm6.wasm - null null -2026-01-16 11:18:44.956 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.956 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.956 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.956 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.956 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.957 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.957 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.957 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.957 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.957 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.957 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.957 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.957 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.957 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.971 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.UI.72n9motsm6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pq6xwwf7om-{0}-72n9motsm6-72n9motsm6.gz' -2026-01-16 11:18:44.971 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.971 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.72n9motsm6.wasm - 200 83776 application/wasm 15.5608ms -2026-01-16 11:18:44.976 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.Navigation.aser3kjl5e.wasm - null null -2026-01-16 11:18:44.976 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.976 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:44.977 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:44.977 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:44.977 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.977 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:44.977 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:44.977 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:44.977 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:44.977 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:44.977 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.977 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:44.977 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:44.977 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:44.977 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:44.977 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:44.977 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:44.977 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:44.977 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:44.977 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:44.977 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.991 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.UI.Navigation.aser3kjl5e.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9g5ljk4lon-{0}-aser3kjl5e-aser3kjl5e.gz' -2026-01-16 11:18:44.991 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:44.991 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.Navigation.aser3kjl5e.wasm - 200 40763 application/wasm 14.9368ms -2026-01-16 11:18:45.001 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Uow.muvacr9n86.wasm - null null -2026-01-16 11:18:45.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:45.002 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:45.002 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:45.002 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:45.002 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:45.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:45.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:45.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:45.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:45.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:45.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:45.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:45.002 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:45.002 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:45.002 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:45.002 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:45.002 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:45.002 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:45.002 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:45.002 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:45.003 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:45.017 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Uow.muvacr9n86.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ilu4fbxe2e-{0}-muvacr9n86-muvacr9n86.gz' -2026-01-16 11:18:45.018 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:45.018 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Uow.muvacr9n86.wasm - 200 39227 application/wasm 16.4891ms -2026-01-16 11:18:45.022 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Abstractions.75ke78vuqe.wasm - null null -2026-01-16 11:18:45.023 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:45.023 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:45.023 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:45.023 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:45.023 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:45.023 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:45.023 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:45.023 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:45.023 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:45.023 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:45.023 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:45.023 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:45.023 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:45.023 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:45.023 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:45.023 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:45.023 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:45.023 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:45.023 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:45.023 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:45.023 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:45.039 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Users.Abstractions.75ke78vuqe.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jyt2zu3ttz-{0}-75ke78vuqe-75ke78vuqe.gz' -2026-01-16 11:18:45.039 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:45.039 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Abstractions.75ke78vuqe.wasm - 200 11062 application/wasm 17.7648ms -2026-01-16 11:18:45.043 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Domain.Shared.9xfqx4eagm.wasm - null null -2026-01-16 11:18:45.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:45.044 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:45.044 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:45.044 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:45.044 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:45.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:45.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:45.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:45.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:45.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:45.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:45.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:45.044 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:45.045 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:45.045 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:45.045 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:45.045 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:45.045 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:45.045 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:45.045 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:45.045 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:45.060 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Users.Domain.Shared.9xfqx4eagm.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8bcoe6ftg7-{0}-9xfqx4eagm-9xfqx4eagm.gz' -2026-01-16 11:18:45.060 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:45.060 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Domain.Shared.9xfqx4eagm.wasm - 200 4918 application/wasm 16.7869ms -2026-01-16 11:18:45.063 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.Abstractions.pdgirsrcy7.wasm - null null -2026-01-16 11:18:45.064 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:45.064 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:45.064 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:45.064 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:45.064 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:45.064 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:45.064 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:45.064 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:45.064 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:45.064 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:45.064 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:45.064 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:45.064 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:45.064 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:45.064 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:45.064 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:45.064 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:45.064 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:45.064 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:45.064 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:45.064 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:45.079 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Validation.Abstractions.pdgirsrcy7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gd6ojlvfcf-{0}-pdgirsrcy7-pdgirsrcy7.gz' -2026-01-16 11:18:45.079 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:45.079 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.Abstractions.pdgirsrcy7.wasm - 200 6966 application/wasm 15.9863ms -2026-01-16 11:18:45.083 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.cw8rp94akf.wasm - null null -2026-01-16 11:18:45.083 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:45.083 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:45.083 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:45.083 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:45.083 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:45.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:45.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:45.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:45.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:45.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:45.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:45.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:45.084 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:45.084 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:45.084 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:45.084 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:45.084 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:45.084 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:45.084 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:45.084 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:45.084 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:45.100 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Validation.cw8rp94akf.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2i0haqeq52-{0}-cw8rp94akf-cw8rp94akf.gz' -2026-01-16 11:18:45.100 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:45.100 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.cw8rp94akf.wasm - 200 133962 application/wasm 17.3986ms -2026-01-16 11:18:45.104 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.VirtualFileSystem.yczg6coj9s.wasm - null null -2026-01-16 11:18:45.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:45.105 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:45.105 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:45.105 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:45.105 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:45.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:45.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:45.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:45.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:45.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:45.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:45.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:45.105 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:45.106 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:45.106 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:45.106 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:45.106 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:45.106 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:45.106 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:45.106 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:45.106 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:45.120 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.VirtualFileSystem.yczg6coj9s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\oikj36ifzq-{0}-yczg6coj9s-yczg6coj9s.gz' -2026-01-16 11:18:45.120 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:45.120 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.VirtualFileSystem.yczg6coj9s.wasm - 200 21302 application/wasm 16.0627ms -2026-01-16 11:18:45.124 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.a6alvvd27g.wasm - null null -2026-01-16 11:18:45.125 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:45.125 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:45.125 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:45.125 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:45.125 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:45.125 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:45.125 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:45.125 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:45.125 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:45.125 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:45.125 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:45.125 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:45.125 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:45.125 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:45.125 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:45.126 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:45.126 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:45.126 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:45.126 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:45.126 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:45.126 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:45.140 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.a6alvvd27g.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b9vq30g1vb-{0}-a6alvvd27g-a6alvvd27g.gz' -2026-01-16 11:18:45.140 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:45.140 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.a6alvvd27g.wasm - 200 38715 application/wasm 16.0523ms -2026-01-16 11:18:45.144 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/icudt.oh1zvcfom8.dat - null null -2026-01-16 11:18:45.144 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:45.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:45.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:45.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:45.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:45.144 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:45.144 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:45.144 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:45.144 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:45.144 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:45.144 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:45.144 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:45.144 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:45.145 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:45.145 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:45.145 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:45.145 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:45.145 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:45.145 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:45.145 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:45.145 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:45.159 +03:00 [INF] Sending file. Request path: '_framework/icudt.oh1zvcfom8.dat'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\augfne4vvr-{0}-oh1zvcfom8-oh1zvcfom8.gz' -2026-01-16 11:18:45.160 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:45.160 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/icudt.oh1zvcfom8.dat - 200 492472 application/octet-stream 15.723ms -2026-01-16 11:18:45.163 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/appsettings.Development.json - null null -2026-01-16 11:18:45.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:45.164 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:45.164 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:45.164 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:45.164 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:45.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:45.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:45.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:45.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:45.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:45.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:45.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:45.164 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:45.164 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:45.164 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:45.165 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:45.165 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:45.165 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:45.165 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:45.165 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:45.165 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:45.165 +03:00 [INF] Sending file. Request path: 'appsettings.Development.json'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5yh5mvb6m0-{0}-qygrwjo5h3-qygrwjo5h3.gz' -2026-01-16 11:18:45.165 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:45.165 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/appsettings.Development.json - 200 41 application/json 1.7569ms -2026-01-16 11:18:45.173 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/appsettings.json - null null -2026-01-16 11:18:45.174 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:45.174 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:45.174 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:45.174 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:45.174 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:45.174 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:45.174 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:45.174 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:45.174 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:45.174 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:45.174 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:45.174 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:45.174 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:45.174 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:45.174 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:45.174 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:45.174 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:45.174 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:45.174 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:45.174 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:45.174 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:45.175 +03:00 [INF] Sending file. Request path: 'appsettings.json'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\apuwzph3tz-{0}-b8hf2s338i-b8hf2s338i.gz' -2026-01-16 11:18:45.175 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:45.175 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/appsettings.json - 200 136 application/json 2.1023ms -2026-01-16 11:18:51.003 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2026-01-16 11:18:51.003 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2026-01-16 11:18:51.034 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Account/Login - null null -2026-01-16 11:18:51.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:51.035 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:51.035 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:51.035 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:51.035 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:51.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:51.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:51.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:51.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:51.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:51.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:51.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:51.035 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:51.036 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:51.036 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:51.036 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:51.036 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:51.036 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:51.036 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:51.036 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:51.036 +03:00 [INF] Executing endpoint '/Account/Login' -2026-01-16 11:18:51.100 +03:00 [INF] Route matched with {page = "/Account/Login", area = "", action = "", controller = ""}. Executing page /Account/Login -2026-01-16 11:18:51.103 +03:00 [INF] Skipping the execution of current filter as its not the most effective filter implementing the policy Microsoft.AspNetCore.Mvc.ViewFeatures.IAntiforgeryPolicy -2026-01-16 11:18:51.641 +03:00 [INF] Executing handler method Volo.Abp.Account.Web.Pages.Account.LoginModel.OnGetAsync - ModelState is "Valid" -2026-01-16 11:18:51.649 +03:00 [INF] Executed handler method OnGetAsync, returned result Microsoft.AspNetCore.Mvc.RazorPages.PageResult. -2026-01-16 11:18:52.003 +03:00 [DBG] Added bundle 'LeptonXLite.Global' to the page in 10.40 ms. -2026-01-16 11:18:52.049 +03:00 [DBG] Added bundle 'LeptonXLite.Global' to the page in 11.20 ms. -2026-01-16 11:18:52.069 +03:00 [DBG] Added bundle 'Volo.Abp.Account.Web.Pages.Account.LoginModel' to the page in 0.89 ms. -2026-01-16 11:18:52.078 +03:00 [INF] Executed page /Account/Login in 972.947ms -2026-01-16 11:18:52.078 +03:00 [INF] Executed endpoint '/Account/Login' -2026-01-16 11:18:52.079 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44308/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundaryMPDAA49Km7jIExM6 359 -2026-01-16 11:18:52.080 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Account/Login - 200 null text/html; charset=utf-8 1046.2169ms -2026-01-16 11:18:52.081 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.081 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.081 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.081 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.081 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.081 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.081 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.081 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.081 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.081 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.081 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.081 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.081 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.081 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.081 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.081 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.081 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.081 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.081 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.081 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.081 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.093 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.093 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44308/_blazor?id=XkNejh4vL1AwZzwjMYt63Q - 200 null null 16169.6506ms -2026-01-16 11:18:52.101 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.101 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44308/_blazor/disconnect - 200 0 null 21.6683ms -2026-01-16 11:18:52.116 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/core/abp.css?_v=639041476857650000 - null null -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.117 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/bootstrap-dim.css?_v=638990734800000000 - null null -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.117 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/all.css?_v=638968205522840000 - null null -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.117 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/v4-shims.css?_v=638968205522840000 - null null -2026-01-16 11:18:52.117 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.css?_v=637835286147460000 - null null -2026-01-16 11:18:52.117 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/select2/css/select2.min.css?_v=637835286139320000 - null null -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.117 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.117 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/datatables.net-bs5/css/dataTables.bootstrap5.css?_v=639025851390870000 - null null -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.117 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/bootstrap-datepicker/bootstrap-datepicker.min.css?_v=638943829436550000 - null null -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.117 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.117 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.117 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.117 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.117 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.117 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.117 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.117 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.117 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.118 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.118 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.118 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.118 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.118 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.118 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.118 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.118 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.118 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.118 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.118 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.118 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.118 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.118 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/bootstrap-daterangepicker/daterangepicker.css?_v=637835518693970000 - null null -2026-01-16 11:18:52.118 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.118 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.118 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.118 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.118 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.118 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.118 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.118 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=639041473801520701 - null null -2026-01-16 11:18:52.118 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.118 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.118 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.118 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.118 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.118 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.118 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.118 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.118 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.118 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.118 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.118 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.118 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.118 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.118 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.118 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.118 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.118 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.118 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.118 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.118 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.118 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.118 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.118 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.118 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.118 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.118 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.118 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.118 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.118 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.118 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.119 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.119 +03:00 [INF] Sending file. Request path: 'libs/abp/core/abp.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\534um4fsdt-{0}-6vev71rwdm-6vev71rwdm.gz' -2026-01-16 11:18:52.119 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.119 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/core/abp.css?_v=639041476857650000 - 200 1364 text/css 2.6851ms -2026-01-16 11:18:52.119 +03:00 [INF] Sending file. Request path: 'libs/bootstrap-datepicker/bootstrap-datepicker.min.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\c98qwcv8t9-{0}-hv5fnth7pn-hv5fnth7pn.gz' -2026-01-16 11:18:52.119 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.119 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\dfuwed8qp2-{0}-9fxst9u6yk-9fxst9u6yk.gz' -2026-01-16 11:18:52.119 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.120 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/v4-shims.css?_v=638968205522840000 - 200 38549 text/css 2.5464ms -2026-01-16 11:18:52.120 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/bootstrap-datepicker/bootstrap-datepicker.min.css?_v=638943829436550000 - 200 15767 text/css 2.2327ms -2026-01-16 11:18:52.120 +03:00 [INF] Sending file. Request path: 'libs/select2/css/select2.min.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\6ddblemzii-{0}-ntg7hq0exj-ntg7hq0exj.gz' -2026-01-16 11:18:52.120 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.120 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/select2/css/select2.min.css?_v=637835286139320000 - 200 14999 text/css 2.8035ms -2026-01-16 11:18:52.120 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/date-range-picker/date-range-picker-styles.css?_v=639041473801520701 - null null -2026-01-16 11:18:52.120 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/toast/abp-toast.css?_v=639041473801520701 - null null -2026-01-16 11:18:52.120 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/js-bundle.css?_v=638990734800000000 - null null -2026-01-16 11:18:52.120 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/layout-bundle.css?_v=638990734800000000 - null null -2026-01-16 11:18:52.120 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/abp-bundle.css?_v=638990734800000000 - null null -2026-01-16 11:18:52.120 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css?_v=638990734800000000 - null null -2026-01-16 11:18:52.120 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/font-bundle.css?_v=638990734800000000 - null null -2026-01-16 11:18:52.120 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/global-styles.css?_v=638470534679988073 - null null -2026-01-16 11:18:52.120 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toast/abp-toast.css'. Physical path: 'N/A' -2026-01-16 11:18:52.120 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/date-range-picker/date-range-picker-styles.css'. Physical path: 'N/A' -2026-01-16 11:18:52.120 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/toast/abp-toast.css?_v=639041473801520701 - 200 2617 text/css 0.373ms -2026-01-16 11:18:52.120 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/date-range-picker/date-range-picker-styles.css?_v=639041473801520701 - 200 338 text/css 0.3967ms -2026-01-16 11:18:52.120 +03:00 [INF] Sending file. Request path: '/Themes/LeptonXLite/Global/side-menu/css/font-bundle.css'. Physical path: 'N/A' -2026-01-16 11:18:52.120 +03:00 [INF] Sending file. Request path: '/Themes/LeptonXLite/Global/side-menu/css/abp-bundle.css'. Physical path: 'N/A' -2026-01-16 11:18:52.120 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/abp-bundle.css?_v=638990734800000000 - 200 3404 text/css 0.4361ms -2026-01-16 11:18:52.120 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/font-bundle.css?_v=638990734800000000 - 200 127 text/css 0.3871ms -2026-01-16 11:18:52.121 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.121 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.121 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.121 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.121 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.121 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.121 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.121 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.121 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.121 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.121 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.121 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.121 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.121 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.121 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.121 +03:00 [INF] Sending file. Request path: '/Themes/LeptonXLite/Global/side-menu/css/js-bundle.css'. Physical path: 'N/A' -2026-01-16 11:18:52.121 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.121 +03:00 [INF] Sending file. Request path: '/Themes/LeptonXLite/Global/side-menu/css/layout-bundle.css'. Physical path: 'N/A' -2026-01-16 11:18:52.121 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.121 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.121 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/js-bundle.css?_v=638990734800000000 - 200 31862 text/css 1.343ms -2026-01-16 11:18:52.121 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/layout-bundle.css?_v=638990734800000000 - 200 31589 text/css 1.2866ms -2026-01-16 11:18:52.121 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.121 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.121 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.122 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/core/abp.js?_v=639041476857650000 - null null -2026-01-16 11:18:52.122 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/utils/abp-utils.umd.min.js?_v=639041476859130000 - null null -2026-01-16 11:18:52.122 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/jquery/jquery.js?_v=638295801311220000 - null null -2026-01-16 11:18:52.122 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/bootstrap/js/bootstrap.bundle.js?_v=638923938477090000 - null null -2026-01-16 11:18:52.122 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/lodash/lodash.min.js?_v=637828567252040000 - null null -2026-01-16 11:18:52.122 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/jquery/abp.jquery.js?_v=639041476858690000 - null null -2026-01-16 11:18:52.122 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/jquery-validation/jquery.validate.js?_v=638573368847010000 - null null -2026-01-16 11:18:52.122 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/jquery-validation/abp.jquery.validate.js?_v=639041476858490000 - null null -2026-01-16 11:18:52.122 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=638618042615640000 - null null -2026-01-16 11:18:52.122 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/jquery-form/jquery.form.min.js?_v=639041476855950000 - null null -2026-01-16 11:18:52.122 +03:00 [INF] Sending file. Request path: 'global-styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\rh9y3nvfnm-{0}-bbfo2klxrw-bbfo2klxrw.gz' -2026-01-16 11:18:52.122 +03:00 [INF] Sending file. Request path: '/Themes/LeptonXLite/Global/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css'. Physical path: 'N/A' -2026-01-16 11:18:52.122 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.122 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css?_v=638990734800000000 - 200 74827 text/css 2.0541ms -2026-01-16 11:18:52.122 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/global-styles.css?_v=638470534679988073 - 200 284 text/css 1.985ms -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.122 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/select2/js/select2.min.js?_v=637835286139320000 - null null -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.122 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/datatables.net/js/dataTables.min.js?_v=639025851391010000 - null null -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.122 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/datatables.net-bs5/js/dataTables.bootstrap5.js?_v=639025851390870000 - null null -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.123 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.123 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.123 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.123 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.123 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.123 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.123 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.123 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.123 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.123 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.123 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.123 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.123 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.123 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.123 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.123 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.123 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.123 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.123 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.123 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.123 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.123 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.123 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.123 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.123 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.123 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.123 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.123 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.123 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.123 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.123 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.123 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.123 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.123 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.123 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.123 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.123 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.123 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.123 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.123 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.123 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.123 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.123 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.124 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.124 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.124 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.124 +03:00 [INF] Sending file. Request path: 'libs/jquery-validation/abp.jquery.validate.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\3rhuerw7zy-{0}-2j57wpbqm1-2j57wpbqm1.gz' -2026-01-16 11:18:52.124 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.124 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.124 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.124 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.124 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/jquery-validation/abp.jquery.validate.js?_v=639041476858490000 - 200 1112 text/javascript 1.9371ms -2026-01-16 11:18:52.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.124 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.124 +03:00 [INF] Sending file. Request path: 'libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\iw8c7uyrum-{0}-5izpmmkl7p-5izpmmkl7p.gz' -2026-01-16 11:18:52.124 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.124 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.124 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.124 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.124 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.124 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.124 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.124 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.124 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/jquery-form/jquery.form.min.js?_v=639041476855950000 - 200 17272 text/javascript 2.1231ms -2026-01-16 11:18:52.124 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.125 +03:00 [INF] Sending file. Request path: 'libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\k1ag48znrx-{0}-03hjc8e09r-03hjc8e09r.gz' -2026-01-16 11:18:52.125 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.125 +03:00 [INF] Sending file. Request path: 'libs/abp/utils/abp-utils.umd.min.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\2xes1zqzum-{0}-1plsh89gne-1plsh89gne.gz' -2026-01-16 11:18:52.125 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.125 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=638618042615640000 - 200 19853 text/javascript 2.5758ms -2026-01-16 11:18:52.125 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/utils/abp-utils.umd.min.js?_v=639041476859130000 - 200 8289 text/javascript 2.8558ms -2026-01-16 11:18:52.125 +03:00 [INF] Sending file. Request path: 'libs/lodash/lodash.min.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\kh3ishgkcb-{0}-rz1laysvml-rz1laysvml.gz' -2026-01-16 11:18:52.125 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.125 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/lodash/lodash.min.js?_v=637828567252040000 - 200 73058 text/javascript 3.0802ms -2026-01-16 11:18:52.125 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.125 +03:00 [INF] Sending file. Request path: 'libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\p9tzeo4w7c-{0}-lzl9nlhx6b-lzl9nlhx6b.gz' -2026-01-16 11:18:52.125 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.125 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/jquery-validation/jquery.validate.js?_v=638573368847010000 - 200 52574 text/javascript 3.0489ms -2026-01-16 11:18:52.125 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.125 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.125 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.125 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.125 +03:00 [INF] Sending file. Request path: 'libs/datatables.net-bs5/js/dataTables.bootstrap5.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\y34m7vvgpw-{0}-fjtml3ocfn-fjtml3ocfn.gz' -2026-01-16 11:18:52.125 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.125 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.125 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.125 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.125 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.125 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.125 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.125 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.125 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/datatables.net-bs5/js/dataTables.bootstrap5.js?_v=639025851390870000 - 200 2753 text/javascript 2.7033ms -2026-01-16 11:18:52.125 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.125 +03:00 [INF] Sending file. Request path: 'libs/select2/js/select2.min.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\vef1b9uiuu-{0}-o2erkrdy46-o2erkrdy46.gz' -2026-01-16 11:18:52.125 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.125 +03:00 [INF] Sending file. Request path: 'libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\el31oe83w7-{0}-i3t0b6nabn-i3t0b6nabn.gz' -2026-01-16 11:18:52.125 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.125 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/jquery/abp.jquery.js?_v=639041476858690000 - 200 13522 text/javascript 3.4683ms -2026-01-16 11:18:52.125 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/select2/js/select2.min.js?_v=637835286139320000 - 200 70894 text/javascript 3.015ms -2026-01-16 11:18:52.125 +03:00 [INF] Sending file. Request path: '/Themes/LeptonXLite/Global/side-menu/css/bootstrap-dim.css'. Physical path: 'N/A' -2026-01-16 11:18:52.125 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/bootstrap-dim.css?_v=638990734800000000 - 200 308278 text/css 8.5537ms -2026-01-16 11:18:52.125 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.125 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.125 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.125 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.125 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.125 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.125 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.126 +03:00 [INF] Sending file. Request path: 'libs/datatables.net/js/dataTables.min.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\z4z2wuj3dd-{0}-q2gjyqvun4-q2gjyqvun4.gz' -2026-01-16 11:18:52.126 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.126 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.126 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/datatables.net/js/dataTables.min.js?_v=639025851391010000 - 200 98638 text/javascript 3.1256ms -2026-01-16 11:18:52.126 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'N/A' -2026-01-16 11:18:52.126 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.126 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.126 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=639041473801520701 - 200 385 text/css 8.1706ms -2026-01-16 11:18:52.126 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.126 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.126 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.126 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.126 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.126 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.126 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.126 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.126 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.126 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.126 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.126 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.126 +03:00 [INF] Sending file. Request path: 'libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\7cp36y0v43-{0}-lhbtj9850u-lhbtj9850u.gz' -2026-01-16 11:18:52.126 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.126 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/bootstrap/js/bootstrap.bundle.js?_v=638923938477090000 - 200 207899 text/javascript 4.5697ms -2026-01-16 11:18:52.127 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.127 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.127 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.127 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.127 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.127 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.127 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.127 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.127 +03:00 [INF] Sending file. Request path: 'libs/jquery/jquery.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\r8qytf4xyk-{0}-0i3buxo5is-0i3buxo5is.gz' -2026-01-16 11:18:52.127 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.127 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/jquery/jquery.js?_v=638295801311220000 - 200 285387 text/javascript 5.111ms -2026-01-16 11:18:52.127 +03:00 [INF] Sending file. Request path: 'libs/abp/core/abp.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\4ilyb8mtdv-{0}-it4x7zpaq1-it4x7zpaq1.gz' -2026-01-16 11:18:52.127 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.127 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/core/abp.js?_v=639041476857650000 - 200 27898 text/javascript 5.1641ms -2026-01-16 11:18:52.127 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\0vulsgakzi-{0}-2ej0o14t5y-2ej0o14t5y.gz' -2026-01-16 11:18:52.127 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.127 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/all.css?_v=638968205522840000 - 200 110162 text/css 10.2275ms -2026-01-16 11:18:52.127 +03:00 [INF] Sending file. Request path: 'libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\14u3fu9aq9-{0}-p8jqw3ap0f-p8jqw3ap0f.gz' -2026-01-16 11:18:52.127 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.127 +03:00 [INF] Sending file. Request path: 'libs/datatables.net-bs5/css/dataTables.bootstrap5.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\2vxqr2b34z-{0}-ln8ra2a4gr-ln8ra2a4gr.gz' -2026-01-16 11:18:52.127 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.127 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.css?_v=637835286147460000 - 200 54888 text/css 10.3106ms -2026-01-16 11:18:52.127 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/datatables.net-bs5/css/dataTables.bootstrap5.css?_v=639025851390870000 - 200 21614 text/css 10.0521ms -2026-01-16 11:18:52.127 +03:00 [INF] Sending file. Request path: 'libs/bootstrap-daterangepicker/daterangepicker.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\z8ryymhgcw-{0}-85vbs1dise-85vbs1dise.gz' -2026-01-16 11:18:52.127 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.127 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/bootstrap-daterangepicker/daterangepicker.css?_v=637835518693970000 - 200 8102 text/css 9.6872ms -2026-01-16 11:18:52.128 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/sweetalert2/sweetalert2.all.min.js?_v=639020092555030000 - null null -2026-01-16 11:18:52.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.129 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.129 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.129 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.129 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.129 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.129 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.129 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.129 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.129 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.130 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.concat.min.js?_v=637835286147460000 - null null -2026-01-16 11:18:52.130 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/luxon/luxon.min.js?_v=638935308536430000 - null null -2026-01-16 11:18:52.130 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/luxon/abp.luxon.js?_v=639041476856430000 - null null -2026-01-16 11:18:52.130 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/timeago/jquery.timeago.js?_v=637835286141940000 - null null -2026-01-16 11:18:52.130 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/bootstrap-datepicker/bootstrap-datepicker.min.js?_v=638943829436550000 - null null -2026-01-16 11:18:52.130 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/moment/moment.min.js?_v=638398615758630000 - null null -2026-01-16 11:18:52.130 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/bootstrap-daterangepicker/daterangepicker.js?_v=639041476852020000 - null null -2026-01-16 11:18:52.130 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/ui-extensions.js?_v=639041473801520701 - null null -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.130 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.130 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.130 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/ui-extensions.js'. Physical path: 'N/A' -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.130 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.130 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/ui-extensions.js?_v=639041473801520701 - 200 11706 application/javascript 0.5033ms -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.130 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.130 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.130 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.130 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.130 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.130 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.130 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.130 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.130 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.130 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.130 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.130 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.130 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.130 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.130 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.130 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.130 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.130 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.130 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.130 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.130 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.130 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.130 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.130 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.130 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.130 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.131 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.131 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.131 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.131 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.131 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.131 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=639041473801520701 - null null -2026-01-16 11:18:52.131 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=639041473801520701 - null null -2026-01-16 11:18:52.131 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.131 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/widget-manager.js?_v=639041473801520701 - null null -2026-01-16 11:18:52.131 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=639041473801520701 - null null -2026-01-16 11:18:52.131 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=639041473801520701 - null null -2026-01-16 11:18:52.131 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.131 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'N/A' -2026-01-16 11:18:52.131 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=639041473801520701 - null null -2026-01-16 11:18:52.131 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=639041473801520701 - 200 3605 application/javascript 0.2199ms -2026-01-16 11:18:52.131 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert2/abp-sweetalert2.js?_v=639041473801520701 - null null -2026-01-16 11:18:52.131 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/toast/abp-toast.js?_v=639041473801520701 - null null -2026-01-16 11:18:52.131 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/date-range-picker/date-range-picker-extensions.js?_v=639041473801520701 - null null -2026-01-16 11:18:52.131 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/widget-manager.js'. Physical path: 'N/A' -2026-01-16 11:18:52.131 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/widget-manager.js?_v=639041473801520701 - 200 4790 application/javascript 0.3902ms -2026-01-16 11:18:52.131 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/authentication-state/authentication-state-listener.js?_v=639041473801520701 - null null -2026-01-16 11:18:52.131 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Pages/Abp/MultiTenancy/tenant-switch.js?_v=637946096050351367 - null null -2026-01-16 11:18:52.131 +03:00 [INF] Sending file. Request path: 'libs/sweetalert2/sweetalert2.all.min.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\5qgexi0r6r-{0}-mfjzw5tre0-mfjzw5tre0.gz' -2026-01-16 11:18:52.131 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.131 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'N/A' -2026-01-16 11:18:52.131 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/sweetalert2/sweetalert2.all.min.js?_v=639020092555030000 - 200 79918 text/javascript 2.7599ms -2026-01-16 11:18:52.131 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert2/abp-sweetalert2.js'. Physical path: 'N/A' -2026-01-16 11:18:52.131 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert2/abp-sweetalert2.js?_v=639041473801520701 - 200 4925 application/javascript 0.3451ms -2026-01-16 11:18:52.131 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=639041473801520701 - 200 8760 application/javascript 0.4575ms -2026-01-16 11:18:52.131 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/authentication-state/authentication-state-listener.js'. Physical path: 'N/A' -2026-01-16 11:18:52.131 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toast/abp-toast.js'. Physical path: 'N/A' -2026-01-16 11:18:52.131 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'N/A' -2026-01-16 11:18:52.131 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/toast/abp-toast.js?_v=639041473801520701 - 200 6967 application/javascript 0.2627ms -2026-01-16 11:18:52.131 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=639041473801520701 - 200 6166 application/javascript 0.6067ms -2026-01-16 11:18:52.131 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'N/A' -2026-01-16 11:18:52.131 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/authentication-state/authentication-state-listener.js?_v=639041473801520701 - 200 776 application/javascript 0.1416ms -2026-01-16 11:18:52.131 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=639041473801520701 - 200 9958 application/javascript 0.5792ms -2026-01-16 11:18:52.131 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'N/A' -2026-01-16 11:18:52.131 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=639041473801520701 - 200 23177 application/javascript 0.7254ms -2026-01-16 11:18:52.131 +03:00 [INF] Sending file. Request path: 'libs/timeago/jquery.timeago.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\g7df2zcusq-{0}-81ir0st3ab-81ir0st3ab.gz' -2026-01-16 11:18:52.132 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.132 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/date-range-picker/date-range-picker-extensions.js'. Physical path: 'N/A' -2026-01-16 11:18:52.132 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/date-range-picker/date-range-picker-extensions.js?_v=639041473801520701 - 200 31212 application/javascript 0.6117ms -2026-01-16 11:18:52.132 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/timeago/jquery.timeago.js?_v=637835286141940000 - 200 7437 text/javascript 1.9656ms -2026-01-16 11:18:52.132 +03:00 [INF] Sending file. Request path: 'libs/abp/luxon/abp.luxon.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\hp8fbjs4i1-{0}-z5wqywdzu2-z5wqywdzu2.gz' -2026-01-16 11:18:52.132 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.132 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/js/lepton-x.bundle.min.js?_v=638990734800000000 - null null -2026-01-16 11:18:52.132 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/luxon/abp.luxon.js?_v=639041476856430000 - 200 3423 text/javascript 2.0487ms -2026-01-16 11:18:52.132 +03:00 [INF] Sending file. Request path: '/Pages/Abp/MultiTenancy/tenant-switch.js'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy\Pages\Abp\MultiTenancy\tenant-switch.js' -2026-01-16 11:18:52.132 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Pages/Abp/MultiTenancy/tenant-switch.js?_v=637946096050351367 - 200 414 application/javascript 0.6283ms -2026-01-16 11:18:52.132 +03:00 [INF] Sending file. Request path: 'libs/moment/moment.min.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\uamuplg97s-{0}-cwjvxf9th9-cwjvxf9th9.gz' -2026-01-16 11:18:52.132 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.132 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/moment/moment.min.js?_v=638398615758630000 - 200 58928 text/javascript 2.0675ms -2026-01-16 11:18:52.132 +03:00 [INF] Sending file. Request path: 'libs/luxon/luxon.min.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\hv9u3t2a9f-{0}-z7d3m257il-z7d3m257il.gz' -2026-01-16 11:18:52.132 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.132 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/luxon/luxon.min.js?_v=638935308536430000 - 200 81737 text/javascript 2.3897ms -2026-01-16 11:18:52.133 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.133 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.133 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.133 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.133 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.133 +03:00 [INF] Sending file. Request path: '/Themes/LeptonXLite/Global/side-menu/js/lepton-x.bundle.min.js'. Physical path: 'N/A' -2026-01-16 11:18:52.133 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/js/lepton-x.bundle.min.js?_v=638990734800000000 - 200 34385 application/javascript 1.1054ms -2026-01-16 11:18:52.133 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.133 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.133 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.133 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.133 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.133 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.133 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.133 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.133 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.133 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.133 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.133 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.133 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.133 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.133 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.133 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.134 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.134 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.134 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.134 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.134 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.134 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.134 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.134 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.134 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.134 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.134 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.134 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.135 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.135 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-GB.min.js?_v=638943829436550000 - null null -2026-01-16 11:18:52.135 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/scripts/leptonx-mvc-ui-initializer.js?_v=638990734800000000 - null null -2026-01-16 11:18:52.135 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/moment/locale/en-GB.js?_v=638398615758630000 - null null -2026-01-16 11:18:52.135 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Abp/ApplicationLocalizationScript?cultureName=en-GB - null null -2026-01-16 11:18:52.135 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Abp/ApplicationConfigurationScript - null null -2026-01-16 11:18:52.135 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.135 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Abp/ServiceProxyScript - null null -2026-01-16 11:18:52.135 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.135 +03:00 [INF] Sending file. Request path: 'libs/bootstrap-daterangepicker/daterangepicker.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\wvke4h4fft-{0}-gmkpl5fspb-gmkpl5fspb.gz' -2026-01-16 11:18:52.135 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.135 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.135 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Pages/Account/Login.js?_v=638052398678083686 - null null -2026-01-16 11:18:52.135 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.135 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.135 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.135 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.135 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/bootstrap-daterangepicker/daterangepicker.js?_v=639041476852020000 - 200 67788 text/javascript 5.1979ms -2026-01-16 11:18:52.135 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.135 +03:00 [INF] Sending file. Request path: '/Themes/LeptonXLite/Global/scripts/leptonx-mvc-ui-initializer.js'. Physical path: 'N/A' -2026-01-16 11:18:52.135 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/scripts/leptonx-mvc-ui-initializer.js?_v=638990734800000000 - 200 143 application/javascript 0.5449ms -2026-01-16 11:18:52.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.135 +03:00 [INF] Sending file. Request path: '/Pages/Account/Login.js'. Physical path: 'D:\GitHub\abp\modules\account\src\Volo.Abp.Account.Web\Pages\Account\Login.js' -2026-01-16 11:18:52.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.135 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.136 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Pages/Account/Login.js?_v=638052398678083686 - 200 585 application/javascript 0.7147ms -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.136 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.136 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.136 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.136 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.136 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.136 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.136 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.136 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.136 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.136 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.136 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.136 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.136 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.136 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.136 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.136 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.136 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.136 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.136 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.136 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.136 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.136 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.136 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.136 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.136 +03:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.Localization.AbpApplicationLocalizationScriptController.GetAsync (Volo.Abp.AspNetCore.Mvc)' -2026-01-16 11:18:52.136 +03:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc)' -2026-01-16 11:18:52.136 +03:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc)' -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.136 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.136 +03:00 [INF] Sending file. Request path: 'libs/bootstrap-datepicker/bootstrap-datepicker.min.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\tk3qeqysq9-{0}-tiww64l1hz-tiww64l1hz.gz' -2026-01-16 11:18:52.136 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.136 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/bootstrap-datepicker/bootstrap-datepicker.min.js?_v=638943829436550000 - 200 33910 text/javascript 6.8004ms -2026-01-16 11:18:52.136 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.136 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.136 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.136 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.136 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.136 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.136 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.137 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.137 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.137 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.137 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.137 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.137 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.137 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.137 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.137 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.137 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.137 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.137 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.137 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.137 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.137 +03:00 [INF] Sending file. Request path: 'libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-GB.min.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\5anmpu5dsf-{0}-d8q0pa85kj-d8q0pa85kj.gz' -2026-01-16 11:18:52.137 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.137 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.137 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.137 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-GB.min.js?_v=638943829436550000 - 200 551 text/javascript 2.6182ms -2026-01-16 11:18:52.137 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.137 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.137 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.137 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.137 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.137 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.138 +03:00 [INF] Sending file. Request path: 'libs/moment/locale/en-gb.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\6l5vqsyyy7-{0}-qbmpfmv5g2-qbmpfmv5g2.gz' -2026-01-16 11:18:52.138 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.138 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/moment/locale/en-GB.js?_v=638398615758630000 - 200 2688 text/javascript 3.7354ms -2026-01-16 11:18:52.142 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult GetAll(Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel) on controller Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController (Volo.Abp.AspNetCore.Mvc). -2026-01-16 11:18:52.142 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.142 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.142 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.142 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.142 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.142 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.142 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.142 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.142 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.142 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.143 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.143 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.143 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.143 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.143 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.143 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.143 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.143 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.143 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.143 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.143 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.144 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.ActionResult] Get() on controller Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController (Volo.Abp.AspNetCore.Mvc). -2026-01-16 11:18:52.144 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationLocalizationScript", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.ActionResult] GetAsync(Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationRequestDto) on controller Volo.Abp.AspNetCore.Mvc.Localization.AbpApplicationLocalizationScriptController (Volo.Abp.AspNetCore.Mvc). -2026-01-16 11:18:52.144 +03:00 [INF] Sending file. Request path: 'libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.concat.min.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\w5qv9diyma-{0}-uy460nbibt-uy460nbibt.gz' -2026-01-16 11:18:52.144 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.144 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.concat.min.js?_v=637835286147460000 - 200 45521 text/javascript 14.9704ms -2026-01-16 11:18:52.217 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/logo/leptonx/logo-light.png - null null -2026-01-16 11:18:52.218 +03:00 [DBG] Executing AbpApplicationConfigurationAppService.GetAsync()... -2026-01-16 11:18:52.221 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.221 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.221 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.221 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.221 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.221 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.221 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.221 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.221 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.221 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.221 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.221 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.221 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.221 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.221 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.221 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.221 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.221 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.221 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.221 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.221 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.222 +03:00 [INF] The file images/logo/leptonx/logo-light.png was not modified -2026-01-16 11:18:52.222 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.222 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/logo/leptonx/logo-light.png - 304 null image/png 5.2437ms -2026-01-16 11:18:52.226 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2026-01-16 11:18:52.226 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2 - null null -2026-01-16 11:18:52.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.227 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:52.227 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:52.227 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:52.227 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:52.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:52.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:52.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:52.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:52.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:52.227 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:52.227 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:52.227 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:52.227 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:52.227 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:52.227 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:52.227 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:52.227 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:52.227 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.227 +03:00 [INF] The file libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2 was not modified -2026-01-16 11:18:52.228 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:52.228 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2 - 304 null font/woff2 1.4345ms -2026-01-16 11:18:52.229 +03:00 [INF] Sending file. Request path: '/Themes/LeptonXLite/Global/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2'. Physical path: 'N/A' -2026-01-16 11:18:52.229 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 3.475ms -2026-01-16 11:18:52.240 +03:00 [DBG] ActionApiDescriptionModel.Create: AbpTenant.FindTenantByNameAsyncByName -2026-01-16 11:18:52.248 +03:00 [DBG] ActionApiDescriptionModel.Create: AbpTenant.FindTenantByIdAsyncById -2026-01-16 11:18:52.248 +03:00 [DBG] ActionApiDescriptionModel.Create: Account.LoginByLogin -2026-01-16 11:18:52.248 +03:00 [DBG] ActionApiDescriptionModel.Create: Account.Logout -2026-01-16 11:18:52.249 +03:00 [DBG] ActionApiDescriptionModel.Create: Account.CheckPasswordByLogin -2026-01-16 11:18:52.249 +03:00 [DBG] ActionApiDescriptionModel.Create: Account.RegisterAsyncByInput -2026-01-16 11:18:52.249 +03:00 [DBG] ActionApiDescriptionModel.Create: Account.SendPasswordResetCodeAsyncByInput -2026-01-16 11:18:52.249 +03:00 [DBG] ActionApiDescriptionModel.Create: Account.VerifyPasswordResetTokenAsyncByInput -2026-01-16 11:18:52.249 +03:00 [DBG] ActionApiDescriptionModel.Create: Account.ResetPasswordAsyncByInput -2026-01-16 11:18:52.249 +03:00 [DBG] ActionApiDescriptionModel.Create: EmailSettings.GetAsync -2026-01-16 11:18:52.249 +03:00 [DBG] ActionApiDescriptionModel.Create: EmailSettings.UpdateAsyncByInput -2026-01-16 11:18:52.250 +03:00 [DBG] ActionApiDescriptionModel.Create: EmailSettings.SendTestEmailAsyncByInput -2026-01-16 11:18:52.250 +03:00 [DBG] ActionApiDescriptionModel.Create: TimeZoneSettings.GetAsync -2026-01-16 11:18:52.250 +03:00 [DBG] ActionApiDescriptionModel.Create: TimeZoneSettings.GetTimezonesAsync -2026-01-16 11:18:52.250 +03:00 [DBG] ActionApiDescriptionModel.Create: TimeZoneSettings.UpdateAsyncByTimezone -2026-01-16 11:18:52.250 +03:00 [DBG] ActionApiDescriptionModel.Create: Tenant.GetAsyncById -2026-01-16 11:18:52.250 +03:00 [DBG] ActionApiDescriptionModel.Create: Tenant.GetListAsyncByInput -2026-01-16 11:18:52.251 +03:00 [DBG] ActionApiDescriptionModel.Create: Tenant.CreateAsyncByInput -2026-01-16 11:18:52.251 +03:00 [DBG] ActionApiDescriptionModel.Create: Tenant.UpdateAsyncByIdAndInput -2026-01-16 11:18:52.251 +03:00 [DBG] ActionApiDescriptionModel.Create: Tenant.DeleteAsyncById -2026-01-16 11:18:52.251 +03:00 [DBG] ActionApiDescriptionModel.Create: Tenant.GetDefaultConnectionStringAsyncById -2026-01-16 11:18:52.251 +03:00 [DBG] ActionApiDescriptionModel.Create: Tenant.UpdateDefaultConnectionStringAsyncByIdAndDefaultConnectionString -2026-01-16 11:18:52.251 +03:00 [DBG] ActionApiDescriptionModel.Create: Tenant.DeleteDefaultConnectionStringAsyncById -2026-01-16 11:18:52.251 +03:00 [DBG] ActionApiDescriptionModel.Create: Features.GetAsyncByProviderNameAndProviderKey -2026-01-16 11:18:52.252 +03:00 [DBG] ActionApiDescriptionModel.Create: Features.UpdateAsyncByProviderNameAndProviderKeyAndInput -2026-01-16 11:18:52.252 +03:00 [DBG] ActionApiDescriptionModel.Create: Features.DeleteAsyncByProviderNameAndProviderKey -2026-01-16 11:18:52.252 +03:00 [DBG] ActionApiDescriptionModel.Create: Permissions.GetAsyncByProviderNameAndProviderKey -2026-01-16 11:18:52.252 +03:00 [DBG] ActionApiDescriptionModel.Create: Permissions.GetByGroupAsyncByGroupNameAndProviderNameAndProviderKey -2026-01-16 11:18:52.252 +03:00 [DBG] ActionApiDescriptionModel.Create: Permissions.UpdateAsyncByProviderNameAndProviderKeyAndInput -2026-01-16 11:18:52.252 +03:00 [DBG] ActionApiDescriptionModel.Create: Permissions.GetResourceProviderKeyLookupServicesAsyncByResourceName -2026-01-16 11:18:52.252 +03:00 [DBG] ActionApiDescriptionModel.Create: Permissions.SearchResourceProviderKeyAsyncByResourceNameAndServiceNameAndFilterAndPage -2026-01-16 11:18:52.253 +03:00 [DBG] ActionApiDescriptionModel.Create: Permissions.GetResourceDefinitionsAsyncByResourceName -2026-01-16 11:18:52.253 +03:00 [DBG] ActionApiDescriptionModel.Create: Permissions.GetResourceAsyncByResourceNameAndResourceKey -2026-01-16 11:18:52.253 +03:00 [DBG] ActionApiDescriptionModel.Create: Permissions.GetResourceByProviderAsyncByResourceNameAndResourceKeyAndProviderNameAndProviderKey -2026-01-16 11:18:52.253 +03:00 [DBG] ActionApiDescriptionModel.Create: Permissions.UpdateResourceAsyncByResourceNameAndResourceKeyAndInput -2026-01-16 11:18:52.253 +03:00 [DBG] ActionApiDescriptionModel.Create: Permissions.DeleteResourceAsyncByResourceNameAndResourceKeyAndProviderNameAndProviderKey -2026-01-16 11:18:52.253 +03:00 [DBG] ActionApiDescriptionModel.Create: DynamicClaims.RefreshAsync -2026-01-16 11:18:52.254 +03:00 [DBG] ActionApiDescriptionModel.Create: Profile.GetAsync -2026-01-16 11:18:52.254 +03:00 [DBG] ActionApiDescriptionModel.Create: Profile.UpdateAsyncByInput -2026-01-16 11:18:52.254 +03:00 [DBG] ActionApiDescriptionModel.Create: Profile.ChangePasswordAsyncByInput -2026-01-16 11:18:52.254 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityRole.GetAllListAsync -2026-01-16 11:18:52.254 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityRole.GetListAsyncByInput -2026-01-16 11:18:52.254 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityRole.GetAsyncById -2026-01-16 11:18:52.255 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityRole.CreateAsyncByInput -2026-01-16 11:18:52.255 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityRole.UpdateAsyncByIdAndInput -2026-01-16 11:18:52.255 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityRole.DeleteAsyncById -2026-01-16 11:18:52.256 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityUser.GetAsyncById -2026-01-16 11:18:52.256 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityUser.GetListAsyncByInput -2026-01-16 11:18:52.256 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityUser.CreateAsyncByInput -2026-01-16 11:18:52.256 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityUser.UpdateAsyncByIdAndInput -2026-01-16 11:18:52.256 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityUser.DeleteAsyncById -2026-01-16 11:18:52.257 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityUser.GetRolesAsyncById -2026-01-16 11:18:52.257 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityUser.GetAssignableRolesAsync -2026-01-16 11:18:52.257 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityUser.UpdateRolesAsyncByIdAndInput -2026-01-16 11:18:52.257 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityUser.FindByUsernameAsyncByUserName -2026-01-16 11:18:52.257 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityUser.FindByEmailAsyncByEmail -2026-01-16 11:18:52.257 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityUserLookup.FindByIdAsyncById -2026-01-16 11:18:52.257 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityUserLookup.FindByUserNameAsyncByUserName -2026-01-16 11:18:52.257 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityUserLookup.SearchAsyncByInput -2026-01-16 11:18:52.258 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityUserLookup.GetCountAsyncByInput -2026-01-16 11:18:52.258 +03:00 [DBG] ActionApiDescriptionModel.Create: AbpApplicationConfiguration.GetAsyncByOptions -2026-01-16 11:18:52.258 +03:00 [DBG] ActionApiDescriptionModel.Create: AbpApplicationLocalization.GetAsyncByInput -2026-01-16 11:18:52.258 +03:00 [DBG] ActionApiDescriptionModel.Create: AbpApiDefinition.GetByModel -2026-01-16 11:18:52.287 +03:00 [INF] Executing ContentResult with HTTP Response ContentType of application/javascript -2026-01-16 11:18:52.289 +03:00 [INF] Executing ContentResult with HTTP Response ContentType of application/javascript -2026-01-16 11:18:52.290 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.Localization.AbpApplicationLocalizationScriptController.GetAsync (Volo.Abp.AspNetCore.Mvc) in 145.1646ms -2026-01-16 11:18:52.290 +03:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.Localization.AbpApplicationLocalizationScriptController.GetAsync (Volo.Abp.AspNetCore.Mvc)' -2026-01-16 11:18:52.290 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 147.1746ms -2026-01-16 11:18:52.290 +03:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc)' -2026-01-16 11:18:52.290 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Abp/ApplicationLocalizationScript?cultureName=en-GB - 200 45046 application/javascript 155.1173ms -2026-01-16 11:18:52.290 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Abp/ServiceProxyScript - 200 17884 application/javascript 155.0511ms -2026-01-16 11:18:52.413 +03:00 [DBG] Executed AbpApplicationConfigurationAppService.GetAsync(). -2026-01-16 11:18:52.447 +03:00 [INF] Executing ContentResult with HTTP Response ContentType of application/javascript -2026-01-16 11:18:52.447 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 303.2181ms -2026-01-16 11:18:52.447 +03:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc)' -2026-01-16 11:18:52.448 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Abp/ApplicationConfigurationScript - 200 7893 application/javascript 312.8834ms -2026-01-16 11:18:52.591 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/favicon.svg - null null -2026-01-16 11:18:52.593 +03:00 [INF] Sending file. Request path: '/favicon.svg'. Physical path: 'N/A' -2026-01-16 11:18:52.593 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/favicon.svg - 200 2827 image/svg+xml 2.3524ms -2026-01-16 11:18:57.982 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44308/Account/Login - application/x-www-form-urlencoded 291 -2026-01-16 11:18:57.984 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:57.984 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:57.984 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:57.984 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:57.984 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:57.984 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:57.985 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-16 11:18:57.985 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-16 11:18:57.986 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-16 11:18:57.986 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-16 11:18:57.986 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:57.986 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-16 11:18:57.986 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-16 11:18:57.986 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:57.986 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:57.986 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:57.986 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:57.986 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:57.986 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:57.986 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:57.986 +03:00 [INF] Executing endpoint '/Account/Login' -2026-01-16 11:18:57.986 +03:00 [INF] Route matched with {page = "/Account/Login", area = "", action = "", controller = ""}. Executing page /Account/Login -2026-01-16 11:18:57.986 +03:00 [INF] Skipping the execution of current filter as its not the most effective filter implementing the policy Microsoft.AspNetCore.Mvc.ViewFeatures.IAntiforgeryPolicy -2026-01-16 11:18:58.005 +03:00 [INF] Executing handler method Volo.Abp.Account.Web.Pages.Account.LoginModel.OnPostAsync - ModelState is "Valid" -2026-01-16 11:18:59.233 +03:00 [INF] AuthenticationScheme: Identity.Application signed in. -2026-01-16 11:18:59.411 +03:00 [DBG] Remove dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.418 +03:00 [INF] Executed handler method OnPostAsync, returned result Microsoft.AspNetCore.Mvc.RedirectResult. -2026-01-16 11:18:59.421 +03:00 [INF] Executing RedirectResult, redirecting to /. -2026-01-16 11:18:59.421 +03:00 [INF] Executed page /Account/Login in 1434.6505ms -2026-01-16 11:18:59.421 +03:00 [INF] Executed endpoint '/Account/Login' -2026-01-16 11:18:59.422 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44308/Account/Login - 302 0 null 1439.1709ms -2026-01-16 11:18:59.425 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/ - null null -2026-01-16 11:18:59.426 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.426 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.426 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.426 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.426 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.444 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.444 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.444 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.444 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.444 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.444 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.444 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.446 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.446 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.446 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.446 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.496 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.500 +03:00 [DBG] Filling dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.756 +03:00 [INF] Executing endpoint '/ (/)' -2026-01-16 11:18:59.762 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:SettingManagement.Emailing -2026-01-16 11:18:59.762 +03:00 [DBG] Not found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:SettingManagement.Emailing -2026-01-16 11:18:59.772 +03:00 [DBG] Getting all granted permissions from the repository for this provider name,key: U,34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.793 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:SettingManagement.Emailing -2026-01-16 11:18:59.793 +03:00 [DBG] Not found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:SettingManagement.Emailing -2026-01-16 11:18:59.793 +03:00 [DBG] Getting all granted permissions from the repository for this provider name,key: U,34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.804 +03:00 [DBG] Setting the cache items. Count: 22 -2026-01-16 11:18:59.805 +03:00 [DBG] Finished setting the cache items. Count: 22 -2026-01-16 11:18:59.807 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:SettingManagement.Emailing -2026-01-16 11:18:59.807 +03:00 [DBG] Not found in the cache: pn:R,pk:admin,n:SettingManagement.Emailing -2026-01-16 11:18:59.807 +03:00 [DBG] Getting all granted permissions from the repository for this provider name,key: R,admin -2026-01-16 11:18:59.809 +03:00 [DBG] Setting the cache items. Count: 22 -2026-01-16 11:18:59.809 +03:00 [DBG] Finished setting the cache items. Count: 22 -2026-01-16 11:18:59.809 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:SettingManagement.Emailing -2026-01-16 11:18:59.809 +03:00 [DBG] Not found in the cache: pn:R,pk:admin,n:SettingManagement.Emailing -2026-01-16 11:18:59.809 +03:00 [DBG] Getting all granted permissions from the repository for this provider name,key: R,admin -2026-01-16 11:18:59.821 +03:00 [DBG] Setting the cache items. Count: 22 -2026-01-16 11:18:59.821 +03:00 [DBG] Finished setting the cache items. Count: 22 -2026-01-16 11:18:59.822 +03:00 [DBG] Setting the cache items. Count: 22 -2026-01-16 11:18:59.823 +03:00 [DBG] Finished setting the cache items. Count: 22 -2026-01-16 11:18:59.828 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants -2026-01-16 11:18:59.829 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants -2026-01-16 11:18:59.829 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles,pn:R,pk:admin,n:AbpIdentity.Users,pn:R,pk:admin,n:AbpTenantManagement.Tenants -2026-01-16 11:18:59.829 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles,pn:R,pk:admin,n:AbpIdentity.Users,pn:R,pk:admin,n:AbpTenantManagement.Tenants -2026-01-16 11:18:59.834 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants -2026-01-16 11:18:59.834 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants -2026-01-16 11:18:59.834 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles,pn:R,pk:admin,n:AbpIdentity.Users,pn:R,pk:admin,n:AbpTenantManagement.Tenants -2026-01-16 11:18:59.834 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles,pn:R,pk:admin,n:AbpIdentity.Users,pn:R,pk:admin,n:AbpTenantManagement.Tenants -2026-01-16 11:18:59.842 +03:00 [INF] Executed endpoint '/ (/)' -2026-01-16 11:18:59.842 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/ - 200 null text/html; charset=utf-8 416.4848ms -2026-01-16 11:18:59.899 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/bootstrap/css/bootstrap.css - null null -2026-01-16 11:18:59.899 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.899 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.899 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.899 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.899 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.900 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/all.css - null null -2026-01-16 11:18:59.900 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2026-01-16 11:18:59.900 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2026-01-16 11:18:59.900 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise/blazorise.css - null null -2026-01-16 11:18:59.900 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2026-01-16 11:18:59.900 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2026-01-16 11:18:59.901 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2026-01-16 11:18:59.901 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2026-01-16 11:18:59.901 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2026-01-16 11:18:59.901 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.902 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.902 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.902 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.902 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.902 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.903 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.903 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.903 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.903 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.903 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.903 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.903 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.903 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.903 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.903 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.903 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.903 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.903 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.903 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.903 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.903 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.903 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.903 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.903 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.903 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.903 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2026-01-16 11:18:59.903 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.903 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.903 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.903 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.903 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.903 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.903 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.903 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.903 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.903 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.903 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.903 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.903 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.903 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.903 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.903 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.903 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.903 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.903 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.903 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.903 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.903 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.903 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.904 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2026-01-16 11:18:59.904 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.904 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.904 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.904 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.904 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.904 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.904 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.904 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.904 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.904 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.904 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.904 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.904 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.904 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.904 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.904 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.904 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.904 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.904 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.904 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.904 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.904 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.904 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.904 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.904 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.904 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.904 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.904 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.904 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.904 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.904 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.904 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.904 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.904 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.904 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.904 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.904 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.904 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.904 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.904 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.904 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.904 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.904 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.904 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.904 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.904 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.904 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.904 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.904 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.904 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.904 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.904 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.904 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.904 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.904 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.904 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.904 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.904 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.904 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.904 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.904 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.904 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.904 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.904 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.904 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.904 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.904 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.904 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.904 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.904 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.904 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.904 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.904 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2026-01-16 11:18:59.904 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.904 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.904 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.904 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.904 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.904 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.904 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.904 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.905 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.905 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2026-01-16 11:18:59.905 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2026-01-16 11:18:59.905 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.905 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/blazor-global-styles.css - null null -2026-01-16 11:18:59.905 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css - null null -2026-01-16 11:18:59.905 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.905 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.905 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.905 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.905 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.905 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/bg-01.png - null null -2026-01-16 11:18:59.906 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.906 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.906 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.906 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.906 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.906 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.906 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.906 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.906 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.906 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.906 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.906 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.906 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.906 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.906 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.906 +03:00 [INF] The file _content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css was not modified -2026-01-16 11:18:59.906 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.906 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 304 null text/css 5.1493ms -2026-01-16 11:18:59.906 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.906 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2026-01-16 11:18:59.906 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.906 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.906 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.906 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\obj\Debug\net10.0\compressed\p1g0cu86en-{0}-c25c931rn9-c25c931rn9.gz' -2026-01-16 11:18:59.906 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.906 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1375 text/css 5.8916ms -2026-01-16 11:18:59.906 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/img-support.png - null null -2026-01-16 11:18:59.907 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.907 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.907 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.907 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.907 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/img-blog.png - null null -2026-01-16 11:18:59.907 +03:00 [INF] The file _content/Blazorise.Bootstrap5/blazorise.bootstrap5.css was not modified -2026-01-16 11:18:59.907 +03:00 [INF] The file _content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css was not modified -2026-01-16 11:18:59.907 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.907 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.907 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 304 null text/css 6.5761ms -2026-01-16 11:18:59.907 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2026-01-16 11:18:59.907 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.907 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.907 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.907 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.907 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.907 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.907 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.907 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.908 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.BlazoriseUI\obj\Debug\net10.0\compressed\jpg9ocpd9d-{0}-ijisvpsc99-ijisvpsc99.gz' -2026-01-16 11:18:59.908 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.908 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.908 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.908 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.908 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.908 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.908 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.908 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 304 null text/css 6.8957ms -2026-01-16 11:18:59.908 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.908 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.908 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1571 text/css 7.0588ms -2026-01-16 11:18:59.908 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.908 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.908 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.908 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.908 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.908 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.908 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - null null -2026-01-16 11:18:59.908 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.908 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.908 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.908 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.908 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.908 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.908 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.908 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.908 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.908 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.908 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.908 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.908 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.908 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.908 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.908 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.908 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.908 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.908 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.908 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.908 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.908 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.908 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.908 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.908 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.908 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.908 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.908 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.908 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.908 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.908 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.908 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.908 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.908 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - null null -2026-01-16 11:18:59.908 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.908 +03:00 [INF] The file _content/Blazorise/blazorise.css was not modified -2026-01-16 11:18:59.908 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.908 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.908 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.908 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.908 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise/blazorise.css - 304 null text/css 7.9369ms -2026-01-16 11:18:59.908 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.908 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.908 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - null null -2026-01-16 11:18:59.908 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.908 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.908 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.908 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.908 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.908 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.908 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.908 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.908 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.908 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.908 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - null null -2026-01-16 11:18:59.909 +03:00 [INF] The file _content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css was not modified -2026-01-16 11:18:59.909 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.909 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.909 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.909 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 304 null text/css 4.308ms -2026-01-16 11:18:59.909 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.909 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - null null -2026-01-16 11:18:59.909 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.909 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.909 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.909 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/blazor.web.js - null null -2026-01-16 11:18:59.909 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\8wavgvnzyu-{0}-zxtkyfow31-zxtkyfow31.gz' -2026-01-16 11:18:59.909 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.909 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.909 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 554 text/css 8.5877ms -2026-01-16 11:18:59.909 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.909 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\rsrgg46xj8-{0}-iv1s27gl02-iv1s27gl02.gz' -2026-01-16 11:18:59.909 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.909 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 160 text/css 4.6621ms -2026-01-16 11:18:59.909 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.909 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.910 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.910 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.910 +03:00 [INF] Sending file. Request path: 'MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s4s6fpr8ex-{0}-3fgcsmkvgt-3fgcsmkvgt.gz' -2026-01-16 11:18:59.910 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.910 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css - 200 440 text/css 5.1129ms -2026-01-16 11:18:59.910 +03:00 [INF] Sending file. Request path: 'blazor-global-styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\smexgl05zq-{0}-y3n6denrdr-y3n6denrdr.gz' -2026-01-16 11:18:59.910 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.910 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/blazor-global-styles.css - 200 641 text/css 5.2719ms -2026-01-16 11:18:59.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.910 +03:00 [INF] Sending file. Request path: 'libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\jzp36yfch8-{0}-evu8y4tl4x-evu8y4tl4x.gz' -2026-01-16 11:18:59.910 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.910 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/bootstrap/css/bootstrap.css - 200 280384 text/css 11.4802ms -2026-01-16 11:18:59.910 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\dfuwed8qp2-{0}-9fxst9u6yk-9fxst9u6yk.gz' -2026-01-16 11:18:59.910 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.910 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 38549 text/css 9.9968ms -2026-01-16 11:18:59.911 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.911 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.911 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.911 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.911 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.911 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.911 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.911 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.911 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.911 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.911 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.911 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.911 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.911 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.911 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.911 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.911 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.911 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\0vulsgakzi-{0}-2ej0o14t5y-2ej0o14t5y.gz' -2026-01-16 11:18:59.911 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.911 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.911 +03:00 [INF] Sending file. Request path: '_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\3wqf99oqz3-{0}-yj3izxkafq-yj3izxkafq.gz' -2026-01-16 11:18:59.911 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.911 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.911 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.911 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.911 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/all.css - 200 110162 text/css 10.9118ms -2026-01-16 11:18:59.911 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11514 text/css 10.8166ms -2026-01-16 11:18:59.912 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.912 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.912 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.912 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.912 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.912 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.912 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.912 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.912 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.912 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.912 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.912 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.912 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.912 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.912 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.912 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.912 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.912 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.912 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.912 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.912 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.912 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.912 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.912 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.912 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.912 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.912 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.912 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.912 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.912 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.912 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.912 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.912 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.912 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.912 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.912 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.912 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.912 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.912 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.912 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.912 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\e7v19mgtln-{0}-gf8iscesmb-gf8iscesmb.gz' -2026-01-16 11:18:59.912 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.912 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 31622 text/css 7.6622ms -2026-01-16 11:18:59.912 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.912 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.912 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.912 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.912 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.912 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.912 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.912 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.912 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.912 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.912 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.912 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.912 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.912 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.912 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.912 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.912 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.912 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.912 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.912 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.912 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.912 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.912 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.913 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.913 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.913 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.913 +03:00 [INF] The file _framework/blazor.web.js was not modified -2026-01-16 11:18:59.913 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.913 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.913 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.913 +03:00 [INF] The file _content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js was not modified -2026-01-16 11:18:59.913 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.913 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\4fh1mvs9e3-{0}-xjm6tbvzai-xjm6tbvzai.gz' -2026-01-16 11:18:59.913 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.913 +03:00 [INF] The file _content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js was not modified -2026-01-16 11:18:59.913 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.913 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/blazor.web.js - 304 null text/javascript 4.0377ms -2026-01-16 11:18:59.913 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - 304 null text/javascript 4.5324ms -2026-01-16 11:18:59.913 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 9150 text/css 9.2217ms -2026-01-16 11:18:59.913 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - 304 null text/javascript 4.0997ms -2026-01-16 11:18:59.913 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.913 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\m3eknofir4-{0}-2s3j35qcl3-2s3j35qcl3.gz' -2026-01-16 11:18:59.913 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.913 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.913 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3437 text/css 9.6779ms -2026-01-16 11:18:59.913 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.913 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.913 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\obj\Debug\net10.0\compressed\2mj6s76mwx-{0}-qb38od44a4-qb38od44a4.gz' -2026-01-16 11:18:59.913 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.914 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 486 text/javascript 6.5031ms -2026-01-16 11:18:59.914 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.914 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.914 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.914 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.914 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.914 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.914 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.914 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\obj\Debug\net10.0\compressed\rhkuekteef-{0}-cowusv9rvg-cowusv9rvg.gz' -2026-01-16 11:18:59.914 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.914 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8981 text/javascript 7.9191ms -2026-01-16 11:18:59.914 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.914 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.914 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.914 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.914 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.914 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.914 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.914 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.914 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.915 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.915 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.915 +03:00 [INF] The file _content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js was not modified -2026-01-16 11:18:59.915 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.915 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - 304 null text/javascript 6.5149ms -2026-01-16 11:18:59.916 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.917 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.917 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.917 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.917 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.917 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.917 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.917 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.917 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.917 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.917 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.917 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.918 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.919 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\n4ou5exnd0-{0}-rm8d4uw1xt-rm8d4uw1xt.gz' -2026-01-16 11:18:59.919 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.919 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.919 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.919 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.919 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.919 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.919 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.919 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.919 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.919 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.919 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.919 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.919 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.919 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.919 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.919 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.919 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - 200 89521 text/javascript 10.5894ms -2026-01-16 11:18:59.920 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.920 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.920 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.920 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.920 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.920 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.920 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.920 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.920 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.920 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.920 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.920 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.920 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.921 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.921 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.921 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.921 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.921 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.921 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.921 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.921 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.921 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.921 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.921 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.921 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.921 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.921 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.921 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.921 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.921 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.921 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.921 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.921 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.921 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.921 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.921 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.921 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.921 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.921 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.921 +03:00 [INF] The file images/getting-started/img-support.png was not modified -2026-01-16 11:18:59.921 +03:00 [INF] The file images/getting-started/bg-01.png was not modified -2026-01-16 11:18:59.921 +03:00 [INF] The file images/getting-started/img-blog.png was not modified -2026-01-16 11:18:59.921 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.921 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.921 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.921 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/bg-01.png - 304 null image/png 15.991ms -2026-01-16 11:18:59.921 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/img-support.png - 304 null image/png 15.1329ms -2026-01-16 11:18:59.921 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/img-blog.png - 304 null image/png 14.5896ms -2026-01-16 11:18:59.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.932 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.932 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.932 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.932 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.932 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.932 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.932 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.932 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.932 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.932 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.932 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.933 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.933 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.935 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\opydoeiarj-{0}-tzi6clbx5p-tzi6clbx5p.gz' -2026-01-16 11:18:59.935 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.935 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - 200 216594 text/javascript 27.697ms -2026-01-16 11:18:59.944 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.PermissionManagement.Blazor/Volo.Abp.PermissionManagement.Blazor.p33ll9g8os.bundle.scp.css - null null -2026-01-16 11:18:59.944 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.944 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.944 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.944 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.944 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.947 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.947 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.947 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.947 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.947 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.947 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.947 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.947 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.947 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.947 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.947 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.948 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.948 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.948 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.PermissionManagement.Blazor/Volo.Abp.PermissionManagement.Blazor.p33ll9g8os.bundle.scp.css'. Physical path: 'D:\GitHub\abp\modules\permission-management\src\Volo.Abp.PermissionManagement.Blazor\obj\Debug\net10.0\compressed\lxble3k5fs-{0}-p33ll9g8os-p33ll9g8os.gz' -2026-01-16 11:18:59.948 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.948 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.PermissionManagement.Blazor/Volo.Abp.PermissionManagement.Blazor.p33ll9g8os.bundle.scp.css - 200 1107 text/css 4.6677ms -2026-01-16 11:18:59.957 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/logo/leptonx/logo-light.png - null null -2026-01-16 11:18:59.958 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.958 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.958 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.958 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.958 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.960 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2026-01-16 11:18:59.960 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.960 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.960 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.960 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.960 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.960 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.960 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.961 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 - null null -2026-01-16 11:18:59.961 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.961 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.961 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.961 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.961 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.961 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.961 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.961 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.961 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.961 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.961 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.961 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.961 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.961 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.961 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.961 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.961 +03:00 [INF] The file images/logo/leptonx/logo-light.png was not modified -2026-01-16 11:18:59.961 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.962 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/logo/leptonx/logo-light.png - 304 null image/png 4.1188ms -2026-01-16 11:18:59.962 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.962 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.962 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.962 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.962 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.962 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.962 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.962 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.962 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.962 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.962 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.962 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.962 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.962 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.963 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.963 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.963 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.963 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.963 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.963 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.963 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.963 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.963 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.963 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.963 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.963 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.963 +03:00 [INF] The file libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 was not modified -2026-01-16 11:18:59.963 +03:00 [INF] The file libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 was not modified -2026-01-16 11:18:59.963 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.963 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.963 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 - 304 null font/woff2 2.6916ms -2026-01-16 11:18:59.963 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 304 null font/woff2 2.9583ms -2026-01-16 11:18:59.968 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2026-01-16 11:18:59.969 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.969 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.969 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.969 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.969 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:18:59.972 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.972 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.972 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:18:59.972 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:18:59.972 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:18:59.972 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:18:59.972 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.972 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:18:59.972 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:18:59.972 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:18:59.972 +03:00 [DBG] No tenant resolved. -2026-01-16 11:18:59.973 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:18:59.973 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.974 +03:00 [INF] The file _content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2 was not modified -2026-01-16 11:18:59.974 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:18:59.974 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 304 null font/woff2 5.4599ms -2026-01-16 11:18:59.995 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js - null null -2026-01-16 11:18:59.999 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.999 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:18:59.999 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:18:59.999 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:18:59.999 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.001 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.001 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.001 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.001 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.001 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.001 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.002 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.002 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.002 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.002 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.002 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.002 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.002 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.003 +03:00 [INF] Sending file. Request path: '_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js'. Physical path: 'C:\Users\ismai\.nuget\packages\microsoft.dotnet.hotreload.webassembly.browser\10.0.102\staticwebassets\Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js' -2026-01-16 11:19:00.003 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.004 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js - 200 1862 text/javascript 8.2339ms -2026-01-16 11:19:00.080 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.js - null null -2026-01-16 11:19:00.080 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.081 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.081 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.081 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.081 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.083 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.083 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.083 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.083 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.083 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.083 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.083 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.083 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.083 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.083 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.083 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.084 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.084 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.086 +03:00 [INF] Sending file. Request path: '_framework/dotnet.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uxk8is50o9-{0}-tim1hs1943-tim1hs1943.gz' -2026-01-16 11:19:00.086 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.086 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.js - 200 138711 text/javascript 6.3437ms -2026-01-16 11:19:00.098 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.native.cs8mcre4gh.js - null null -2026-01-16 11:19:00.098 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.0j6ezsi0n0.js - null null -2026-01-16 11:19:00.099 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.native.muve7a13r4.wasm - null null -2026-01-16 11:19:00.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.101 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.101 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.101 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.101 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.101 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.101 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.101 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.101 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.101 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.101 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.101 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.101 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.101 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.101 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.101 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.101 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.101 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.101 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.101 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.101 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.101 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.101 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.101 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.101 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.101 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.101 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.101 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.101 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.101 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.101 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.101 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.101 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.101 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.102 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.102 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.102 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.102 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.102 +03:00 [INF] The file _framework/dotnet.native.muve7a13r4.wasm was not modified -2026-01-16 11:19:00.102 +03:00 [INF] The file _framework/dotnet.native.cs8mcre4gh.js was not modified -2026-01-16 11:19:00.102 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.102 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.102 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.102 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.102 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.native.muve7a13r4.wasm - 304 null application/wasm 3.3657ms -2026-01-16 11:19:00.102 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.native.cs8mcre4gh.js - 304 null text/javascript 3.5606ms -2026-01-16 11:19:00.102 +03:00 [INF] The file _framework/dotnet.runtime.0j6ezsi0n0.js was not modified -2026-01-16 11:19:00.102 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.102 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.0j6ezsi0n0.js - 304 null text/javascript 3.6689ms -2026-01-16 11:19:00.113 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.JavaScript.flbdejno7d.wasm - null null -2026-01-16 11:19:00.113 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.113 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.113 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.113 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.113 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.116 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.116 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.116 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.116 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.116 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.116 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.116 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.116 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.116 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.116 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.116 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.117 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.117 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.118 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.InteropServices.JavaScript.flbdejno7d.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s7btk1c9a3-{0}-flbdejno7d-flbdejno7d.gz' -2026-01-16 11:19:00.118 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.119 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.JavaScript.flbdejno7d.wasm - 200 79680 application/wasm 6.0465ms -2026-01-16 11:19:00.153 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.CoreLib.zjh2w4p93l.wasm - null null -2026-01-16 11:19:00.153 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.154 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.154 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.154 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.154 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.156 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.156 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.156 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.156 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.156 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.156 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.156 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.156 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.156 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.156 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.156 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.157 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.158 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.225 +03:00 [INF] Sending file. Request path: '_framework/System.Private.CoreLib.zjh2w4p93l.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6as1brjopk-{0}-zjh2w4p93l-zjh2w4p93l.gz' -2026-01-16 11:19:00.225 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.226 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.CoreLib.zjh2w4p93l.wasm - 200 4870686 application/wasm 72.7807ms -2026-01-16 11:19:00.233 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.oocz43qncp.pdb - null null -2026-01-16 11:19:00.233 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.233 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.233 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.233 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.233 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.236 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.236 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.236 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.236 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.236 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.236 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.236 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.236 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.236 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.236 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.236 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.236 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.237 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.237 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.oocz43qncp.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vvrxtc2ro0-{0}-oocz43qncp-oocz43qncp.gz' -2026-01-16 11:19:00.237 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.237 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.oocz43qncp.pdb - 200 18593 application/octet-stream 4.7812ms -2026-01-16 11:19:00.242 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.i3frew8tpq.pdb - null null -2026-01-16 11:19:00.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.243 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.243 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.243 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.243 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.245 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.245 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.245 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.245 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.245 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.245 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.245 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.245 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.245 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.245 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.245 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.246 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.246 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.247 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.i3frew8tpq.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6vzgo2e02t-{0}-i3frew8tpq-i3frew8tpq.gz' -2026-01-16 11:19:00.248 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.248 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.i3frew8tpq.pdb - 200 18845 application/octet-stream 5.3835ms -2026-01-16 11:19:00.251 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.Theming.mlpl3aj6pj.pdb - null null -2026-01-16 11:19:00.252 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.252 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.252 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.252 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.252 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.254 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.254 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.254 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.254 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.254 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.254 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.254 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.254 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.254 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.254 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.254 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.254 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.254 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.255 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.Theming.mlpl3aj6pj.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\30xmw4tf08-{0}-mlpl3aj6pj-mlpl3aj6pj.gz' -2026-01-16 11:19:00.255 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.255 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.Theming.mlpl3aj6pj.pdb - 200 38310 application/octet-stream 3.8637ms -2026-01-16 11:19:00.262 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.WebAssembly.nl4jd2ajr0.pdb - null null -2026-01-16 11:19:00.262 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.262 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.262 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.262 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.262 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.265 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.265 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.265 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.265 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.265 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.265 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.265 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.265 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.265 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.265 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.265 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.266 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.266 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.267 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Autofac.WebAssembly.nl4jd2ajr0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\46uzmq97el-{0}-nl4jd2ajr0-nl4jd2ajr0.gz' -2026-01-16 11:19:00.267 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.267 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.WebAssembly.nl4jd2ajr0.pdb - 200 17837 application/octet-stream 5.0005ms -2026-01-16 11:19:00.278 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.WebAssembly.ej5ubu9cbd.pdb - null null -2026-01-16 11:19:00.278 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.278 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.278 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.278 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.278 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.280 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.280 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.280 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.281 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.281 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.281 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.281 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.281 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.281 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.281 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.281 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.281 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.281 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.282 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Blazor.WebAssembly.ej5ubu9cbd.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8k9894ktkw-{0}-ej5ubu9cbd-ej5ubu9cbd.gz' -2026-01-16 11:19:00.282 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.282 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.WebAssembly.ej5ubu9cbd.pdb - 200 18837 application/octet-stream 3.8566ms -2026-01-16 11:19:00.286 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.WebAssembly.yp9rkbukw7.pdb - null null -2026-01-16 11:19:00.287 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.287 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.287 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.287 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.287 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.289 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.289 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.289 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.289 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.289 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.289 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.289 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.289 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.289 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.289 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.289 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.289 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.289 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.290 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Blazor.WebAssembly.yp9rkbukw7.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6nd3b9ee9q-{0}-yp9rkbukw7-yp9rkbukw7.gz' -2026-01-16 11:19:00.290 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.290 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.WebAssembly.yp9rkbukw7.pdb - 200 18985 application/octet-stream 3.6622ms -2026-01-16 11:19:00.295 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.WebAssembly.qwhfqr5x1d.pdb - null null -2026-01-16 11:19:00.295 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.295 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.295 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.295 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.295 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.297 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.297 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.297 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.297 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.297 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.297 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.297 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.298 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.298 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.298 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.298 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.298 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.298 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.299 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Blazor.WebAssembly.qwhfqr5x1d.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tjrpe70mnd-{0}-qwhfqr5x1d-qwhfqr5x1d.gz' -2026-01-16 11:19:00.299 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.299 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.WebAssembly.qwhfqr5x1d.pdb - 200 18417 application/octet-stream 4.329ms -2026-01-16 11:19:00.304 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.HttpApi.Client.vrd4lpaety.pdb - null null -2026-01-16 11:19:00.304 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.304 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.305 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.305 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.305 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.306 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.306 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.306 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.306 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.307 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.307 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.307 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.307 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.307 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.307 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.307 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.307 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.307 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.308 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.HttpApi.Client.vrd4lpaety.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wa1oh5lir8-{0}-vrd4lpaety-vrd4lpaety.gz' -2026-01-16 11:19:00.308 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.308 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.HttpApi.Client.vrd4lpaety.pdb - 200 18313 application/octet-stream 4.0016ms -2026-01-16 11:19:00.314 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Application.Contracts.2dhu54vbx7.pdb - null null -2026-01-16 11:19:00.315 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.315 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.315 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.315 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.315 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.317 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.317 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.318 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.318 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.318 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.318 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.318 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.318 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.318 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.318 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.318 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.318 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.318 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.319 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Application.Contracts.2dhu54vbx7.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7jvwr8mtd4-{0}-2dhu54vbx7-2dhu54vbx7.gz' -2026-01-16 11:19:00.319 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.319 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Application.Contracts.2dhu54vbx7.pdb - 200 17845 application/octet-stream 4.9237ms -2026-01-16 11:19:00.326 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Domain.Shared.x7d8bcto2o.pdb - null null -2026-01-16 11:19:00.326 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.326 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.326 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.326 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.326 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.328 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.328 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.328 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.328 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.328 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.328 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.328 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.328 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.328 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.328 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.328 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.329 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.329 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.330 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Domain.Shared.x7d8bcto2o.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rlbmklp40g-{0}-x7d8bcto2o-x7d8bcto2o.gz' -2026-01-16 11:19:00.330 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.330 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Domain.Shared.x7d8bcto2o.pdb - 200 17373 application/octet-stream 3.9054ms -2026-01-16 11:19:00.336 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.xsazfctgia.pdb - null null -2026-01-16 11:19:00.337 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.337 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.337 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.337 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.337 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.339 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.339 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.339 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.339 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.339 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.339 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.339 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.340 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.340 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.340 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.340 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.340 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.341 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.341 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.xsazfctgia.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kaxpuw2pqs-{0}-xsazfctgia-xsazfctgia.gz' -2026-01-16 11:19:00.341 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.342 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.xsazfctgia.pdb - 200 21877 application/octet-stream 5.2915ms -2026-01-16 11:19:00.348 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.k0qwkdpoz5.pdb - null null -2026-01-16 11:19:00.348 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.348 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.348 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.349 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.349 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.351 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.351 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.351 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.351 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.351 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.351 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.351 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.351 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.351 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.351 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.351 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.352 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.352 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.353 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.k0qwkdpoz5.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3g4acw7rc0-{0}-k0qwkdpoz5-k0qwkdpoz5.gz' -2026-01-16 11:19:00.353 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.353 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.k0qwkdpoz5.pdb - 200 28037 application/octet-stream 4.9382ms -2026-01-16 11:19:00.357 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.mq163icaoc.pdb - null null -2026-01-16 11:19:00.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.358 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.358 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.358 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.358 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.360 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.360 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.360 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.360 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.360 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.360 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.360 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.360 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.360 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.360 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.360 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.360 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.360 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.361 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.mq163icaoc.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wynnfd4qyp-{0}-mq163icaoc-mq163icaoc.gz' -2026-01-16 11:19:00.361 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.361 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.mq163icaoc.pdb - 200 31269 application/octet-stream 3.8193ms -2026-01-16 11:19:00.365 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.7q4l0ejffv.pdb - null null -2026-01-16 11:19:00.366 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.366 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.366 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.366 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.366 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.368 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.368 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.368 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.368 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.368 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.368 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.368 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.368 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.368 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.368 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.368 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.369 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.369 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.370 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.7q4l0ejffv.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mf8v92gj25-{0}-7q4l0ejffv-7q4l0ejffv.gz' -2026-01-16 11:19:00.370 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.370 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.7q4l0ejffv.pdb - 200 13921 application/octet-stream 4.7639ms -2026-01-16 11:19:00.376 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.op2gzd1mow.pdb - null null -2026-01-16 11:19:00.376 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.376 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.376 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.376 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.376 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.379 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.379 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.379 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.379 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.379 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.379 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.379 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.379 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.379 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.379 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.379 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.380 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.380 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.380 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.op2gzd1mow.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\075clw76hm-{0}-op2gzd1mow-op2gzd1mow.gz' -2026-01-16 11:19:00.380 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.381 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.op2gzd1mow.pdb - 200 21557 application/octet-stream 4.8644ms -2026-01-16 11:19:00.386 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BlazoriseUI.mmqd7htn1l.pdb - null null -2026-01-16 11:19:00.387 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.387 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.387 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.387 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.387 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.390 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.390 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.390 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.390 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.390 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.390 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.390 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.390 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.390 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.390 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.390 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.391 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.391 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.392 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BlazoriseUI.mmqd7htn1l.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\twpvgeafup-{0}-mmqd7htn1l-mmqd7htn1l.gz' -2026-01-16 11:19:00.392 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.392 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BlazoriseUI.mmqd7htn1l.pdb - 200 90331 application/octet-stream 5.6591ms -2026-01-16 11:19:00.396 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.goqn4rrfxt.pdb - null null -2026-01-16 11:19:00.397 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.397 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.397 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.397 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.397 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.399 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.399 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.399 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.399 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.399 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.399 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.399 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.399 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.399 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.399 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.399 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.399 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.400 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.400 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Blazor.goqn4rrfxt.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nxy69wfnbj-{0}-goqn4rrfxt-goqn4rrfxt.gz' -2026-01-16 11:19:00.400 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.400 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.goqn4rrfxt.pdb - 200 31373 application/octet-stream 4.2552ms -2026-01-16 11:19:00.406 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.WebAssembly.y8ueju1cms.pdb - null null -2026-01-16 11:19:00.406 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.406 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.406 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.406 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.406 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.409 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.409 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.409 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.409 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.409 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.409 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.409 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.409 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.409 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.409 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.409 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.410 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.410 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.411 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Blazor.WebAssembly.y8ueju1cms.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\h94qjwjqjn-{0}-y8ueju1cms-y8ueju1cms.gz' -2026-01-16 11:19:00.411 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.411 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.WebAssembly.y8ueju1cms.pdb - 200 18629 application/octet-stream 5.1145ms -2026-01-16 11:19:00.415 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.a0v8yk2p6z.pdb - null null -2026-01-16 11:19:00.415 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.415 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.415 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.415 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.415 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.418 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.418 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.418 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.418 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.418 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.418 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.418 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.418 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.418 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.418 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.418 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.419 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.419 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.420 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Blazor.a0v8yk2p6z.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\g74iyma9hq-{0}-a0v8yk2p6z-a0v8yk2p6z.gz' -2026-01-16 11:19:00.420 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.420 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.a0v8yk2p6z.pdb - 200 50558 application/octet-stream 5.4696ms -2026-01-16 11:19:00.425 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.tb6xgsn8r9.pdb - null null -2026-01-16 11:19:00.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.425 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.425 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.425 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.425 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.428 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.428 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.428 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.428 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.428 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.428 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.428 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.428 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.428 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.428 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.428 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.428 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.429 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.429 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Blazor.tb6xgsn8r9.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ghku0o6nj3-{0}-tb6xgsn8r9-tb6xgsn8r9.gz' -2026-01-16 11:19:00.429 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.429 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.tb6xgsn8r9.pdb - 200 44770 application/octet-stream 4.3347ms -2026-01-16 11:19:00.433 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.WebAssembly.k6hmr1anff.pdb - null null -2026-01-16 11:19:00.433 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.433 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.433 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.433 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.433 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.436 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.436 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.436 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.436 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.436 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.436 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.436 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.436 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.436 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.436 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.436 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.437 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.437 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.438 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Blazor.WebAssembly.k6hmr1anff.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vbwo5030u7-{0}-k6hmr1anff-k6hmr1anff.gz' -2026-01-16 11:19:00.438 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.438 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.WebAssembly.k6hmr1anff.pdb - 200 18285 application/octet-stream 4.9375ms -2026-01-16 11:19:00.443 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.5rd3y3jxvb.pdb - null null -2026-01-16 11:19:00.443 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.443 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.444 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.444 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.444 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.446 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.446 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.446 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.446 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.446 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.446 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.446 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.446 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.446 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.446 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.446 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.446 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.447 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.447 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Blazor.5rd3y3jxvb.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mphqpa0pxg-{0}-5rd3y3jxvb-5rd3y3jxvb.gz' -2026-01-16 11:19:00.447 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.447 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.5rd3y3jxvb.pdb - 200 42778 application/octet-stream 4.3809ms -2026-01-16 11:19:00.451 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.tz3vfkd0u7.pdb - null null -2026-01-16 11:19:00.451 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.451 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.451 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.451 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.451 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.454 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.454 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.454 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.454 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.454 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.454 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.454 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.454 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.454 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.454 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.454 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.454 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.455 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.456 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Blazor.tz3vfkd0u7.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\z9z5li2flg-{0}-tz3vfkd0u7-tz3vfkd0u7.gz' -2026-01-16 11:19:00.456 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.456 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.tz3vfkd0u7.pdb - 200 29529 application/octet-stream 4.7112ms -2026-01-16 11:19:00.461 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.Application.Contracts.h1zb9l8ean.pdb - null null -2026-01-16 11:19:00.461 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.461 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.461 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.461 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.461 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.463 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.463 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.463 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.463 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.463 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.463 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.463 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.463 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.463 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.463 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.463 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.464 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.464 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.464 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Account.Application.Contracts.h1zb9l8ean.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uzxye9p8cy-{0}-h1zb9l8ean-h1zb9l8ean.gz' -2026-01-16 11:19:00.464 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.465 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.Application.Contracts.h1zb9l8ean.pdb - 200 19021 application/octet-stream 3.8643ms -2026-01-16 11:19:00.469 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.HttpApi.Client.xw4sonebra.pdb - null null -2026-01-16 11:19:00.469 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.469 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.469 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.469 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.469 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.472 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.472 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.472 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.472 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.472 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.472 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.472 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.472 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.472 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.472 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.472 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.473 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.473 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.474 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Account.HttpApi.Client.xw4sonebra.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ntmq6e7ewr-{0}-xw4sonebra-xw4sonebra.gz' -2026-01-16 11:19:00.474 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.474 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.HttpApi.Client.xw4sonebra.pdb - 200 18073 application/octet-stream 5.3317ms -2026-01-16 11:19:00.479 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.daohxpbk64.pdb - null null -2026-01-16 11:19:00.479 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.479 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.479 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.479 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.479 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.481 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.481 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.481 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.481 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.481 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.481 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.481 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.481 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.481 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.481 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.481 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.482 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.482 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.482 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.daohxpbk64.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\eoau05i0af-{0}-daohxpbk64-daohxpbk64.gz' -2026-01-16 11:19:00.482 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.482 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.daohxpbk64.pdb - 200 25305 application/octet-stream 3.8394ms -2026-01-16 11:19:00.487 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Contracts.s3jay9lijs.pdb - null null -2026-01-16 11:19:00.488 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.488 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.488 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.488 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.488 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.490 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.490 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.490 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.490 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.490 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.490 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.490 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.490 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.490 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.490 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.490 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.491 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.491 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.492 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.Contracts.s3jay9lijs.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ur1wb3r0pv-{0}-s3jay9lijs-s3jay9lijs.gz' -2026-01-16 11:19:00.492 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.492 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Contracts.s3jay9lijs.pdb - 200 26921 application/octet-stream 4.7015ms -2026-01-16 11:19:00.496 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.010la3geym.pdb - null null -2026-01-16 11:19:00.496 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.496 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.496 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.496 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.496 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.498 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.498 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.498 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.498 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.498 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.498 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.498 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.498 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.498 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.498 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.498 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.499 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.499 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.500 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Auditing.010la3geym.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\o0dl3ao57v-{0}-010la3geym-010la3geym.gz' -2026-01-16 11:19:00.500 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.500 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.010la3geym.pdb - 200 29913 application/octet-stream 3.8928ms -2026-01-16 11:19:00.505 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.Contracts.j9lxersni3.pdb - null null -2026-01-16 11:19:00.505 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.505 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.505 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.506 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.506 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.508 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.508 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.508 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.508 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.508 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.508 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.508 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.508 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.508 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.508 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.508 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.509 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.509 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.510 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Auditing.Contracts.j9lxersni3.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wqxp9ykz4o-{0}-j9lxersni3-j9lxersni3.gz' -2026-01-16 11:19:00.510 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.510 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.Contracts.j9lxersni3.pdb - 200 14417 application/octet-stream 5.0485ms -2026-01-16 11:19:00.515 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AuditLogging.Domain.Shared.ja33cne1y4.pdb - null null -2026-01-16 11:19:00.515 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.515 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.515 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.515 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.515 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.517 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.517 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.517 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.517 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.517 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.517 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.517 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.517 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.517 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.517 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.517 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.518 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.518 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.520 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AuditLogging.Domain.Shared.ja33cne1y4.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5199po5zxq-{0}-ja33cne1y4-ja33cne1y4.gz' -2026-01-16 11:19:00.520 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.520 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AuditLogging.Domain.Shared.ja33cne1y4.pdb - 200 16493 application/octet-stream 5.103ms -2026-01-16 11:19:00.524 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.fv4jer8had.pdb - null null -2026-01-16 11:19:00.525 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.525 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.525 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.525 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.525 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.528 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.528 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.528 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.528 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.528 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.528 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.528 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.528 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.528 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.528 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.528 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.529 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.529 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.530 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Authorization.fv4jer8had.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sb9kt3tht9-{0}-fv4jer8had-fv4jer8had.gz' -2026-01-16 11:19:00.530 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.530 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.fv4jer8had.pdb - 200 41330 application/octet-stream 5.2014ms -2026-01-16 11:19:00.533 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.Abstractions.qkr1909259.pdb - null null -2026-01-16 11:19:00.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.537 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.537 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.537 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.537 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.537 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.537 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.537 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.537 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.537 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.537 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.537 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.538 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.538 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.539 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Authorization.Abstractions.qkr1909259.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\09yc6y4n5e-{0}-qkr1909259-qkr1909259.gz' -2026-01-16 11:19:00.539 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.539 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.Abstractions.qkr1909259.pdb - 200 27181 application/octet-stream 5.6292ms -2026-01-16 11:19:00.544 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.1pnrwzlbft.pdb - null null -2026-01-16 11:19:00.544 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.544 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.544 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.544 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.544 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.546 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.546 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.546 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.546 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.546 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.546 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.546 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.546 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.546 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.546 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.546 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.546 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.547 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.547 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Autofac.1pnrwzlbft.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jpkrtenkjs-{0}-1pnrwzlbft-1pnrwzlbft.gz' -2026-01-16 11:19:00.547 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.547 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.1pnrwzlbft.pdb - 200 18693 application/octet-stream 3.7867ms -2026-01-16 11:19:00.551 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundJobs.Domain.Shared.6x2lyxdi49.pdb - null null -2026-01-16 11:19:00.551 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.551 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.551 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.551 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.551 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.554 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.554 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.554 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.554 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.554 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.554 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.554 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.554 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.554 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.554 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.554 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.555 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.555 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.556 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BackgroundJobs.Domain.Shared.6x2lyxdi49.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\htaazompkm-{0}-6x2lyxdi49-6x2lyxdi49.gz' -2026-01-16 11:19:00.556 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.556 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundJobs.Domain.Shared.6x2lyxdi49.pdb - 200 13221 application/octet-stream 4.8537ms -2026-01-16 11:19:00.560 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundWorkers.84b9jpts2h.pdb - null null -2026-01-16 11:19:00.560 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.560 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.560 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.560 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.560 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.562 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.562 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.562 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.562 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.562 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.562 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.562 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.562 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.563 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.563 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.563 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.563 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.563 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.564 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BackgroundWorkers.84b9jpts2h.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ei0v3zqng-{0}-84b9jpts2h-84b9jpts2h.gz' -2026-01-16 11:19:00.564 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.564 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundWorkers.84b9jpts2h.pdb - 200 19469 application/octet-stream 3.7956ms -2026-01-16 11:19:00.568 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Caching.nrhuxagqyn.pdb - null null -2026-01-16 11:19:00.568 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.568 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.568 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.568 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.568 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.571 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.571 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.571 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.571 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.571 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.571 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.571 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.571 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.571 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.571 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.571 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.571 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.572 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.572 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Caching.nrhuxagqyn.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wokijgaifq-{0}-nrhuxagqyn-nrhuxagqyn.gz' -2026-01-16 11:19:00.572 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.572 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Caching.nrhuxagqyn.pdb - 200 37286 application/octet-stream 4.7523ms -2026-01-16 11:19:00.578 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Castle.Core.qql2z8626p.pdb - null null -2026-01-16 11:19:00.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.578 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.578 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.578 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.578 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.580 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.580 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.580 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.580 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.580 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.580 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.581 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.581 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.581 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.581 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.581 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.581 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.581 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.582 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Castle.Core.qql2z8626p.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dte7v0ocsr-{0}-qql2z8626p-qql2z8626p.gz' -2026-01-16 11:19:00.582 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.582 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Castle.Core.qql2z8626p.pdb - 200 15221 application/octet-stream 4.2005ms -2026-01-16 11:19:00.587 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Core.jgtz8l9msa.pdb - null null -2026-01-16 11:19:00.587 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.587 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.587 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.587 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.587 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.590 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.590 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.590 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.590 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.590 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.590 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.590 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.590 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.590 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.590 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.590 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.591 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.591 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.593 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Core.jgtz8l9msa.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c42x4ftr8l-{0}-jgtz8l9msa-jgtz8l9msa.gz' -2026-01-16 11:19:00.593 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.593 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Core.jgtz8l9msa.pdb - 200 148177 application/octet-stream 5.9076ms -2026-01-16 11:19:00.597 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Data.gkvod30ltl.pdb - null null -2026-01-16 11:19:00.597 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.597 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.597 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.597 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.597 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.599 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.599 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.599 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.599 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.599 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.599 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.599 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.599 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.599 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.599 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.599 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.600 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.600 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.600 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Data.gkvod30ltl.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ze3wjukds-{0}-gkvod30ltl-gkvod30ltl.gz' -2026-01-16 11:19:00.600 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.600 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Data.gkvod30ltl.pdb - 200 21821 application/octet-stream 3.7871ms -2026-01-16 11:19:00.605 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Ddd.Application.Contracts.vj5ssd6smb.pdb - null null -2026-01-16 11:19:00.605 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.606 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.606 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.606 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.606 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.608 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.608 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.608 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.608 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.608 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.608 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.608 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.609 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.609 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.609 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.609 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.609 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.610 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.610 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Ddd.Application.Contracts.vj5ssd6smb.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5aiafzhp1m-{0}-vj5ssd6smb-vj5ssd6smb.gz' -2026-01-16 11:19:00.610 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.611 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Ddd.Application.Contracts.vj5ssd6smb.pdb - 200 23417 application/octet-stream 5.2894ms -2026-01-16 11:19:00.614 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.DistributedLocking.Abstractions.00vk7xomne.pdb - null null -2026-01-16 11:19:00.614 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.614 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.614 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.614 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.614 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.617 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.617 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.617 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.617 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.617 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.617 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.617 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.617 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.617 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.617 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.617 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.618 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.618 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.619 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.DistributedLocking.Abstractions.00vk7xomne.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\a8j0sb24cp-{0}-00vk7xomne-00vk7xomne.gz' -2026-01-16 11:19:00.619 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.619 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.DistributedLocking.Abstractions.00vk7xomne.pdb - 200 14657 application/octet-stream 5.1737ms -2026-01-16 11:19:00.623 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.obsuh9bstk.pdb - null null -2026-01-16 11:19:00.624 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.624 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.624 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.624 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.624 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.627 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.627 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.627 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.627 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.627 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.627 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.627 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.627 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.627 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.627 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.627 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.628 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.629 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.629 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.EventBus.obsuh9bstk.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c7ycdiyl76-{0}-obsuh9bstk-obsuh9bstk.gz' -2026-01-16 11:19:00.629 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.629 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.obsuh9bstk.pdb - 200 37630 application/octet-stream 6.2531ms -2026-01-16 11:19:00.634 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.Abstractions.uog1ci4sgq.pdb - null null -2026-01-16 11:19:00.634 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.635 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.635 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.635 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.635 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.638 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.638 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.638 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.638 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.638 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.638 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.638 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.639 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.639 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.639 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.639 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.639 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.639 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.640 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.EventBus.Abstractions.uog1ci4sgq.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\w7l86von3o-{0}-uog1ci4sgq-uog1ci4sgq.gz' -2026-01-16 11:19:00.640 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.641 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.Abstractions.uog1ci4sgq.pdb - 200 20237 application/octet-stream 6.4903ms -2026-01-16 11:19:00.645 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ExceptionHandling.6tzczng2j0.pdb - null null -2026-01-16 11:19:00.645 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.645 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.645 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.645 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.645 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.648 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.648 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.648 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.648 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.648 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.648 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.648 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.648 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.648 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.648 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.648 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.649 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.649 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.650 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ExceptionHandling.6tzczng2j0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\m6s0vb39gb-{0}-6tzczng2j0-6tzczng2j0.gz' -2026-01-16 11:19:00.650 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.650 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ExceptionHandling.6tzczng2j0.pdb - 200 20157 application/octet-stream 5.2228ms -2026-01-16 11:19:00.655 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Application.Contracts.trk07zvzhy.pdb - null null -2026-01-16 11:19:00.655 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.655 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.656 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.656 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.656 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.658 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.658 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.658 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.658 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.658 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.658 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.658 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.659 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.659 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.659 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.659 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.659 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.660 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.660 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Application.Contracts.trk07zvzhy.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0ru1qvb3x4-{0}-trk07zvzhy-trk07zvzhy.gz' -2026-01-16 11:19:00.660 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.660 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Application.Contracts.trk07zvzhy.pdb - 200 16981 application/octet-stream 5.5005ms -2026-01-16 11:19:00.665 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Domain.Shared.63wzbehoms.pdb - null null -2026-01-16 11:19:00.665 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.666 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.666 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.666 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.666 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.669 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.669 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.669 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.669 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.669 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.669 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.669 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.669 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.669 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.669 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.669 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.670 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.670 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.671 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Domain.Shared.63wzbehoms.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dnjx07a9gy-{0}-63wzbehoms-63wzbehoms.gz' -2026-01-16 11:19:00.671 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.671 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Domain.Shared.63wzbehoms.pdb - 200 18405 application/octet-stream 5.8549ms -2026-01-16 11:19:00.677 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.HttpApi.Client.wsx1yyj7pq.pdb - null null -2026-01-16 11:19:00.678 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.678 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.678 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.678 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.678 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.680 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.680 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.680 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.680 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.680 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.680 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.680 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.681 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.681 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.681 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.681 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.681 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.682 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.682 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.HttpApi.Client.wsx1yyj7pq.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xephdxvmqy-{0}-wsx1yyj7pq-wsx1yyj7pq.gz' -2026-01-16 11:19:00.682 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.682 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.HttpApi.Client.wsx1yyj7pq.pdb - 200 16661 application/octet-stream 5.0205ms -2026-01-16 11:19:00.687 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Features.xy47jjuxq0.pdb - null null -2026-01-16 11:19:00.687 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.687 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.687 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.687 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.687 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.690 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.690 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.690 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.690 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.690 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.690 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.690 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.690 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.690 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.690 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.690 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.691 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.692 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.693 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Features.xy47jjuxq0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lwwrm2rnuk-{0}-xy47jjuxq0-xy47jjuxq0.gz' -2026-01-16 11:19:00.693 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.693 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Features.xy47jjuxq0.pdb - 200 31093 application/octet-stream 5.7415ms -2026-01-16 11:19:00.697 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.GlobalFeatures.xvnpd3mrvh.pdb - null null -2026-01-16 11:19:00.698 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.698 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.698 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.698 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.698 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.700 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.700 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.700 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.700 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.700 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.700 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.700 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.700 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.700 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.700 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.700 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.701 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.701 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.702 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.GlobalFeatures.xvnpd3mrvh.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8hrz94lbbq-{0}-xvnpd3mrvh-xvnpd3mrvh.gz' -2026-01-16 11:19:00.703 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.703 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.GlobalFeatures.xvnpd3mrvh.pdb - 200 20401 application/octet-stream 5.4099ms -2026-01-16 11:19:00.708 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Guids.5m4gn3phwz.pdb - null null -2026-01-16 11:19:00.708 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.708 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.708 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.708 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.708 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.711 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.711 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.711 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.711 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.711 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.711 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.711 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.711 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.711 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.711 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.711 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.712 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.712 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.712 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Guids.5m4gn3phwz.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0qqhgjay94-{0}-5m4gn3phwz-5m4gn3phwz.gz' -2026-01-16 11:19:00.713 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.713 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Guids.5m4gn3phwz.pdb - 200 14061 application/octet-stream 5.0018ms -2026-01-16 11:19:00.716 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.7iokvl53ze.pdb - null null -2026-01-16 11:19:00.716 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.716 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.716 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.716 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.716 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.719 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.719 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.719 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.719 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.719 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.719 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.719 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.719 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.719 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.719 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.719 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.721 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.721 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.722 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.7iokvl53ze.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b3mu9af069-{0}-7iokvl53ze-7iokvl53ze.gz' -2026-01-16 11:19:00.722 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.722 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.7iokvl53ze.pdb - 200 31453 application/octet-stream 6.0419ms -2026-01-16 11:19:00.726 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Abstractions.0gocbyoijo.pdb - null null -2026-01-16 11:19:00.727 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.727 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.727 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.727 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.727 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.729 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.729 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.729 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.729 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.729 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.729 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.729 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.729 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.729 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.729 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.729 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.730 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.730 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.731 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Abstractions.0gocbyoijo.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j4y3kuv6se-{0}-0gocbyoijo-0gocbyoijo.gz' -2026-01-16 11:19:00.731 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.731 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Abstractions.0gocbyoijo.pdb - 200 13525 application/octet-stream 4.5991ms -2026-01-16 11:19:00.734 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.bv9ce64gqc.pdb - null null -2026-01-16 11:19:00.735 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.735 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.735 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.735 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.735 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.738 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.738 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.738 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.738 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.738 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.738 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.738 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.739 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.739 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.739 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.739 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.739 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.739 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.740 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.bv9ce64gqc.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ttya30eyt8-{0}-bv9ce64gqc-bv9ce64gqc.gz' -2026-01-16 11:19:00.740 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.740 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.bv9ce64gqc.pdb - 200 38918 application/octet-stream 6.2743ms -2026-01-16 11:19:00.746 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.8t8trbqbju.pdb - null null -2026-01-16 11:19:00.746 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.746 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.746 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.746 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.746 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.749 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.749 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.749 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.749 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.749 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.749 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.749 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.750 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.750 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.750 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.750 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.750 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.750 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.751 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.IdentityModel.8t8trbqbju.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\d3rz4s2afx-{0}-8t8trbqbju-8t8trbqbju.gz' -2026-01-16 11:19:00.751 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.752 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.8t8trbqbju.pdb - 200 16433 application/octet-stream 5.6542ms -2026-01-16 11:19:00.757 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Application.Contracts.5q38wyga9r.pdb - null null -2026-01-16 11:19:00.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.757 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.757 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.757 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.757 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.761 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.761 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.761 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.761 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.761 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.761 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.761 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.761 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.761 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.761 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.761 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.762 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.762 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.763 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Application.Contracts.5q38wyga9r.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\h1go2ee35q-{0}-5q38wyga9r-5q38wyga9r.gz' -2026-01-16 11:19:00.763 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.763 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Application.Contracts.5q38wyga9r.pdb - 200 20665 application/octet-stream 6.1791ms -2026-01-16 11:19:00.767 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Domain.Shared.k95i01gbm4.pdb - null null -2026-01-16 11:19:00.767 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.767 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.767 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.767 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.767 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.771 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.771 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.771 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.771 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.771 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.771 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.771 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.772 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.772 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.772 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.772 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.772 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.773 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.774 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Domain.Shared.k95i01gbm4.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wq3qylwiyp-{0}-k95i01gbm4-k95i01gbm4.gz' -2026-01-16 11:19:00.774 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.774 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Domain.Shared.k95i01gbm4.pdb - 200 23785 application/octet-stream 6.9276ms -2026-01-16 11:19:00.779 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.HttpApi.Client.jga29k0op5.pdb - null null -2026-01-16 11:19:00.780 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.780 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.780 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.780 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.780 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.782 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.782 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.782 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.782 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.782 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.782 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.782 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.782 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.782 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.782 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.782 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.783 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.783 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.784 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.HttpApi.Client.jga29k0op5.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0u48eqlsj4-{0}-jga29k0op5-jga29k0op5.gz' -2026-01-16 11:19:00.784 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.784 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.HttpApi.Client.jga29k0op5.pdb - 200 23337 application/octet-stream 4.6619ms -2026-01-16 11:19:00.789 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.IdentityModel.cn7pa5qn4i.pdb - null null -2026-01-16 11:19:00.790 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.790 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.790 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.790 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.790 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.793 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.793 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.793 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.793 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.793 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.793 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.793 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.793 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.793 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.793 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.793 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.794 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.794 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.795 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.IdentityModel.cn7pa5qn4i.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\poi5v0je1c-{0}-cn7pa5qn4i-cn7pa5qn4i.gz' -2026-01-16 11:19:00.795 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.795 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.IdentityModel.cn7pa5qn4i.pdb - 200 20817 application/octet-stream 5.5333ms -2026-01-16 11:19:00.799 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.eunmf9vqak.pdb - null null -2026-01-16 11:19:00.800 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.800 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.800 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.800 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.800 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.803 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.803 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.803 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.803 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.803 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.803 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.803 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.803 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.803 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.803 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.803 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.804 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.804 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.805 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.eunmf9vqak.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rrchruuh0t-{0}-eunmf9vqak-eunmf9vqak.gz' -2026-01-16 11:19:00.805 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.805 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.eunmf9vqak.pdb - 200 13757 application/octet-stream 5.6797ms -2026-01-16 11:19:00.809 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.Abstractions.6fjqkkc59b.pdb - null null -2026-01-16 11:19:00.809 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.809 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.809 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.809 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.809 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.812 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.812 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.812 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.812 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.812 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.812 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.812 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.812 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.812 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.812 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.812 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.813 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.813 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.813 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.Abstractions.6fjqkkc59b.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\u9w5uxptpu-{0}-6fjqkkc59b-6fjqkkc59b.gz' -2026-01-16 11:19:00.813 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.814 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.Abstractions.6fjqkkc59b.pdb - 200 13249 application/octet-stream 4.7854ms -2026-01-16 11:19:00.817 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.SystemTextJson.7kfnybvbb3.pdb - null null -2026-01-16 11:19:00.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.817 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.817 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.817 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.817 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.820 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.820 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.820 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.820 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.820 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.820 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.820 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.820 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.821 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.821 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.821 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.821 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.822 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.822 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.SystemTextJson.7kfnybvbb3.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4rl2glc87e-{0}-7kfnybvbb3-7kfnybvbb3.gz' -2026-01-16 11:19:00.822 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.823 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.SystemTextJson.7kfnybvbb3.pdb - 200 21501 application/octet-stream 6.0158ms -2026-01-16 11:19:00.828 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.vtlp5c95du.pdb - null null -2026-01-16 11:19:00.828 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.828 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.828 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.828 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.828 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.831 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.831 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.831 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.831 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.831 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.831 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.831 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.831 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.831 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.831 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.831 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.832 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.832 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.833 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Localization.vtlp5c95du.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9jz0202bvx-{0}-vtlp5c95du-vtlp5c95du.gz' -2026-01-16 11:19:00.833 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.833 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.vtlp5c95du.pdb - 200 34682 application/octet-stream 5.3189ms -2026-01-16 11:19:00.838 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.Abstractions.ppu2e0n398.pdb - null null -2026-01-16 11:19:00.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.838 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.839 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.839 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.839 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.842 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.842 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.842 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.842 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.842 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.842 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.842 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.842 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.842 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.843 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.843 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.843 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.844 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.844 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Localization.Abstractions.ppu2e0n398.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nql43ug6yv-{0}-ppu2e0n398-ppu2e0n398.gz' -2026-01-16 11:19:00.844 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.845 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.Abstractions.ppu2e0n398.pdb - 200 16505 application/octet-stream 6.5717ms -2026-01-16 11:19:00.848 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Mapperly.6gpx5rpu92.pdb - null null -2026-01-16 11:19:00.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.851 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.851 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.852 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.852 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.852 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.852 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.852 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.852 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.852 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.852 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.852 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.853 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.853 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.854 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Mapperly.6gpx5rpu92.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ir90d0l0q4-{0}-6gpx5rpu92-6gpx5rpu92.gz' -2026-01-16 11:19:00.854 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.854 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Mapperly.6gpx5rpu92.pdb - 200 18489 application/octet-stream 5.5094ms -2026-01-16 11:19:00.859 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Minify.udx15cdqul.pdb - null null -2026-01-16 11:19:00.860 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.860 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.860 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.860 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.860 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.863 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.863 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.863 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.863 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.863 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.863 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.863 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.863 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.863 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.863 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.863 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.863 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.864 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.864 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Minify.udx15cdqul.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6nicogsytc-{0}-udx15cdqul-udx15cdqul.gz' -2026-01-16 11:19:00.864 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.864 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Minify.udx15cdqul.pdb - 200 14637 application/octet-stream 5.0656ms -2026-01-16 11:19:00.868 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.loqn53ymi8.pdb - null null -2026-01-16 11:19:00.868 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.868 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.868 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.869 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.869 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.872 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.872 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.872 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.872 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.872 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.872 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.872 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.872 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.872 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.872 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.872 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.873 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.873 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.874 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MultiTenancy.loqn53ymi8.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xypgrhxtpa-{0}-loqn53ymi8-loqn53ymi8.gz' -2026-01-16 11:19:00.874 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.875 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.loqn53ymi8.pdb - 200 21073 application/octet-stream 6.9178ms -2026-01-16 11:19:00.879 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.Abstractions.u0hetyrdbb.pdb - null null -2026-01-16 11:19:00.880 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.880 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.880 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.880 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.880 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.882 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.882 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.882 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.882 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.883 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.883 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.883 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.883 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.883 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.883 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.883 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.883 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.884 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.884 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MultiTenancy.Abstractions.u0hetyrdbb.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bwd6m19o6e-{0}-u0hetyrdbb-u0hetyrdbb.gz' -2026-01-16 11:19:00.884 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.885 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.Abstractions.u0hetyrdbb.pdb - 200 19661 application/octet-stream 5.3714ms -2026-01-16 11:19:00.890 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectExtending.dojwixnkml.pdb - null null -2026-01-16 11:19:00.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.890 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.890 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.890 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.890 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.893 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.893 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.893 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.893 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.893 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.893 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.893 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.893 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.893 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.893 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.893 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.894 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.894 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.895 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ObjectExtending.dojwixnkml.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wybocaa0up-{0}-dojwixnkml-dojwixnkml.gz' -2026-01-16 11:19:00.895 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.895 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectExtending.dojwixnkml.pdb - 200 31977 application/octet-stream 5.2876ms -2026-01-16 11:19:00.899 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectMapping.g9a8v1kuke.pdb - null null -2026-01-16 11:19:00.899 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.899 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.899 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.899 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.899 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.902 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.902 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.903 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.903 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.903 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.903 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.903 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.903 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.903 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.903 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.903 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.904 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.904 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.905 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ObjectMapping.g9a8v1kuke.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fsnac4k4sd-{0}-g9a8v1kuke-g9a8v1kuke.gz' -2026-01-16 11:19:00.905 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.906 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectMapping.g9a8v1kuke.pdb - 200 17133 application/octet-stream 6.6478ms -2026-01-16 11:19:00.910 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.OpenIddict.Domain.Shared.7dffnbqykk.pdb - null null -2026-01-16 11:19:00.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.913 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.913 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.913 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.913 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.913 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.913 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.913 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.913 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.913 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.913 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.913 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.914 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.914 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.914 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.OpenIddict.Domain.Shared.7dffnbqykk.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ofhohlcsdd-{0}-7dffnbqykk-7dffnbqykk.gz' -2026-01-16 11:19:00.914 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.915 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.OpenIddict.Domain.Shared.7dffnbqykk.pdb - 200 17397 application/octet-stream 4.6408ms -2026-01-16 11:19:00.919 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Application.Contracts.c0zkm3lesk.pdb - null null -2026-01-16 11:19:00.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.923 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.923 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.923 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.923 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.923 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.923 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.923 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.923 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.923 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.923 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.923 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.924 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.924 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.925 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Application.Contracts.c0zkm3lesk.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0j5tpaf1fb-{0}-c0zkm3lesk-c0zkm3lesk.gz' -2026-01-16 11:19:00.925 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.925 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Application.Contracts.c0zkm3lesk.pdb - 200 18373 application/octet-stream 5.8821ms -2026-01-16 11:19:00.929 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Domain.Shared.151t5wqow9.pdb - null null -2026-01-16 11:19:00.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.932 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.932 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.932 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.932 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.932 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.932 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.932 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.932 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.932 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.932 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.932 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.932 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.932 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.933 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Domain.Shared.151t5wqow9.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c9ti4wxngh-{0}-151t5wqow9-151t5wqow9.gz' -2026-01-16 11:19:00.933 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.933 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Domain.Shared.151t5wqow9.pdb - 200 16501 application/octet-stream 4.524ms -2026-01-16 11:19:00.940 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.HttpApi.Client.743wyetc4f.pdb - null null -2026-01-16 11:19:00.940 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.940 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.940 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.940 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.940 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.943 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.943 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.943 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.943 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.943 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.943 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.943 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.943 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.943 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.943 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.943 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.944 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.944 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.945 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.HttpApi.Client.743wyetc4f.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7d7e24takc-{0}-743wyetc4f-743wyetc4f.gz' -2026-01-16 11:19:00.945 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.945 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.HttpApi.Client.743wyetc4f.pdb - 200 18361 application/octet-stream 5.6111ms -2026-01-16 11:19:00.949 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.RemoteServices.vpefptaxdj.pdb - null null -2026-01-16 11:19:00.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.950 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.950 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.950 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.950 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.953 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.953 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.953 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.953 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.953 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.953 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.953 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.953 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.953 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.954 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.954 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.954 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.955 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.956 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.RemoteServices.vpefptaxdj.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uib6a0l2w6-{0}-vpefptaxdj-vpefptaxdj.gz' -2026-01-16 11:19:00.956 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.956 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.RemoteServices.vpefptaxdj.pdb - 200 16053 application/octet-stream 6.459ms -2026-01-16 11:19:00.959 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Security.tu1izo1pns.pdb - null null -2026-01-16 11:19:00.960 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.960 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.960 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.960 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.960 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.963 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.963 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.963 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.963 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.963 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.963 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.963 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.963 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.963 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.963 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.963 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.964 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.964 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.965 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Security.tu1izo1pns.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sx6n9iy4yj-{0}-tu1izo1pns-tu1izo1pns.gz' -2026-01-16 11:19:00.965 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.965 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Security.tu1izo1pns.pdb - 200 29941 application/octet-stream 5.1754ms -2026-01-16 11:19:00.970 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Serialization.k7k0bj520f.pdb - null null -2026-01-16 11:19:00.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.970 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.970 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.970 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.970 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.974 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.974 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.974 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.974 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.974 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.974 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.974 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.974 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.974 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.974 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.974 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.975 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.975 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.976 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Serialization.k7k0bj520f.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ohz7m9cvuj-{0}-k7k0bj520f-k7k0bj520f.gz' -2026-01-16 11:19:00.976 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.976 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Serialization.k7k0bj520f.pdb - 200 13901 application/octet-stream 6.0884ms -2026-01-16 11:19:00.980 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Application.Contracts.u3o4kjdjyb.pdb - null null -2026-01-16 11:19:00.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.981 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.981 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.981 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.981 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.984 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.984 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.984 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.984 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.984 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.984 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.984 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.984 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.984 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.984 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.984 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.986 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.986 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.987 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Application.Contracts.u3o4kjdjyb.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n5hx9tj0h8-{0}-u3o4kjdjyb-u3o4kjdjyb.gz' -2026-01-16 11:19:00.987 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.987 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Application.Contracts.u3o4kjdjyb.pdb - 200 17249 application/octet-stream 6.9151ms -2026-01-16 11:19:00.992 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Domain.Shared.eg5zkpqtbf.pdb - null null -2026-01-16 11:19:00.993 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.993 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:00.993 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:00.993 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:00.993 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:00.996 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.996 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.996 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:00.996 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:00.996 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:00.996 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:00.996 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.997 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:00.997 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:00.997 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:00.997 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:00.998 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:00.998 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.999 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Domain.Shared.eg5zkpqtbf.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gpxmodrted-{0}-eg5zkpqtbf-eg5zkpqtbf.gz' -2026-01-16 11:19:00.999 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:00.999 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Domain.Shared.eg5zkpqtbf.pdb - 200 15881 application/octet-stream 6.9263ms -2026-01-16 11:19:01.005 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.HttpApi.Client.dx6o5olyzl.pdb - null null -2026-01-16 11:19:01.006 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.006 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.006 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.006 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.006 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.011 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.011 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.011 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.011 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.011 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.011 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.011 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.011 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.011 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.011 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.011 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.012 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.012 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.013 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.HttpApi.Client.dx6o5olyzl.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vwkga7y8v6-{0}-dx6o5olyzl-dx6o5olyzl.gz' -2026-01-16 11:19:01.013 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.013 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.HttpApi.Client.dx6o5olyzl.pdb - 200 17273 application/octet-stream 8.1879ms -2026-01-16 11:19:01.018 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Settings.14pu5cpqdi.pdb - null null -2026-01-16 11:19:01.019 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.019 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.019 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.019 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.019 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.022 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.022 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.022 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.022 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.022 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.022 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.022 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.023 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.023 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.023 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.023 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.024 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.024 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.025 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Settings.14pu5cpqdi.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\69ib14dhz4-{0}-14pu5cpqdi-14pu5cpqdi.gz' -2026-01-16 11:19:01.025 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.026 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Settings.14pu5cpqdi.pdb - 200 24709 application/octet-stream 7.3751ms -2026-01-16 11:19:01.031 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Application.Contracts.2icv9bb4mn.pdb - null null -2026-01-16 11:19:01.031 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.031 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.031 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.031 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.034 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.034 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.034 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.034 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.034 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.034 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.034 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.034 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.034 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.034 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.034 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.035 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.035 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.036 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Application.Contracts.2icv9bb4mn.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\usk06ilw8g-{0}-2icv9bb4mn-2icv9bb4mn.gz' -2026-01-16 11:19:01.036 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.036 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Application.Contracts.2icv9bb4mn.pdb - 200 16305 application/octet-stream 4.707ms -2026-01-16 11:19:01.047 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Domain.Shared.g7dv5e6o9v.pdb - null null -2026-01-16 11:19:01.047 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.047 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.047 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.047 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.047 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.064 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.064 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.064 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.064 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.064 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.064 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.064 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.065 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.065 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.065 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.065 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.065 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.065 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.066 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Domain.Shared.g7dv5e6o9v.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\byh2ge6bdr-{0}-g7dv5e6o9v-g7dv5e6o9v.gz' -2026-01-16 11:19:01.066 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.066 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Domain.Shared.g7dv5e6o9v.pdb - 200 15609 application/octet-stream 19.2621ms -2026-01-16 11:19:01.070 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.HttpApi.Client.ka9i5ruw0x.pdb - null null -2026-01-16 11:19:01.071 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.071 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.071 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.071 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.071 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.073 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.073 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.073 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.073 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.073 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.073 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.073 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.073 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.073 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.073 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.073 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.074 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.074 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.075 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.HttpApi.Client.ka9i5ruw0x.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b6ncobn1go-{0}-ka9i5ruw0x-ka9i5ruw0x.gz' -2026-01-16 11:19:01.075 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.075 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.HttpApi.Client.ka9i5ruw0x.pdb - 200 17253 application/octet-stream 4.8012ms -2026-01-16 11:19:01.079 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Threading.i7xtu3taf2.pdb - null null -2026-01-16 11:19:01.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.079 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.080 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.080 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.080 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.082 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.082 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.082 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.082 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.082 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.082 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.082 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.082 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.082 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.082 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.082 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.082 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.082 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.083 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Threading.i7xtu3taf2.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\m4kji2jf2d-{0}-i7xtu3taf2-i7xtu3taf2.gz' -2026-01-16 11:19:01.083 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.083 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Threading.i7xtu3taf2.pdb - 200 22745 application/octet-stream 4.0679ms -2026-01-16 11:19:01.098 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Timing.zikimaxx74.pdb - null null -2026-01-16 11:19:01.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.100 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.100 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.100 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.100 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.100 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.100 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.100 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.100 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.100 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.100 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.100 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.101 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.101 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.101 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Timing.zikimaxx74.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ku2s5mtpx-{0}-zikimaxx74-zikimaxx74.gz' -2026-01-16 11:19:01.101 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.102 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Timing.zikimaxx74.pdb - 200 17233 application/octet-stream 3.893ms -2026-01-16 11:19:01.111 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.6asw5wvgbm.pdb - null null -2026-01-16 11:19:01.111 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.112 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.112 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.112 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.112 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.114 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.114 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.114 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.114 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.114 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.114 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.114 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.114 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.114 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.114 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.114 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.115 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.115 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.115 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.UI.6asw5wvgbm.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ojvava7kjz-{0}-6asw5wvgbm-6asw5wvgbm.gz' -2026-01-16 11:19:01.115 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.116 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.6asw5wvgbm.pdb - 200 15269 application/octet-stream 4.3709ms -2026-01-16 11:19:01.120 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.Navigation.0uohp1hz3c.pdb - null null -2026-01-16 11:19:01.121 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.121 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.121 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.121 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.121 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.123 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.123 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.123 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.123 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.123 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.123 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.123 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.124 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.124 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.124 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.124 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.124 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.124 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.125 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.UI.Navigation.0uohp1hz3c.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\opi85np659-{0}-0uohp1hz3c-0uohp1hz3c.gz' -2026-01-16 11:19:01.125 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.125 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.Navigation.0uohp1hz3c.pdb - 200 25665 application/octet-stream 5.2144ms -2026-01-16 11:19:01.132 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Uow.5e91rvkdrb.pdb - null null -2026-01-16 11:19:01.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.132 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.132 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.132 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.132 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.138 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.138 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.138 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.138 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.138 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.138 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.138 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.138 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.138 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.138 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.138 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.139 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.139 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.140 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Uow.5e91rvkdrb.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\37xxpsk7fy-{0}-5e91rvkdrb-5e91rvkdrb.gz' -2026-01-16 11:19:01.140 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.140 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Uow.5e91rvkdrb.pdb - 200 26921 application/octet-stream 8.6029ms -2026-01-16 11:19:01.145 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Abstractions.orb44rjru0.pdb - null null -2026-01-16 11:19:01.145 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.145 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.145 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.145 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.145 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.148 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.148 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.148 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.148 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.148 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.148 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.148 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.148 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.148 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.148 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.148 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.148 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.148 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.149 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Users.Abstractions.orb44rjru0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\02tit97twy-{0}-orb44rjru0-orb44rjru0.gz' -2026-01-16 11:19:01.149 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.149 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Abstractions.orb44rjru0.pdb - 200 16949 application/octet-stream 4.47ms -2026-01-16 11:19:01.154 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Domain.Shared.vgsk234b3o.pdb - null null -2026-01-16 11:19:01.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.154 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.155 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.155 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.155 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.157 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.157 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.157 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.157 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.157 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.157 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.157 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.157 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.157 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.157 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.157 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.158 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.158 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.158 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Users.Domain.Shared.vgsk234b3o.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\i5q2ei5dis-{0}-vgsk234b3o-vgsk234b3o.gz' -2026-01-16 11:19:01.158 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.158 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Domain.Shared.vgsk234b3o.pdb - 200 13285 application/octet-stream 4.3585ms -2026-01-16 11:19:01.162 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.2signrlt2s.pdb - null null -2026-01-16 11:19:01.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.162 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.162 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.162 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.162 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.164 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.164 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.164 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.164 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.164 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.164 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.164 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.164 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.164 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.164 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.164 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.165 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.165 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.166 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Validation.2signrlt2s.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wypl5pd007-{0}-2signrlt2s-2signrlt2s.gz' -2026-01-16 11:19:01.166 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.166 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.2signrlt2s.pdb - 200 24513 application/octet-stream 4.156ms -2026-01-16 11:19:01.174 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.Abstractions.w444c7rnxm.pdb - null null -2026-01-16 11:19:01.175 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.175 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.175 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.175 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.175 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.177 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.177 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.177 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.177 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.177 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.177 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.177 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.178 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.178 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.178 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.178 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.178 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.178 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.179 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Validation.Abstractions.w444c7rnxm.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mb6vj9j06o-{0}-w444c7rnxm-w444c7rnxm.gz' -2026-01-16 11:19:01.179 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.179 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.Abstractions.w444c7rnxm.pdb - 200 14137 application/octet-stream 4.5593ms -2026-01-16 11:19:01.183 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.VirtualFileSystem.7z6calscx3.pdb - null null -2026-01-16 11:19:01.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.183 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.183 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.183 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.183 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.186 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.186 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.186 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.186 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.186 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.186 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.186 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.187 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.187 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.187 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.187 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.188 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.188 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.189 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.VirtualFileSystem.7z6calscx3.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9vnkhoiruq-{0}-7z6calscx3-7z6calscx3.gz' -2026-01-16 11:19:01.189 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.189 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.VirtualFileSystem.7z6calscx3.pdb - 200 21449 application/octet-stream 5.9969ms -2026-01-16 11:19:01.193 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.bhmldwzrg8.pdb - null null -2026-01-16 11:19:01.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.194 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.194 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.194 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.194 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.196 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.197 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.197 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.197 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.197 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.197 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.197 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.197 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.197 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.197 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.197 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.197 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.197 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.198 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.bhmldwzrg8.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\21kkcfw31s-{0}-bhmldwzrg8-bhmldwzrg8.gz' -2026-01-16 11:19:01.198 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.198 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.bhmldwzrg8.pdb - 200 32493 application/octet-stream 4.6453ms -2026-01-16 11:19:01.202 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Autofac.le1wnuzdja.wasm - null null -2026-01-16 11:19:01.203 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.203 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.203 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.203 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.203 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.205 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.205 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.205 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.205 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.205 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.205 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.205 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.206 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.206 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.206 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.206 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.206 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.207 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.209 +03:00 [INF] Sending file. Request path: '_framework/Autofac.le1wnuzdja.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\le2bmj2hd0-{0}-le1wnuzdja-le1wnuzdja.gz' -2026-01-16 11:19:01.209 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.209 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Autofac.le1wnuzdja.wasm - 200 375661 application/wasm 6.9824ms -2026-01-16 11:19:01.272 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Autofac.Extensions.DependencyInjection.slmisa3m0h.wasm - null null -2026-01-16 11:19:01.273 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.273 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.273 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.273 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.273 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.276 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.276 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.276 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.276 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.276 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.276 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.276 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.277 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.277 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.277 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.277 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.277 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.278 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.278 +03:00 [INF] Sending file. Request path: '_framework/Autofac.Extensions.DependencyInjection.slmisa3m0h.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4h1lb8bivh-{0}-slmisa3m0h-slmisa3m0h.gz' -2026-01-16 11:19:01.278 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.279 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Autofac.Extensions.DependencyInjection.slmisa3m0h.wasm - 200 28470 application/wasm 6.7962ms -2026-01-16 11:19:01.284 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Autofac.Extras.DynamicProxy.tlrq82knod.wasm - null null -2026-01-16 11:19:01.285 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.285 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.286 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.286 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.286 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.288 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.288 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.288 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.288 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.288 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.288 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.288 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.288 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.288 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.289 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.289 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.289 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.289 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.290 +03:00 [INF] Sending file. Request path: '_framework/Autofac.Extras.DynamicProxy.tlrq82knod.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5nm56h6008-{0}-tlrq82knod-tlrq82knod.gz' -2026-01-16 11:19:01.290 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.290 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Autofac.Extras.DynamicProxy.tlrq82knod.wasm - 200 20278 application/wasm 5.9262ms -2026-01-16 11:19:01.298 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Blazorise.b7jgl9ok7l.wasm - null null -2026-01-16 11:19:01.299 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.299 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.299 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.299 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.299 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.302 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.302 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.302 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.302 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.302 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.302 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.302 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.302 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.302 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.302 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.302 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.303 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.303 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.317 +03:00 [INF] Sending file. Request path: '_framework/Blazorise.b7jgl9ok7l.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nf98avu1u9-{0}-b7jgl9ok7l-b7jgl9ok7l.gz' -2026-01-16 11:19:01.317 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.317 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Blazorise.b7jgl9ok7l.wasm - 200 1520668 application/wasm 19.1377ms -2026-01-16 11:19:01.328 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Blazorise.Bootstrap5.rtyv8tyzko.wasm - null null -2026-01-16 11:19:01.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.329 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.329 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.329 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.329 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.331 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.331 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.331 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.331 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.331 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.331 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.331 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.331 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.331 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.331 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.331 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.332 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.332 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.333 +03:00 [INF] Sending file. Request path: '_framework/Blazorise.Bootstrap5.rtyv8tyzko.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\zme3jcftw8-{0}-rtyv8tyzko-rtyv8tyzko.gz' -2026-01-16 11:19:01.333 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.333 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Blazorise.Bootstrap5.rtyv8tyzko.wasm - 200 119621 application/wasm 4.9797ms -2026-01-16 11:19:01.338 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Blazorise.Components.yo1ahawdcj.wasm - null null -2026-01-16 11:19:01.339 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.339 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.339 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.339 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.339 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.341 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.341 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.341 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.341 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.341 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.341 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.341 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.341 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.341 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.341 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.341 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.342 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.342 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.343 +03:00 [INF] Sending file. Request path: '_framework/Blazorise.Components.yo1ahawdcj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\o9zothbqd4-{0}-yo1ahawdcj-yo1ahawdcj.gz' -2026-01-16 11:19:01.343 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.344 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Blazorise.Components.yo1ahawdcj.wasm - 200 140618 application/wasm 5.5631ms -2026-01-16 11:19:01.347 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Blazorise.DataGrid.nkaqc97wzz.wasm - null null -2026-01-16 11:19:01.348 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.348 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.348 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.348 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.348 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.350 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.350 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.350 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.350 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.350 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.350 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.350 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.350 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.350 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.350 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.350 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.351 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.351 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.354 +03:00 [INF] Sending file. Request path: '_framework/Blazorise.DataGrid.nkaqc97wzz.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8oc6tn48ma-{0}-nkaqc97wzz-nkaqc97wzz.gz' -2026-01-16 11:19:01.354 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.354 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Blazorise.DataGrid.nkaqc97wzz.wasm - 200 514945 application/wasm 7.0033ms -2026-01-16 11:19:01.360 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Blazorise.Icons.FontAwesome.1xtclit6aq.wasm - null null -2026-01-16 11:19:01.361 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.361 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.361 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.361 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.361 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.363 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.363 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.363 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.363 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.363 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.363 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.363 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.363 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.363 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.364 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.364 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.364 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.364 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.365 +03:00 [INF] Sending file. Request path: '_framework/Blazorise.Icons.FontAwesome.1xtclit6aq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b9svievc4z-{0}-1xtclit6aq-1xtclit6aq.gz' -2026-01-16 11:19:01.365 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.366 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Blazorise.Icons.FontAwesome.1xtclit6aq.wasm - 200 134474 application/wasm 5.1422ms -2026-01-16 11:19:01.370 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Blazorise.Licensing.5q2r77toij.wasm - null null -2026-01-16 11:19:01.371 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.371 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.371 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.371 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.371 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.374 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.374 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.374 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.374 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.374 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.374 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.374 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.374 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.374 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.374 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.374 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.375 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.375 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.376 +03:00 [INF] Sending file. Request path: '_framework/Blazorise.Licensing.5q2r77toij.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bebsec1d96-{0}-5q2r77toij-5q2r77toij.gz' -2026-01-16 11:19:01.376 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.376 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Blazorise.Licensing.5q2r77toij.wasm - 200 20278 application/wasm 5.5771ms -2026-01-16 11:19:01.381 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Blazorise.Snackbar.vp0gf9ev05.wasm - null null -2026-01-16 11:19:01.382 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.382 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.382 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.382 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.382 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.384 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.384 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.384 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.384 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.384 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.384 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.384 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.384 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.384 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.384 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.384 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.384 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.385 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.385 +03:00 [INF] Sending file. Request path: '_framework/Blazorise.Snackbar.vp0gf9ev05.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lvl6wsxwb7-{0}-vp0gf9ev05-vp0gf9ev05.gz' -2026-01-16 11:19:01.385 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.386 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Blazorise.Snackbar.vp0gf9ev05.wasm - 200 32054 application/wasm 4.5221ms -2026-01-16 11:19:01.391 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Castle.Core.dr7ya1fwgr.wasm - null null -2026-01-16 11:19:01.392 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.392 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.392 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.392 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.392 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.394 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.394 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.394 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.394 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.394 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.394 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.394 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.394 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.394 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.394 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.394 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.395 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.395 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.397 +03:00 [INF] Sending file. Request path: '_framework/Castle.Core.dr7ya1fwgr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mehy9ugib8-{0}-dr7ya1fwgr-dr7ya1fwgr.gz' -2026-01-16 11:19:01.397 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.397 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Castle.Core.dr7ya1fwgr.wasm - 200 388461 application/wasm 6.2666ms -2026-01-16 11:19:01.401 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Castle.Core.AsyncInterceptor.phbi0db4mk.wasm - null null -2026-01-16 11:19:01.402 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.402 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.402 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.402 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.402 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.405 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.405 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.405 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.405 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.405 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.405 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.405 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.405 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.405 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.405 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.405 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.406 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.406 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.407 +03:00 [INF] Sending file. Request path: '_framework/Castle.Core.AsyncInterceptor.phbi0db4mk.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dnds4j2x25-{0}-phbi0db4mk-phbi0db4mk.gz' -2026-01-16 11:19:01.407 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.407 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Castle.Core.AsyncInterceptor.phbi0db4mk.wasm - 200 19254 application/wasm 5.7084ms -2026-01-16 11:19:01.410 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Duende.IdentityModel.w8uizqq8rq.wasm - null null -2026-01-16 11:19:01.411 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.411 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.411 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.411 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.411 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.413 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.413 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.413 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.413 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.413 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.413 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.413 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.414 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.414 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.414 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.414 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.414 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.414 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.416 +03:00 [INF] Sending file. Request path: '_framework/Duende.IdentityModel.w8uizqq8rq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2h3cgpc6ac-{0}-w8uizqq8rq-w8uizqq8rq.gz' -2026-01-16 11:19:01.416 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.416 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Duende.IdentityModel.w8uizqq8rq.wasm - 200 202580 application/wasm 5.4447ms -2026-01-16 11:19:01.420 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/JetBrains.Annotations.30nyqsrum5.wasm - null null -2026-01-16 11:19:01.421 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.421 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.421 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.421 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.421 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.423 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.423 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.423 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.423 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.423 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.423 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.423 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.424 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.424 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.424 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.424 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.424 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.424 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.425 +03:00 [INF] Sending file. Request path: '_framework/JetBrains.Annotations.30nyqsrum5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6sdzj3kgop-{0}-30nyqsrum5-30nyqsrum5.gz' -2026-01-16 11:19:01.425 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.425 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/JetBrains.Annotations.30nyqsrum5.wasm - 200 122181 application/wasm 5.3553ms -2026-01-16 11:19:01.429 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Authorization.f7yamg8acn.wasm - null null -2026-01-16 11:19:01.430 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.430 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.430 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.430 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.430 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.432 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.432 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.432 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.432 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.432 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.432 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.432 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.432 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.432 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.432 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.432 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.433 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.433 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.433 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Authorization.f7yamg8acn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\y8t8qzdrbk-{0}-f7yamg8acn-f7yamg8acn.gz' -2026-01-16 11:19:01.433 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.433 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Authorization.f7yamg8acn.wasm - 200 45371 application/wasm 4.0622ms -2026-01-16 11:19:01.438 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.i180xx2qq9.wasm - null null -2026-01-16 11:19:01.439 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.439 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.439 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.440 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.440 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.442 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.442 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.442 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.442 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.442 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.442 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.442 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.442 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.442 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.442 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.442 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.443 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.443 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.445 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.i180xx2qq9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\00mrq6s2ss-{0}-i180xx2qq9-i180xx2qq9.gz' -2026-01-16 11:19:01.445 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.445 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.i180xx2qq9.wasm - 200 388973 application/wasm 6.6749ms -2026-01-16 11:19:01.449 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Authorization.8nosel0t6a.wasm - null null -2026-01-16 11:19:01.449 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.449 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.449 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.449 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.449 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.452 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.452 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.452 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.452 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.452 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.452 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.452 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.452 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.452 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.452 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.452 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.453 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.453 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.454 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.Authorization.8nosel0t6a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b9vfzkzuzt-{0}-8nosel0t6a-8nosel0t6a.gz' -2026-01-16 11:19:01.454 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.454 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Authorization.8nosel0t6a.wasm - 200 23862 application/wasm 5.1404ms -2026-01-16 11:19:01.458 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Forms.au92kshad9.wasm - null null -2026-01-16 11:19:01.459 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.459 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.459 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.459 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.459 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.461 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.461 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.461 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.461 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.461 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.461 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.461 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.461 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.461 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.461 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.461 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.462 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.462 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.463 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.Forms.au92kshad9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0l9h2m1r4h-{0}-au92kshad9-au92kshad9.gz' -2026-01-16 11:19:01.463 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.463 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Forms.au92kshad9.wasm - 200 37691 application/wasm 4.5081ms -2026-01-16 11:19:01.467 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Web.gl9seasc22.wasm - null null -2026-01-16 11:19:01.467 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.467 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.467 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.467 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.467 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.469 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.469 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.469 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.469 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.469 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.469 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.469 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.470 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.470 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.470 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.470 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.470 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.470 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.473 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.Web.gl9seasc22.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fqoi4if8m2-{0}-gl9seasc22-gl9seasc22.gz' -2026-01-16 11:19:01.473 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.473 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Web.gl9seasc22.wasm - 200 179023 application/wasm 6.2149ms -2026-01-16 11:19:01.477 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.9qaxkpf6y7.wasm - null null -2026-01-16 11:19:01.478 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.478 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.478 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.478 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.478 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.480 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.480 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.480 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.480 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.480 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.480 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.480 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.480 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.480 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.480 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.480 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.481 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.481 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.483 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.WebAssembly.9qaxkpf6y7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4vwfdqnp17-{0}-9qaxkpf6y7-9qaxkpf6y7.gz' -2026-01-16 11:19:01.483 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.483 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.9qaxkpf6y7.wasm - 200 155978 application/wasm 5.3099ms -2026-01-16 11:19:01.488 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.q8d1vzef3m.wasm - null null -2026-01-16 11:19:01.489 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.489 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.489 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.489 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.489 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.491 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.491 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.491 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.491 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.491 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.491 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.492 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.492 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.492 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.492 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.492 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.492 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.492 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.493 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.q8d1vzef3m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\19o2at4dip-{0}-q8d1vzef3m-q8d1vzef3m.gz' -2026-01-16 11:19:01.493 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.494 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.q8d1vzef3m.wasm - 200 96064 application/wasm 5.6397ms -2026-01-16 11:19:01.498 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Metadata.begmnasal1.wasm - null null -2026-01-16 11:19:01.499 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.499 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.499 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.499 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.499 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.503 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.503 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.503 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.503 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.503 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.503 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.503 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.503 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.503 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.503 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.503 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.507 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.507 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.509 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Metadata.begmnasal1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\94aawuaijs-{0}-begmnasal1-begmnasal1.gz' -2026-01-16 11:19:01.509 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.509 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Metadata.begmnasal1.wasm - 200 5942 application/wasm 10.65ms -2026-01-16 11:19:01.518 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.WebUtilities.6cgd80d0to.wasm - null null -2026-01-16 11:19:01.518 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.518 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.518 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.518 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.518 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.523 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.523 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.523 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.523 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.523 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.523 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.523 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.524 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.524 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.524 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.524 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.524 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.525 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.526 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.WebUtilities.6cgd80d0to.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sk2xioyf5m-{0}-6cgd80d0to-6cgd80d0to.gz' -2026-01-16 11:19:01.526 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.527 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.WebUtilities.6cgd80d0to.wasm - 200 97088 application/wasm 8.8941ms -2026-01-16 11:19:01.534 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Bcl.AsyncInterfaces.a6wsrpgfw5.wasm - null null -2026-01-16 11:19:01.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.535 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.535 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.535 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.535 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.537 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.537 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.537 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.537 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.537 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.537 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.537 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.537 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.537 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.537 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.537 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.538 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.538 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.538 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Bcl.AsyncInterfaces.a6wsrpgfw5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\efezora84v-{0}-a6wsrpgfw5-a6wsrpgfw5.gz' -2026-01-16 11:19:01.538 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.539 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Bcl.AsyncInterfaces.a6wsrpgfw5.wasm - 200 9526 application/wasm 4.6732ms -2026-01-16 11:19:01.545 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.u1l3a5juxx.wasm - null null -2026-01-16 11:19:01.546 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.546 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.546 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.546 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.546 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.549 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.549 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.549 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.549 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.549 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.549 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.549 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.549 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.549 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.549 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.549 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.550 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.550 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.551 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.u1l3a5juxx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wloi09r5kq-{0}-u1l3a5juxx-u1l3a5juxx.gz' -2026-01-16 11:19:01.551 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.551 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.u1l3a5juxx.wasm - 200 56123 application/wasm 6.6065ms -2026-01-16 11:19:01.558 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Abstractions.vvlexwbaez.wasm - null null -2026-01-16 11:19:01.559 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.559 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.559 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.559 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.559 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.561 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.561 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.561 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.561 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.561 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.561 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.561 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.561 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.561 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.561 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.561 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.562 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.562 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.563 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Caching.Abstractions.vvlexwbaez.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b1crvod4be-{0}-vvlexwbaez-vvlexwbaez.gz' -2026-01-16 11:19:01.563 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.563 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Abstractions.vvlexwbaez.wasm - 200 27446 application/wasm 4.7019ms -2026-01-16 11:19:01.569 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Hybrid.u0s8zqcpy7.wasm - null null -2026-01-16 11:19:01.569 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.569 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.569 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.569 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.569 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.571 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.571 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.571 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.571 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.571 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.571 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.571 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.572 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.572 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.572 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.572 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.572 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.572 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.574 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Caching.Hybrid.u0s8zqcpy7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\t7frkttiob-{0}-u0s8zqcpy7-u0s8zqcpy7.gz' -2026-01-16 11:19:01.574 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.574 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Hybrid.u0s8zqcpy7.wasm - 200 85824 application/wasm 5.2225ms -2026-01-16 11:19:01.580 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Memory.6z3ajjz4f1.wasm - null null -2026-01-16 11:19:01.580 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.580 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.580 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.580 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.580 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.583 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.583 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.583 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.583 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.583 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.583 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.583 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.583 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.583 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.583 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.583 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.584 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.584 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.585 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Caching.Memory.6z3ajjz4f1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6gi3ua4ioz-{0}-6z3ajjz4f1-6z3ajjz4f1.gz' -2026-01-16 11:19:01.585 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.585 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Memory.6z3ajjz4f1.wasm - 200 37691 application/wasm 5.2787ms -2026-01-16 11:19:01.592 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.x8wh4xd62i.wasm - null null -2026-01-16 11:19:01.592 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.593 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.593 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.593 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.593 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.595 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.595 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.595 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.595 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.595 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.595 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.595 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.595 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.595 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.595 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.595 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.596 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.596 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.596 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.x8wh4xd62i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\h1kacpcskm-{0}-x8wh4xd62i-x8wh4xd62i.gz' -2026-01-16 11:19:01.596 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.597 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.x8wh4xd62i.wasm - 200 34619 application/wasm 4.9404ms -2026-01-16 11:19:01.603 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Abstractions.sgloa63pwd.wasm - null null -2026-01-16 11:19:01.604 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.604 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.604 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.604 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.604 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.607 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.607 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.607 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.607 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.607 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.608 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.608 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.608 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.608 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.608 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.608 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.609 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.609 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.610 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.Abstractions.sgloa63pwd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\zxi0ykhieh-{0}-sgloa63pwd-sgloa63pwd.gz' -2026-01-16 11:19:01.610 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.610 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Abstractions.sgloa63pwd.wasm - 200 18230 application/wasm 6.7493ms -2026-01-16 11:19:01.616 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Binder.3jwzw3qxt4.wasm - null null -2026-01-16 11:19:01.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.617 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.617 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.617 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.617 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.619 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.619 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.619 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.619 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.619 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.619 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.619 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.619 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.619 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.619 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.619 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.620 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.620 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.621 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.Binder.3jwzw3qxt4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ko014cnbr7-{0}-3jwzw3qxt4-3jwzw3qxt4.gz' -2026-01-16 11:19:01.621 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.621 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Binder.3jwzw3qxt4.wasm - 200 33083 application/wasm 5.6267ms -2026-01-16 11:19:01.628 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.CommandLine.z1qo7xx5ru.wasm - null null -2026-01-16 11:19:01.629 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.629 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.629 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.629 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.629 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.632 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.632 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.632 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.632 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.632 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.632 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.632 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.632 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.632 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.632 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.632 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.633 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.633 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.633 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.CommandLine.z1qo7xx5ru.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0qcnzm5lmb-{0}-z1qo7xx5ru-z1qo7xx5ru.gz' -2026-01-16 11:19:01.634 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.634 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.CommandLine.z1qo7xx5ru.wasm - 200 15158 application/wasm 5.2062ms -2026-01-16 11:19:01.638 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.EnvironmentVariables.3gcxsk3zbu.wasm - null null -2026-01-16 11:19:01.639 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.639 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.639 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.639 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.639 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.641 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.641 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.641 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.641 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.641 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.641 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.641 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.641 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.641 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.641 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.641 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.642 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.642 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.643 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.EnvironmentVariables.3gcxsk3zbu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\urvjz3sczp-{0}-3gcxsk3zbu-3gcxsk3zbu.gz' -2026-01-16 11:19:01.643 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.643 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.EnvironmentVariables.3gcxsk3zbu.wasm - 200 11574 application/wasm 5.1486ms -2026-01-16 11:19:01.648 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.FileExtensions.phra2kqghi.wasm - null null -2026-01-16 11:19:01.648 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.649 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.649 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.649 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.649 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.651 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.651 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.651 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.651 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.651 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.651 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.651 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.651 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.651 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.651 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.651 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.652 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.652 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.653 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.FileExtensions.phra2kqghi.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6yhtz7i0uq-{0}-phra2kqghi-phra2kqghi.gz' -2026-01-16 11:19:01.653 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.653 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.FileExtensions.phra2kqghi.wasm - 200 18230 application/wasm 5.5547ms -2026-01-16 11:19:01.659 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Json.9udmvturlf.wasm - null null -2026-01-16 11:19:01.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.659 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.660 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.660 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.660 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.661 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.661 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.661 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.661 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.661 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.661 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.661 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.662 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.662 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.662 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.662 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.662 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.662 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.663 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.Json.9udmvturlf.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jn8nx9ltxb-{0}-9udmvturlf-9udmvturlf.gz' -2026-01-16 11:19:01.663 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.663 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Json.9udmvturlf.wasm - 200 17718 application/wasm 3.9861ms -2026-01-16 11:19:01.667 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.UserSecrets.86yue58ssu.wasm - null null -2026-01-16 11:19:01.668 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.668 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.668 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.668 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.668 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.670 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.670 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.670 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.670 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.670 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.670 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.670 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.670 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.670 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.670 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.670 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.671 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.671 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.671 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.UserSecrets.86yue58ssu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wlq0vssna7-{0}-86yue58ssu-86yue58ssu.gz' -2026-01-16 11:19:01.672 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.672 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.UserSecrets.86yue58ssu.wasm - 200 16182 application/wasm 4.3527ms -2026-01-16 11:19:01.675 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.92ulj88j6e.wasm - null null -2026-01-16 11:19:01.675 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.676 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.676 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.676 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.676 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.678 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.678 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.678 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.678 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.678 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.678 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.678 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.678 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.678 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.678 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.678 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.679 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.679 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.680 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.DependencyInjection.92ulj88j6e.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ap6jjl5cdc-{0}-92ulj88j6e-92ulj88j6e.gz' -2026-01-16 11:19:01.680 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.680 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.92ulj88j6e.wasm - 200 85312 application/wasm 5.2242ms -2026-01-16 11:19:01.685 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.qzg75988t9.wasm - null null -2026-01-16 11:19:01.685 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.685 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.686 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.686 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.686 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.688 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.688 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.688 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.688 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.688 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.688 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.688 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.688 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.688 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.688 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.688 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.689 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.689 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.690 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.DependencyInjection.Abstractions.qzg75988t9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2yinc5vl42-{0}-qzg75988t9-qzg75988t9.gz' -2026-01-16 11:19:01.690 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.690 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.qzg75988t9.wasm - 200 55611 application/wasm 5.7231ms -2026-01-16 11:19:01.697 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.tgzcelqpkb.wasm - null null -2026-01-16 11:19:01.699 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.699 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.699 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.699 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.699 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.702 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.702 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.702 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.702 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.702 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.702 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.702 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.702 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.702 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.702 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.702 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.703 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.703 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.704 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Diagnostics.tgzcelqpkb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\q77258df46-{0}-tgzcelqpkb-tgzcelqpkb.gz' -2026-01-16 11:19:01.704 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.705 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.tgzcelqpkb.wasm - 200 25910 application/wasm 7.3606ms -2026-01-16 11:19:01.710 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.Abstractions.hq61ozpvxa.wasm - null null -2026-01-16 11:19:01.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.711 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.711 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.711 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.711 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.713 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.713 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.713 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.713 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.713 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.713 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.713 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.714 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.714 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.714 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.714 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.714 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.714 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.715 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Diagnostics.Abstractions.hq61ozpvxa.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\hlwf1zkx1t-{0}-hq61ozpvxa-hq61ozpvxa.gz' -2026-01-16 11:19:01.715 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.715 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.Abstractions.hq61ozpvxa.wasm - 200 20790 application/wasm 4.5704ms -2026-01-16 11:19:01.720 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Abstractions.wbhloeatw3.wasm - null null -2026-01-16 11:19:01.721 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.721 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.721 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.721 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.721 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.723 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.723 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.723 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.723 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.723 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.723 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.723 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.724 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.724 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.724 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.724 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.724 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.724 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.725 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Abstractions.wbhloeatw3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\hwi4k0i86u-{0}-wbhloeatw3-wbhloeatw3.gz' -2026-01-16 11:19:01.725 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.725 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Abstractions.wbhloeatw3.wasm - 200 13110 application/wasm 5.296ms -2026-01-16 11:19:01.729 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Composite.z8bwpsdnc0.wasm - null null -2026-01-16 11:19:01.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.729 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.729 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.729 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.729 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.731 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.731 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.731 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.731 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.731 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.731 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.731 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.732 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.732 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.732 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.732 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.732 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.732 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.733 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Composite.z8bwpsdnc0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9or5ity2wj-{0}-z8bwpsdnc0-z8bwpsdnc0.gz' -2026-01-16 11:19:01.733 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.733 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Composite.z8bwpsdnc0.wasm - 200 8502 application/wasm 4.4262ms -2026-01-16 11:19:01.737 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Embedded.ptqvg1m34t.wasm - null null -2026-01-16 11:19:01.738 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.738 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.738 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.738 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.738 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.740 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.740 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.740 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.740 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.740 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.740 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.740 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.740 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.741 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.741 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.741 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.741 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.741 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.742 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Embedded.ptqvg1m34t.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gud3t43je0-{0}-ptqvg1m34t-ptqvg1m34t.gz' -2026-01-16 11:19:01.742 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.742 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Embedded.ptqvg1m34t.wasm - 200 23350 application/wasm 5.3249ms -2026-01-16 11:19:01.747 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Physical.y5k56zvg10.wasm - null null -2026-01-16 11:19:01.748 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.748 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.748 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.748 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.748 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.750 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.750 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.750 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.750 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.750 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.750 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.750 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.750 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.750 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.750 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.750 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.751 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.751 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.752 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Physical.y5k56zvg10.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\02df65jx0j-{0}-y5k56zvg10-y5k56zvg10.gz' -2026-01-16 11:19:01.752 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.752 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Physical.y5k56zvg10.wasm - 200 35131 application/wasm 4.7845ms -2026-01-16 11:19:01.756 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileSystemGlobbing.4cqycihgg0.wasm - null null -2026-01-16 11:19:01.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.757 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.757 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.757 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.757 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.759 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.759 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.759 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.759 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.759 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.759 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.759 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.759 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.759 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.759 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.759 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.760 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.760 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.760 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileSystemGlobbing.4cqycihgg0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4328gy858z-{0}-4cqycihgg0-4cqycihgg0.gz' -2026-01-16 11:19:01.760 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.761 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileSystemGlobbing.4cqycihgg0.wasm - 200 37691 application/wasm 4.5733ms -2026-01-16 11:19:01.764 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Hosting.Abstractions.5v78u2d057.wasm - null null -2026-01-16 11:19:01.765 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.765 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.765 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.765 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.765 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.767 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.767 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.767 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.767 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.767 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.767 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.767 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.767 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.767 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.767 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.767 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.767 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.768 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.768 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Hosting.Abstractions.5v78u2d057.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0bjpxbow7h-{0}-5v78u2d057-5v78u2d057.gz' -2026-01-16 11:19:01.768 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.768 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Hosting.Abstractions.5v78u2d057.wasm - 200 43835 application/wasm 4.0789ms -2026-01-16 11:19:01.773 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Http.apre2arxjd.wasm - null null -2026-01-16 11:19:01.774 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.774 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.774 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.774 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.774 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.776 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.776 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.776 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.776 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.776 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.776 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.776 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.777 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.777 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.777 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.777 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.777 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.777 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.778 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Http.apre2arxjd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ocorhjn9ks-{0}-apre2arxjd-apre2arxjd.gz' -2026-01-16 11:19:01.778 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.778 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Http.apre2arxjd.wasm - 200 82752 application/wasm 5.5176ms -2026-01-16 11:19:01.783 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.mml9tf1r1w.wasm - null null -2026-01-16 11:19:01.783 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.783 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.783 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.783 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.783 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.785 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.785 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.785 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.785 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.785 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.785 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.785 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.786 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.786 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.786 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.786 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.786 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.786 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.787 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Localization.mml9tf1r1w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uqdbs11skp-{0}-mml9tf1r1w-mml9tf1r1w.gz' -2026-01-16 11:19:01.787 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.787 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.mml9tf1r1w.wasm - 200 21302 application/wasm 4.6431ms -2026-01-16 11:19:01.793 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.Abstractions.80p7fyumuw.wasm - null null -2026-01-16 11:19:01.794 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.794 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.794 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.794 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.794 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.796 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.796 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.796 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.796 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.796 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.796 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.796 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.796 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.796 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.796 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.796 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.797 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.797 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.798 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Localization.Abstractions.80p7fyumuw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j8jaks8ba9-{0}-80p7fyumuw-80p7fyumuw.gz' -2026-01-16 11:19:01.798 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.798 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.Abstractions.80p7fyumuw.wasm - 200 9014 application/wasm 4.7584ms -2026-01-16 11:19:01.802 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.05o184w673.wasm - null null -2026-01-16 11:19:01.803 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.803 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.803 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.803 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.803 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.805 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.805 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.805 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.805 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.806 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.806 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.806 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.806 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.806 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.806 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.806 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.806 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.807 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.807 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Logging.05o184w673.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1cbwctdp50-{0}-05o184w673-05o184w673.gz' -2026-01-16 11:19:01.807 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.807 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.05o184w673.wasm - 200 41275 application/wasm 4.9775ms -2026-01-16 11:19:01.811 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.Abstractions.hwa38jh90v.wasm - null null -2026-01-16 11:19:01.811 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.812 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.812 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.812 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.812 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.814 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.814 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.814 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.814 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.814 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.814 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.814 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.814 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.814 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.814 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.814 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.814 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.815 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.815 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Logging.Abstractions.hwa38jh90v.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\zatd8kwe6z-{0}-hwa38jh90v-hwa38jh90v.gz' -2026-01-16 11:19:01.815 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.815 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.Abstractions.hwa38jh90v.wasm - 200 56635 application/wasm 4.5279ms -2026-01-16 11:19:01.819 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.zsk78mkyl2.wasm - null null -2026-01-16 11:19:01.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.820 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.820 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.820 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.820 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.822 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.822 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.822 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.823 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.823 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.823 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.823 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.823 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.823 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.823 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.823 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.823 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.824 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.825 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Options.zsk78mkyl2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nx5gv127wz-{0}-zsk78mkyl2-zsk78mkyl2.gz' -2026-01-16 11:19:01.825 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.825 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.zsk78mkyl2.wasm - 200 55099 application/wasm 5.4892ms -2026-01-16 11:19:01.829 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.ConfigurationExtensions.qltknulxmy.wasm - null null -2026-01-16 11:19:01.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.830 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.830 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.830 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.830 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.832 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.832 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.832 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.832 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.832 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.832 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.832 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.832 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.832 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.832 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.832 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.832 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.832 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.833 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Options.ConfigurationExtensions.qltknulxmy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\eycsz92dw7-{0}-qltknulxmy-qltknulxmy.gz' -2026-01-16 11:19:01.833 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.833 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.ConfigurationExtensions.qltknulxmy.wasm - 200 11574 application/wasm 3.9118ms -2026-01-16 11:19:01.836 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Primitives.51b5spqlwz.wasm - null null -2026-01-16 11:19:01.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.839 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.839 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.839 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.839 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.839 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.839 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.839 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.839 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.839 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.839 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.839 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.840 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.840 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.841 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Primitives.51b5spqlwz.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dtxltxy254-{0}-51b5spqlwz-51b5spqlwz.gz' -2026-01-16 11:19:01.841 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.841 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Primitives.51b5spqlwz.wasm - 200 34619 application/wasm 4.6066ms -2026-01-16 11:19:01.844 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Validation.vibclmvzbq.wasm - null null -2026-01-16 11:19:01.845 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.845 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.845 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.845 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.845 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.847 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.847 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.847 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.847 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.847 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.847 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.847 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.847 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.847 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.847 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.847 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.847 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.848 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.848 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Validation.vibclmvzbq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wxjaiwsnh4-{0}-vibclmvzbq-vibclmvzbq.gz' -2026-01-16 11:19:01.848 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.848 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Validation.vibclmvzbq.wasm - 200 33083 application/wasm 3.991ms -2026-01-16 11:19:01.852 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Abstractions.fm59ec96sb.wasm - null null -2026-01-16 11:19:01.853 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.853 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.853 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.853 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.853 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.855 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.855 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.855 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.855 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.855 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.855 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.855 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.855 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.855 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.855 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.855 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.856 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.856 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.857 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.Abstractions.fm59ec96sb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pw25ps676d-{0}-fm59ec96sb-fm59ec96sb.gz' -2026-01-16 11:19:01.857 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.857 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Abstractions.fm59ec96sb.wasm - 200 9014 application/wasm 4.5506ms -2026-01-16 11:19:01.860 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.JsonWebTokens.d706uu8nnf.wasm - null null -2026-01-16 11:19:01.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.861 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.861 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.861 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.861 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.863 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.863 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.863 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.863 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.863 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.863 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.863 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.863 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.863 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.863 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.863 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.863 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.864 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.865 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.JsonWebTokens.d706uu8nnf.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0ly9bxx2uc-{0}-d706uu8nnf-d706uu8nnf.gz' -2026-01-16 11:19:01.865 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.865 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.JsonWebTokens.d706uu8nnf.wasm - 200 161610 application/wasm 4.8836ms -2026-01-16 11:19:01.869 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Logging.lzotatrep2.wasm - null null -2026-01-16 11:19:01.870 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.870 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.870 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.870 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.870 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.872 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.872 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.872 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.872 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.872 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.872 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.872 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.872 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.872 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.872 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.872 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.873 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.873 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.874 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.Logging.lzotatrep2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\az540fuh9f-{0}-lzotatrep2-lzotatrep2.gz' -2026-01-16 11:19:01.874 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.874 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Logging.lzotatrep2.wasm - 200 26422 application/wasm 5.3336ms -2026-01-16 11:19:01.879 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Tokens.zeqz59uvkx.wasm - null null -2026-01-16 11:19:01.879 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.880 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.880 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.880 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.880 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.882 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.882 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.882 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.882 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.882 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.882 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.882 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.882 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.882 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.882 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.882 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.883 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.883 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.885 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.Tokens.zeqz59uvkx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pe5jdgvqrx-{0}-zeqz59uvkx-zeqz59uvkx.gz' -2026-01-16 11:19:01.886 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.886 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Tokens.zeqz59uvkx.wasm - 200 374125 application/wasm 6.9565ms -2026-01-16 11:19:01.892 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.kksrzpvoig.wasm - null null -2026-01-16 11:19:01.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.892 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.892 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.892 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.892 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.895 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.895 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.895 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.895 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.895 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.895 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.895 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.895 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.895 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.895 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.895 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.895 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.896 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.896 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.JSInterop.kksrzpvoig.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fulott20a4-{0}-kksrzpvoig-kksrzpvoig.gz' -2026-01-16 11:19:01.896 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.897 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.kksrzpvoig.wasm - 200 64827 application/wasm 4.8489ms -2026-01-16 11:19:01.900 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.WebAssembly.9udcqny0aq.wasm - null null -2026-01-16 11:19:01.901 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.903 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.903 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.903 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.903 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.903 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.903 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.903 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.903 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.903 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.903 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.903 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.904 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.904 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.905 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.JSInterop.WebAssembly.9udcqny0aq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9m4wklcqem-{0}-9udcqny0aq-9udcqny0aq.gz' -2026-01-16 11:19:01.905 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.905 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.WebAssembly.9udcqny0aq.wasm - 200 14646 application/wasm 4.8507ms -2026-01-16 11:19:01.910 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Net.Http.Headers.dqwvlhacs5.wasm - null null -2026-01-16 11:19:01.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.913 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.913 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.913 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.913 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.913 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.913 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.913 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.913 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.913 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.913 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.913 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.913 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.914 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.914 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Net.Http.Headers.dqwvlhacs5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\awoyestlxb-{0}-dqwvlhacs5-dqwvlhacs5.gz' -2026-01-16 11:19:01.915 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.915 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Net.Http.Headers.dqwvlhacs5.wasm - 200 75072 application/wasm 5.111ms -2026-01-16 11:19:01.919 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Context.y5n2fi0oo0.wasm - null null -2026-01-16 11:19:01.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.922 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.923 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.923 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.923 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.923 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.923 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.923 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.923 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.923 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.923 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.923 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.924 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.924 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.925 +03:00 [INF] Sending file. Request path: '_framework/Nito.AsyncEx.Context.y5n2fi0oo0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6cfa8ozy3y-{0}-y5n2fi0oo0-y5n2fi0oo0.gz' -2026-01-16 11:19:01.925 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.925 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Context.y5n2fi0oo0.wasm - 200 13622 application/wasm 5.7018ms -2026-01-16 11:19:01.928 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Tasks.pmw3wnkbvb.wasm - null null -2026-01-16 11:19:01.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.931 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.931 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.931 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.931 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.931 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.931 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.931 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.931 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.931 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.931 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.931 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.932 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.932 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.932 +03:00 [INF] Sending file. Request path: '_framework/Nito.AsyncEx.Tasks.pmw3wnkbvb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pw3yczwgxh-{0}-pmw3wnkbvb-pmw3wnkbvb.gz' -2026-01-16 11:19:01.932 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.932 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Tasks.pmw3wnkbvb.wasm - 200 35643 application/wasm 4.2649ms -2026-01-16 11:19:01.938 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Nito.Disposables.86nxvj1yiv.wasm - null null -2026-01-16 11:19:01.939 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.939 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.939 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.939 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.939 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.942 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.942 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.942 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.942 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.942 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.942 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.942 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.942 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.942 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.942 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.942 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.943 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.943 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.944 +03:00 [INF] Sending file. Request path: '_framework/Nito.Disposables.86nxvj1yiv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4m6819m7ll-{0}-86nxvj1yiv-86nxvj1yiv.gz' -2026-01-16 11:19:01.944 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.944 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Nito.Disposables.86nxvj1yiv.wasm - 200 22326 application/wasm 5.5342ms -2026-01-16 11:19:01.948 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/NUglify.p1yxori32v.wasm - null null -2026-01-16 11:19:01.948 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.948 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.948 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.948 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.948 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.951 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.951 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.951 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.951 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.951 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.951 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.951 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.951 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.951 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.951 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.951 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.952 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.952 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.956 +03:00 [INF] Sending file. Request path: '_framework/NUglify.p1yxori32v.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2fi9048uqb-{0}-p1yxori32v-p1yxori32v.gz' -2026-01-16 11:19:01.956 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.956 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/NUglify.p1yxori32v.wasm - 200 637333 application/wasm 8.7631ms -2026-01-16 11:19:01.962 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/OpenIddict.Abstractions.xc5u4bcwuv.wasm - null null -2026-01-16 11:19:01.963 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.963 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.963 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.963 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.963 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.965 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.965 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.966 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.966 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.966 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.966 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.966 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.966 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.966 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.966 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.966 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.967 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.967 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.970 +03:00 [INF] Sending file. Request path: '_framework/OpenIddict.Abstractions.xc5u4bcwuv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\46s7kaf9kj-{0}-xc5u4bcwuv-xc5u4bcwuv.gz' -2026-01-16 11:19:01.970 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.970 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/OpenIddict.Abstractions.xc5u4bcwuv.wasm - 200 380269 application/wasm 8.2469ms -2026-01-16 11:19:01.977 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Riok.Mapperly.Abstractions.bgo5wowxjs.wasm - null null -2026-01-16 11:19:01.977 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.977 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.977 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.977 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.977 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.980 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.980 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.980 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.980 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.980 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.980 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.980 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.980 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.980 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.980 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.980 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.981 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.981 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.982 +03:00 [INF] Sending file. Request path: '_framework/Riok.Mapperly.Abstractions.bgo5wowxjs.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3d5qji182j-{0}-bgo5wowxjs-bgo5wowxjs.gz' -2026-01-16 11:19:01.982 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.982 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Riok.Mapperly.Abstractions.bgo5wowxjs.wasm - 200 33083 application/wasm 5.1244ms -2026-01-16 11:19:01.987 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.CodeDom.fbxkfrockh.wasm - null null -2026-01-16 11:19:01.988 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.988 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:01.988 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:01.988 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:01.988 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:01.991 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.991 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.991 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:01.991 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:01.991 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:01.991 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:01.991 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.991 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:01.991 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:01.991 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:01.991 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:01.992 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:01.992 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.994 +03:00 [INF] Sending file. Request path: '_framework/System.CodeDom.fbxkfrockh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j53ve7gv1w-{0}-fbxkfrockh-fbxkfrockh.gz' -2026-01-16 11:19:01.994 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:01.994 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.CodeDom.fbxkfrockh.wasm - 200 174415 application/wasm 6.6655ms -2026-01-16 11:19:01.999 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.EventLog.x6zrz89c6o.wasm - null null -2026-01-16 11:19:02.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.000 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.000 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.000 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.000 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.004 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.004 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.004 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.004 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.004 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.004 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.004 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.004 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.004 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.004 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.004 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.005 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.005 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.007 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.EventLog.x6zrz89c6o.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j2puov35am-{0}-x6zrz89c6o-x6zrz89c6o.gz' -2026-01-16 11:19:02.007 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.007 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.EventLog.x6zrz89c6o.wasm - 200 41787 application/wasm 7.3743ms -2026-01-16 11:19:02.014 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IdentityModel.Tokens.Jwt.5tt1rwyygx.wasm - null null -2026-01-16 11:19:02.014 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.014 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.014 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.014 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.014 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.017 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.017 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.017 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.018 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.018 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.018 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.018 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.018 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.018 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.018 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.018 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.019 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.019 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.021 +03:00 [INF] Sending file. Request path: '_framework/System.IdentityModel.Tokens.Jwt.5tt1rwyygx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tr0pha0myb-{0}-5tt1rwyygx-5tt1rwyygx.gz' -2026-01-16 11:19:02.021 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.021 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IdentityModel.Tokens.Jwt.5tt1rwyygx.wasm - 200 81216 application/wasm 7.4907ms -2026-01-16 11:19:02.028 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.Dynamic.Core.2czhr4esfi.wasm - null null -2026-01-16 11:19:02.029 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.029 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.029 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.029 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.029 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.031 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.031 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.031 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.031 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.031 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.031 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.031 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.032 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.032 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.032 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.032 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.032 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.033 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.035 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.Dynamic.Core.2czhr4esfi.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\i8w7eyc5en-{0}-2czhr4esfi-2czhr4esfi.gz' -2026-01-16 11:19:02.035 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.035 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.Dynamic.Core.2czhr4esfi.wasm - 200 240985 application/wasm 7.0793ms -2026-01-16 11:19:02.042 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Management.ot1u48wl1s.wasm - null null -2026-01-16 11:19:02.043 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.043 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.043 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.043 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.043 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.046 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.046 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.046 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.046 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.046 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.046 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.046 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.046 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.046 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.046 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.046 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.047 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.047 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.048 +03:00 [INF] Sending file. Request path: '_framework/System.Management.ot1u48wl1s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\evjyfukwb1-{0}-ot1u48wl1s-ot1u48wl1s.gz' -2026-01-16 11:19:02.048 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.048 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Management.ot1u48wl1s.wasm - 200 63803 application/wasm 5.4825ms -2026-01-16 11:19:02.056 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/TimeZoneConverter.halbc9brmz.wasm - null null -2026-01-16 11:19:02.057 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.057 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.057 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.057 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.057 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.061 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.061 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.061 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.061 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.061 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.061 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.061 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.061 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.061 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.061 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.061 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.062 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.062 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.063 +03:00 [INF] Sending file. Request path: '_framework/TimeZoneConverter.halbc9brmz.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xqev0b9yez-{0}-halbc9brmz-halbc9brmz.gz' -2026-01-16 11:19:02.063 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.063 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/TimeZoneConverter.halbc9brmz.wasm - 200 63803 application/wasm 7.0747ms -2026-01-16 11:19:02.073 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme.xsba7x7ipe.wasm - null null -2026-01-16 11:19:02.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.074 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.074 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.074 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.074 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.077 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.077 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.077 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.077 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.077 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.077 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.077 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.077 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.077 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.077 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.077 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.078 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.078 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.079 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme.xsba7x7ipe.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ym7urt49w9-{0}-xsba7x7ipe-xsba7x7ipe.gz' -2026-01-16 11:19:02.079 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.079 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme.xsba7x7ipe.wasm - 200 45371 application/wasm 6.1645ms -2026-01-16 11:19:02.085 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.LeptonXLiteTheme.tiy463c9qs.wasm - null null -2026-01-16 11:19:02.086 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.086 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.086 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.086 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.086 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.089 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.089 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.089 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.089 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.089 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.089 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.089 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.089 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.089 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.089 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.089 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.090 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.091 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.092 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.LeptonXLiteTheme.tiy463c9qs.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\adei3dyjzv-{0}-tiy463c9qs-tiy463c9qs.gz' -2026-01-16 11:19:02.092 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.092 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.LeptonXLiteTheme.tiy463c9qs.wasm - 200 39739 application/wasm 6.8856ms -2026-01-16 11:19:02.097 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.LeptonXLiteTheme.Bundling.0tjiudviiw.wasm - null null -2026-01-16 11:19:02.097 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.097 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.097 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.097 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.097 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.100 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.100 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.100 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.100 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.100 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.100 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.100 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.100 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.100 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.100 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.100 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.100 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.101 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.101 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.LeptonXLiteTheme.Bundling.0tjiudviiw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nv8s0qp5je-{0}-0tjiudviiw-0tjiudviiw.gz' -2026-01-16 11:19:02.101 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.102 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.LeptonXLiteTheme.Bundling.0tjiudviiw.wasm - 200 10038 application/wasm 4.9225ms -2026-01-16 11:19:02.106 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.CSharp.aars8n89vy.wasm - null null -2026-01-16 11:19:02.107 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.107 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.108 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.108 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.108 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.111 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.111 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.111 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.111 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.111 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.111 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.111 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.111 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.111 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.111 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.111 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.112 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.112 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.115 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.CSharp.aars8n89vy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\esvbxkosdi-{0}-aars8n89vy-aars8n89vy.gz' -2026-01-16 11:19:02.115 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.115 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.CSharp.aars8n89vy.wasm - 200 301411 application/wasm 9.1564ms -2026-01-16 11:19:02.122 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.Core.upxd87cdr1.wasm - null null -2026-01-16 11:19:02.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.123 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.123 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.123 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.123 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.126 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.126 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.126 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.127 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.127 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.127 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.127 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.127 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.127 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.127 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.127 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.128 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.128 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.132 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.VisualBasic.Core.upxd87cdr1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jc5kei53j8-{0}-upxd87cdr1-upxd87cdr1.gz' -2026-01-16 11:19:02.132 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.132 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.Core.upxd87cdr1.wasm - 200 418674 application/wasm 9.8422ms -2026-01-16 11:19:02.141 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.lo3va0ewdb.wasm - null null -2026-01-16 11:19:02.142 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.142 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.142 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.142 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.142 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.146 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.146 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.146 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.146 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.146 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.146 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.146 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.146 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.146 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.146 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.146 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.148 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.148 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.149 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.VisualBasic.lo3va0ewdb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\57p19o16fi-{0}-lo3va0ewdb-lo3va0ewdb.gz' -2026-01-16 11:19:02.149 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.149 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.lo3va0ewdb.wasm - 200 6966 application/wasm 7.7955ms -2026-01-16 11:19:02.154 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Primitives.xf0i7ifc2c.wasm - null null -2026-01-16 11:19:02.155 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.155 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.155 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.155 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.155 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.158 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.158 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.158 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.158 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.158 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.158 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.158 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.158 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.158 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.158 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.158 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.159 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.159 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.160 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Win32.Primitives.xf0i7ifc2c.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\p8pizku5xb-{0}-xf0i7ifc2c-xf0i7ifc2c.gz' -2026-01-16 11:19:02.160 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.160 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Primitives.xf0i7ifc2c.wasm - 200 5430 application/wasm 5.8394ms -2026-01-16 11:19:02.166 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Registry.egcs66c38p.wasm - null null -2026-01-16 11:19:02.167 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.167 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.167 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.167 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.167 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.170 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.170 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.170 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.170 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.170 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.170 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.170 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.170 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.170 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.170 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.170 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.171 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.171 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.172 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Win32.Registry.egcs66c38p.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ouubhvk51-{0}-egcs66c38p-egcs66c38p.gz' -2026-01-16 11:19:02.172 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.172 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Registry.egcs66c38p.wasm - 200 22838 application/wasm 5.7997ms -2026-01-16 11:19:02.177 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.AppContext.229uy454et.wasm - null null -2026-01-16 11:19:02.178 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.178 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.178 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.178 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.178 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.181 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.181 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.181 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.181 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.181 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.181 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.181 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.181 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.181 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.181 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.181 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.182 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.182 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.182 +03:00 [INF] Sending file. Request path: '_framework/System.AppContext.229uy454et.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vtyu92lgvy-{0}-229uy454et-229uy454et.gz' -2026-01-16 11:19:02.182 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.183 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.AppContext.229uy454et.wasm - 200 4918 application/wasm 5.2857ms -2026-01-16 11:19:02.187 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Buffers.ffy4vk49sl.wasm - null null -2026-01-16 11:19:02.187 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.187 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.188 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.188 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.188 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.190 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.190 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.190 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.190 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.190 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.190 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.190 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.191 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.191 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.191 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.191 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.191 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.192 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.192 +03:00 [INF] Sending file. Request path: '_framework/System.Buffers.ffy4vk49sl.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\abrvn071f9-{0}-ffy4vk49sl-ffy4vk49sl.gz' -2026-01-16 11:19:02.192 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.192 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Buffers.ffy4vk49sl.wasm - 200 4918 application/wasm 5.563ms -2026-01-16 11:19:02.199 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.Concurrent.vwjty21qm0.wasm - null null -2026-01-16 11:19:02.200 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.200 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.200 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.200 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.200 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.203 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.203 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.203 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.203 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.203 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.203 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.203 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.204 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.204 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.204 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.204 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.205 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.205 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.207 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.Concurrent.vwjty21qm0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5kmfc755lz-{0}-vwjty21qm0-vwjty21qm0.gz' -2026-01-16 11:19:02.207 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.207 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.Concurrent.vwjty21qm0.wasm - 200 78656 application/wasm 7.8093ms -2026-01-16 11:19:02.212 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.Immutable.62ow9webvq.wasm - null null -2026-01-16 11:19:02.214 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.214 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.214 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.214 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.214 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.218 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.218 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.218 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.218 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.218 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.218 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.218 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.218 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.218 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.218 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.218 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.219 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.220 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.223 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.Immutable.62ow9webvq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\y8eoflnwlp-{0}-62ow9webvq-62ow9webvq.gz' -2026-01-16 11:19:02.223 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.223 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.Immutable.62ow9webvq.wasm - 200 240985 application/wasm 10.7959ms -2026-01-16 11:19:02.229 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.NonGeneric.8znze2bng9.wasm - null null -2026-01-16 11:19:02.230 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.230 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.230 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.230 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.230 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.233 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.233 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.233 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.233 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.233 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.233 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.233 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.233 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.233 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.233 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.233 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.234 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.234 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.235 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.NonGeneric.8znze2bng9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\iq26svu8f5-{0}-8znze2bng9-8znze2bng9.gz' -2026-01-16 11:19:02.235 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.235 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.NonGeneric.8znze2bng9.wasm - 200 37691 application/wasm 6.0108ms -2026-01-16 11:19:02.240 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.Specialized.xek5hgzu5v.wasm - null null -2026-01-16 11:19:02.241 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.241 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.241 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.241 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.241 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.244 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.244 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.244 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.244 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.244 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.244 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.244 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.244 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.244 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.244 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.244 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.245 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.245 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.246 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.Specialized.xek5hgzu5v.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4cpzjuj3r0-{0}-xek5hgzu5v-xek5hgzu5v.gz' -2026-01-16 11:19:02.246 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.246 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.Specialized.xek5hgzu5v.wasm - 200 37691 application/wasm 6.464ms -2026-01-16 11:19:02.252 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.0nghqyig8i.wasm - null null -2026-01-16 11:19:02.253 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.253 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.253 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.253 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.253 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.256 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.256 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.256 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.256 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.256 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.256 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.256 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.256 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.256 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.256 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.256 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.257 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.257 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.259 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.0nghqyig8i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rssb0afnfp-{0}-0nghqyig8i-0nghqyig8i.gz' -2026-01-16 11:19:02.259 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.259 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.0nghqyig8i.wasm - 200 102725 application/wasm 7.3577ms -2026-01-16 11:19:02.264 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Annotations.x5puxnf36m.wasm - null null -2026-01-16 11:19:02.265 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.265 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.265 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.265 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.265 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.268 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.268 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.268 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.268 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.268 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.268 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.268 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.268 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.268 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.268 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.268 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.269 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.269 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.270 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.Annotations.x5puxnf36m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sxzb8xtw7k-{0}-x5puxnf36m-x5puxnf36m.gz' -2026-01-16 11:19:02.270 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.271 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Annotations.x5puxnf36m.wasm - 200 92480 application/wasm 6.7239ms -2026-01-16 11:19:02.278 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.DataAnnotations.w951woxztj.wasm - null null -2026-01-16 11:19:02.278 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.279 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.279 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.279 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.279 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.281 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.281 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.281 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.281 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.281 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.281 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.281 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.282 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.282 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.282 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.282 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.282 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.283 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.284 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.DataAnnotations.w951woxztj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\koqxcel3zt-{0}-w951woxztj-w951woxztj.gz' -2026-01-16 11:19:02.284 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.284 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.DataAnnotations.w951woxztj.wasm - 200 6454 application/wasm 6.1343ms -2026-01-16 11:19:02.289 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.EventBasedAsync.xxfp6nuzvv.wasm - null null -2026-01-16 11:19:02.289 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.289 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.290 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.290 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.290 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.292 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.292 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.292 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.292 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.292 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.292 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.292 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.293 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.293 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.293 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.293 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.293 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.294 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.294 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.EventBasedAsync.xxfp6nuzvv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vq3ormnt3h-{0}-xxfp6nuzvv-xxfp6nuzvv.gz' -2026-01-16 11:19:02.295 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.295 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.EventBasedAsync.xxfp6nuzvv.wasm - 200 16182 application/wasm 5.9739ms -2026-01-16 11:19:02.300 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Primitives.lfp6xvb2nc.wasm - null null -2026-01-16 11:19:02.300 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.300 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.300 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.300 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.300 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.303 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.303 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.303 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.303 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.303 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.303 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.303 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.303 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.303 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.303 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.303 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.304 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.304 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.305 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.Primitives.lfp6xvb2nc.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\f7c6808jvl-{0}-lfp6xvb2nc-lfp6xvb2nc.gz' -2026-01-16 11:19:02.305 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.305 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Primitives.lfp6xvb2nc.wasm - 200 32054 application/wasm 5.5312ms -2026-01-16 11:19:02.310 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.TypeConverter.b6pminnty5.wasm - null null -2026-01-16 11:19:02.310 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.310 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.310 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.310 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.310 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.312 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.312 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.312 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.312 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.312 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.312 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.312 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.313 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.313 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.313 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.313 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.313 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.313 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.316 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.TypeConverter.b6pminnty5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lj5t7hnftt-{0}-b6pminnty5-b6pminnty5.gz' -2026-01-16 11:19:02.316 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.316 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.TypeConverter.b6pminnty5.wasm - 200 306531 application/wasm 6.2718ms -2026-01-16 11:19:02.322 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.1kxs5658en.wasm - null null -2026-01-16 11:19:02.323 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.323 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.323 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.323 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.323 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.326 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.326 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.326 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.326 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.326 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.326 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.326 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.326 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.326 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.326 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.326 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.327 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.327 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.328 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.1kxs5658en.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3bfqm2cg1o-{0}-1kxs5658en-1kxs5658en.gz' -2026-01-16 11:19:02.328 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.328 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.1kxs5658en.wasm - 200 5942 application/wasm 6.1353ms -2026-01-16 11:19:02.333 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Configuration.dfuzh9rwie.wasm - null null -2026-01-16 11:19:02.333 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.333 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.333 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.333 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.334 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.336 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.336 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.336 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.336 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.336 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.336 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.336 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.337 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.337 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.337 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.337 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.338 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.338 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.339 +03:00 [INF] Sending file. Request path: '_framework/System.Configuration.dfuzh9rwie.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xe6xuwrov9-{0}-dfuzh9rwie-dfuzh9rwie.gz' -2026-01-16 11:19:02.339 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.339 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Configuration.dfuzh9rwie.wasm - 200 9014 application/wasm 6.3625ms -2026-01-16 11:19:02.343 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Console.5bpbf67g8o.wasm - null null -2026-01-16 11:19:02.344 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.344 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.344 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.344 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.344 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.347 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.347 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.347 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.347 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.347 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.347 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.347 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.347 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.347 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.347 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.347 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.347 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.348 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.349 +03:00 [INF] Sending file. Request path: '_framework/System.Console.5bpbf67g8o.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6mvz9phqs1-{0}-5bpbf67g8o-5bpbf67g8o.gz' -2026-01-16 11:19:02.349 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.349 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Console.5bpbf67g8o.wasm - 200 43835 application/wasm 5.4401ms -2026-01-16 11:19:02.355 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Core.zxsh7ohdyg.wasm - null null -2026-01-16 11:19:02.356 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.356 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.356 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.356 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.356 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.359 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.359 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.359 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.359 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.359 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.359 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.359 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.359 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.359 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.359 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.359 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.360 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.360 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.361 +03:00 [INF] Sending file. Request path: '_framework/System.Core.zxsh7ohdyg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\cubawh6yyf-{0}-zxsh7ohdyg-zxsh7ohdyg.gz' -2026-01-16 11:19:02.361 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.361 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Core.zxsh7ohdyg.wasm - 200 13110 application/wasm 6.4391ms -2026-01-16 11:19:02.366 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Data.Common.f0gomia98j.wasm - null null -2026-01-16 11:19:02.367 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.367 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.367 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.367 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.367 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.370 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.370 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.370 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.370 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.370 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.370 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.370 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.370 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.370 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.370 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.370 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.371 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.371 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.377 +03:00 [INF] Sending file. Request path: '_framework/System.Data.Common.f0gomia98j.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1c47smzjbl-{0}-f0gomia98j-f0gomia98j.gz' -2026-01-16 11:19:02.377 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.378 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Data.Common.f0gomia98j.wasm - 200 1008076 application/wasm 11.7856ms -2026-01-16 11:19:02.384 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Data.DataSetExtensions.3k3coynn1w.wasm - null null -2026-01-16 11:19:02.385 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.385 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.385 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.385 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.385 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.388 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.388 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.388 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.388 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.388 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.388 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.388 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.388 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.388 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.388 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.388 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.389 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.389 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.390 +03:00 [INF] Sending file. Request path: '_framework/System.Data.DataSetExtensions.3k3coynn1w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ud5iprd0cp-{0}-3k3coynn1w-3k3coynn1w.gz' -2026-01-16 11:19:02.390 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.391 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Data.DataSetExtensions.3k3coynn1w.wasm - 200 5430 application/wasm 6.2964ms -2026-01-16 11:19:02.395 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Data.d1s9ppg3o7.wasm - null null -2026-01-16 11:19:02.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.396 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.396 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.396 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.396 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.399 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.399 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.399 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.399 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.399 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.399 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.399 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.399 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.399 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.399 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.399 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.400 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.400 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.401 +03:00 [INF] Sending file. Request path: '_framework/System.Data.d1s9ppg3o7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\z59k6pwvr9-{0}-d1s9ppg3o7-d1s9ppg3o7.gz' -2026-01-16 11:19:02.401 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.401 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Data.d1s9ppg3o7.wasm - 200 15158 application/wasm 5.7936ms -2026-01-16 11:19:02.405 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Contracts.yj802auekg.wasm - null null -2026-01-16 11:19:02.406 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.406 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.406 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.406 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.406 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.410 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.410 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.410 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.410 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.410 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.410 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.410 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.410 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.410 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.410 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.410 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.411 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.411 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.411 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Contracts.yj802auekg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\895yo00sin-{0}-yj802auekg-yj802auekg.gz' -2026-01-16 11:19:02.412 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.412 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Contracts.yj802auekg.wasm - 200 5942 application/wasm 6.3037ms -2026-01-16 11:19:02.416 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Debug.d3luf33vju.wasm - null null -2026-01-16 11:19:02.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.417 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.417 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.417 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.417 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.420 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.420 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.420 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.420 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.420 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.420 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.420 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.421 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.421 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.421 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.421 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.421 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.422 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.422 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Debug.d3luf33vju.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\eplp8tl5qp-{0}-d3luf33vju-d3luf33vju.gz' -2026-01-16 11:19:02.422 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.423 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Debug.d3luf33vju.wasm - 200 5430 application/wasm 6.3673ms -2026-01-16 11:19:02.427 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.DiagnosticSource.4iwxfpqf71.wasm - null null -2026-01-16 11:19:02.428 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.428 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.428 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.428 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.428 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.431 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.431 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.431 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.431 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.431 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.431 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.431 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.431 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.431 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.431 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.431 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.432 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.432 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.434 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.DiagnosticSource.4iwxfpqf71.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1hb9b6viqf-{0}-4iwxfpqf71-4iwxfpqf71.gz' -2026-01-16 11:19:02.434 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.434 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.DiagnosticSource.4iwxfpqf71.wasm - 200 192335 application/wasm 7.5721ms -2026-01-16 11:19:02.442 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.FileVersionInfo.pqffbmgf59.wasm - null null -2026-01-16 11:19:02.442 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.442 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.442 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.442 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.442 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.446 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.446 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.446 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.446 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.446 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.446 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.446 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.446 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.446 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.446 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.446 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.447 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.447 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.448 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.FileVersionInfo.pqffbmgf59.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s56fv99ax6-{0}-pqffbmgf59-pqffbmgf59.gz' -2026-01-16 11:19:02.448 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.448 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.FileVersionInfo.pqffbmgf59.wasm - 200 12598 application/wasm 6.2199ms -2026-01-16 11:19:02.452 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Process.hgedtugxkh.wasm - null null -2026-01-16 11:19:02.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.453 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.453 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.453 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.453 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.455 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.455 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.455 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.455 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.455 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.455 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.455 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.456 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.456 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.456 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.456 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.457 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.457 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.458 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Process.hgedtugxkh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ulvoxvx0qx-{0}-hgedtugxkh-hgedtugxkh.gz' -2026-01-16 11:19:02.458 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.458 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Process.hgedtugxkh.wasm - 200 46395 application/wasm 6.222ms -2026-01-16 11:19:02.466 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.StackTrace.apl6dmc0ay.wasm - null null -2026-01-16 11:19:02.466 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.466 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.466 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.466 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.466 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.469 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.469 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.469 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.469 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.469 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.469 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.469 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.469 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.469 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.469 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.469 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.470 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.470 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.471 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.StackTrace.apl6dmc0ay.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b4bxks5sgj-{0}-apl6dmc0ay-apl6dmc0ay.gz' -2026-01-16 11:19:02.471 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.471 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.StackTrace.apl6dmc0ay.wasm - 200 15670 application/wasm 5.5314ms -2026-01-16 11:19:02.476 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.TextWriterTraceListener.p621ruagc5.wasm - null null -2026-01-16 11:19:02.477 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.477 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.477 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.477 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.477 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.480 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.480 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.480 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.480 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.480 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.480 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.480 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.480 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.480 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.480 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.480 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.481 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.481 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.482 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.TextWriterTraceListener.p621ruagc5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0rz7u0vbo5-{0}-p621ruagc5-p621ruagc5.gz' -2026-01-16 11:19:02.482 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.482 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.TextWriterTraceListener.p621ruagc5.wasm - 200 21302 application/wasm 6.0906ms -2026-01-16 11:19:02.488 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Tools.f5hnfusd9n.wasm - null null -2026-01-16 11:19:02.488 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.488 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.488 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.488 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.488 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.492 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.492 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.492 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.492 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.492 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.492 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.492 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.493 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.493 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.493 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.493 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.493 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.494 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.495 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Tools.f5hnfusd9n.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rtkunlcxi7-{0}-f5hnfusd9n-f5hnfusd9n.gz' -2026-01-16 11:19:02.495 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.495 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Tools.f5hnfusd9n.wasm - 200 4918 application/wasm 7.0936ms -2026-01-16 11:19:02.499 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.TraceSource.z6jsaoha6p.wasm - null null -2026-01-16 11:19:02.500 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.500 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.500 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.500 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.500 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.502 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.502 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.502 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.502 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.502 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.502 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.502 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.503 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.503 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.503 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.503 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.504 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.504 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.505 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.TraceSource.z6jsaoha6p.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3okia77zo6-{0}-z6jsaoha6p-z6jsaoha6p.gz' -2026-01-16 11:19:02.505 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.505 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.TraceSource.z6jsaoha6p.wasm - 200 48443 application/wasm 5.7831ms -2026-01-16 11:19:02.511 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Tracing.d1w6x6c56c.wasm - null null -2026-01-16 11:19:02.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.512 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.512 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.512 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.512 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.515 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.515 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.515 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.515 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.515 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.515 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.515 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.515 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.515 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.515 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.515 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.516 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.516 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.517 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Tracing.d1w6x6c56c.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bl5rt2o9qk-{0}-d1w6x6c56c-d1w6x6c56c.gz' -2026-01-16 11:19:02.517 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.517 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Tracing.d1w6x6c56c.wasm - 200 5942 application/wasm 5.9395ms -2026-01-16 11:19:02.522 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Drawing.Primitives.l0kpbmmg5r.wasm - null null -2026-01-16 11:19:02.523 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.523 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.523 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.523 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.523 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.526 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.526 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.526 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.526 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.526 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.526 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.526 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.526 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.526 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.526 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.526 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.526 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.527 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.528 +03:00 [INF] Sending file. Request path: '_framework/System.Drawing.Primitives.l0kpbmmg5r.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mnh24cyvjl-{0}-l0kpbmmg5r-l0kpbmmg5r.gz' -2026-01-16 11:19:02.528 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.528 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Drawing.Primitives.l0kpbmmg5r.wasm - 200 54587 application/wasm 6.3925ms -2026-01-16 11:19:02.533 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Drawing.ur4stg427u.wasm - null null -2026-01-16 11:19:02.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.537 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.537 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.537 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.537 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.537 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.537 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.537 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.537 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.537 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.537 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.537 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.721 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.721 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.722 +03:00 [INF] Sending file. Request path: '_framework/System.Drawing.ur4stg427u.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tcko64rf2o-{0}-ur4stg427u-ur4stg427u.gz' -2026-01-16 11:19:02.722 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.722 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Drawing.ur4stg427u.wasm - 200 10038 application/wasm 189.0056ms -2026-01-16 11:19:02.727 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Dynamic.Runtime.hhm1961hd1.wasm - null null -2026-01-16 11:19:02.727 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.727 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.728 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.728 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.728 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.732 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.732 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.732 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.732 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.732 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.732 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.732 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.733 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.733 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.733 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.733 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.734 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.734 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.735 +03:00 [INF] Sending file. Request path: '_framework/System.Dynamic.Runtime.hhm1961hd1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bmbd8giz1p-{0}-hhm1961hd1-hhm1961hd1.gz' -2026-01-16 11:19:02.735 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.735 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Dynamic.Runtime.hhm1961hd1.wasm - 200 5942 application/wasm 7.7509ms -2026-01-16 11:19:02.739 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Formats.Asn1.9b1kh77dim.wasm - null null -2026-01-16 11:19:02.739 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.740 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.740 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.740 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.740 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.742 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.742 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.742 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.742 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.742 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.742 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.742 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.742 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.742 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.742 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.742 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.743 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.743 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.744 +03:00 [INF] Sending file. Request path: '_framework/System.Formats.Asn1.9b1kh77dim.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3nsgkkymfm-{0}-9b1kh77dim-9b1kh77dim.gz' -2026-01-16 11:19:02.744 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.744 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Formats.Asn1.9b1kh77dim.wasm - 200 86848 application/wasm 5.695ms -2026-01-16 11:19:02.749 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Formats.Tar.pwu9oiomot.wasm - null null -2026-01-16 11:19:02.749 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.749 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.750 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.750 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.750 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.752 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.752 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.752 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.752 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.752 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.752 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.752 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.753 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.753 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.753 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.753 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.753 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.754 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.755 +03:00 [INF] Sending file. Request path: '_framework/System.Formats.Tar.pwu9oiomot.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\hazqfqk5pt-{0}-pwu9oiomot-pwu9oiomot.gz' -2026-01-16 11:19:02.755 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.755 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Formats.Tar.pwu9oiomot.wasm - 200 28470 application/wasm 6.0959ms -2026-01-16 11:19:02.760 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Globalization.Calendars.w6686c3eg8.wasm - null null -2026-01-16 11:19:02.761 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.761 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.761 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.761 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.761 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.763 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.763 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.763 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.763 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.763 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.763 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.763 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.764 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.764 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.764 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.764 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.764 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.765 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.765 +03:00 [INF] Sending file. Request path: '_framework/System.Globalization.Calendars.w6686c3eg8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\095aowv2ry-{0}-w6686c3eg8-w6686c3eg8.gz' -2026-01-16 11:19:02.765 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.765 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Globalization.Calendars.w6686c3eg8.wasm - 200 5430 application/wasm 5.3813ms -2026-01-16 11:19:02.770 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Globalization.Extensions.koczvzp0tt.wasm - null null -2026-01-16 11:19:02.770 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.771 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.771 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.771 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.771 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.773 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.773 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.773 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.773 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.773 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.773 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.773 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.774 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.774 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.774 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.774 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.774 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.775 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.775 +03:00 [INF] Sending file. Request path: '_framework/System.Globalization.Extensions.koczvzp0tt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dl0jfhz19c-{0}-koczvzp0tt-koczvzp0tt.gz' -2026-01-16 11:19:02.776 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.776 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Globalization.Extensions.koczvzp0tt.wasm - 200 4918 application/wasm 5.9544ms -2026-01-16 11:19:02.780 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Globalization.k8m97q3m8s.wasm - null null -2026-01-16 11:19:02.780 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.781 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.781 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.781 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.781 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.783 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.783 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.783 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.783 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.783 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.783 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.783 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.784 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.784 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.784 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.784 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.784 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.785 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.785 +03:00 [INF] Sending file. Request path: '_framework/System.Globalization.k8m97q3m8s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8q1hdhcajb-{0}-k8m97q3m8s-k8m97q3m8s.gz' -2026-01-16 11:19:02.785 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.786 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Globalization.k8m97q3m8s.wasm - 200 5430 application/wasm 5.7574ms -2026-01-16 11:19:02.790 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.Brotli.66hvl0dk85.wasm - null null -2026-01-16 11:19:02.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.791 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.791 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.791 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.791 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.794 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.794 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.794 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.794 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.794 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.794 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.794 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.794 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.794 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.794 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.794 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.795 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.795 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.796 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Compression.Brotli.66hvl0dk85.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\klv0zda5b4-{0}-66hvl0dk85-66hvl0dk85.gz' -2026-01-16 11:19:02.796 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.796 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.Brotli.66hvl0dk85.wasm - 200 18230 application/wasm 5.5312ms -2026-01-16 11:19:02.800 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.FileSystem.jhbp0nl2b8.wasm - null null -2026-01-16 11:19:02.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.801 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.801 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.801 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.801 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.805 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.805 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.805 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.805 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.805 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.805 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.805 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.805 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.805 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.805 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.805 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.806 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.806 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.807 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Compression.FileSystem.jhbp0nl2b8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3qa8sgt8n1-{0}-jhbp0nl2b8-jhbp0nl2b8.gz' -2026-01-16 11:19:02.807 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.807 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.FileSystem.jhbp0nl2b8.wasm - 200 4918 application/wasm 6.3831ms -2026-01-16 11:19:02.811 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.ZipFile.nap78ewmdw.wasm - null null -2026-01-16 11:19:02.812 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.812 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.812 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.812 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.812 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.814 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.814 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.815 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.815 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.815 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.815 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.815 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.815 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.815 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.815 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.815 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.815 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.816 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.816 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Compression.ZipFile.nap78ewmdw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s0uvr55768-{0}-nap78ewmdw-nap78ewmdw.gz' -2026-01-16 11:19:02.817 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.817 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.ZipFile.nap78ewmdw.wasm - 200 43323 application/wasm 5.7247ms -2026-01-16 11:19:02.825 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.wjdy7ns833.wasm - null null -2026-01-16 11:19:02.826 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.826 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.826 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.826 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.826 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.829 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.829 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.829 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.829 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.829 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.829 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.829 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.829 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.829 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.830 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.830 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.830 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.831 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.832 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Compression.wjdy7ns833.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b9wmrmes1g-{0}-wjdy7ns833-wjdy7ns833.gz' -2026-01-16 11:19:02.832 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.833 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.wjdy7ns833.wasm - 200 157514 application/wasm 7.7638ms -2026-01-16 11:19:02.838 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.AccessControl.eod3jwbqn7.wasm - null null -2026-01-16 11:19:02.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.839 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.839 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.839 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.839 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.842 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.842 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.842 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.842 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.842 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.842 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.842 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.842 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.842 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.842 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.842 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.842 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.843 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.843 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.AccessControl.eod3jwbqn7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dxkig4l83f-{0}-eod3jwbqn7-eod3jwbqn7.gz' -2026-01-16 11:19:02.843 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.843 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.AccessControl.eod3jwbqn7.wasm - 200 21814 application/wasm 5.3243ms -2026-01-16 11:19:02.848 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.DriveInfo.driq9z3dvq.wasm - null null -2026-01-16 11:19:02.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.852 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.852 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.852 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.852 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.852 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.852 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.852 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.852 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.852 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.852 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.852 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.853 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.853 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.854 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.DriveInfo.driq9z3dvq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\53tiabgbqz-{0}-driq9z3dvq-driq9z3dvq.gz' -2026-01-16 11:19:02.854 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.854 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.DriveInfo.driq9z3dvq.wasm - 200 13622 application/wasm 6.2125ms -2026-01-16 11:19:02.859 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.Primitives.81fwc35czq.wasm - null null -2026-01-16 11:19:02.859 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.860 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.860 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.860 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.860 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.862 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.862 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.862 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.862 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.862 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.862 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.862 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.862 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.862 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.862 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.862 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.863 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.863 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.864 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.Primitives.81fwc35czq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3hdbxu1ccm-{0}-81fwc35czq-81fwc35czq.gz' -2026-01-16 11:19:02.864 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.864 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.Primitives.81fwc35czq.wasm - 200 4918 application/wasm 5.2205ms -2026-01-16 11:19:02.868 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.Watcher.adgwo4kuza.wasm - null null -2026-01-16 11:19:02.869 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.869 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.869 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.869 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.869 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.871 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.871 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.871 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.871 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.871 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.871 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.871 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.871 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.871 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.871 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.871 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.872 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.872 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.873 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.Watcher.adgwo4kuza.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0nk9uqd91z-{0}-adgwo4kuza-adgwo4kuza.gz' -2026-01-16 11:19:02.873 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.874 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.Watcher.adgwo4kuza.wasm - 200 22838 application/wasm 5.588ms -2026-01-16 11:19:02.879 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.bwu3sqaj6h.wasm - null null -2026-01-16 11:19:02.879 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.879 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.879 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.879 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.879 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.882 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.882 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.882 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.882 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.882 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.882 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.882 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.882 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.882 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.882 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.882 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.883 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.884 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.884 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.bwu3sqaj6h.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0oeun214in-{0}-bwu3sqaj6h-bwu3sqaj6h.gz' -2026-01-16 11:19:02.884 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.884 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.bwu3sqaj6h.wasm - 200 5430 application/wasm 5.7683ms -2026-01-16 11:19:02.888 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.IsolatedStorage.h5a2uwu0ao.wasm - null null -2026-01-16 11:19:02.889 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.889 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.889 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.889 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.889 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.892 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.892 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.892 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.892 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.892 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.892 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.892 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.892 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.892 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.892 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.892 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.893 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.893 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.894 +03:00 [INF] Sending file. Request path: '_framework/System.IO.IsolatedStorage.h5a2uwu0ao.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wxrt5vpq1k-{0}-h5a2uwu0ao-h5a2uwu0ao.gz' -2026-01-16 11:19:02.894 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.894 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.IsolatedStorage.h5a2uwu0ao.wasm - 200 24886 application/wasm 5.3995ms -2026-01-16 11:19:02.898 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.MemoryMappedFiles.7rigkgafok.wasm - null null -2026-01-16 11:19:02.899 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.899 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.899 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.899 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.899 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.902 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.902 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.902 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.902 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.902 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.902 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.902 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.902 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.902 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.902 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.902 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.903 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.903 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.904 +03:00 [INF] Sending file. Request path: '_framework/System.IO.MemoryMappedFiles.7rigkgafok.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vyic7lxnxv-{0}-7rigkgafok-7rigkgafok.gz' -2026-01-16 11:19:02.904 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.904 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.MemoryMappedFiles.7rigkgafok.wasm - 200 39739 application/wasm 6.1276ms -2026-01-16 11:19:02.909 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipelines.pq56wwa14f.wasm - null null -2026-01-16 11:19:02.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.912 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.913 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.913 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.913 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.913 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.913 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.913 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.913 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.913 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.913 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.913 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.913 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.914 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.915 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Pipelines.pq56wwa14f.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\a08rh4wqum-{0}-pq56wwa14f-pq56wwa14f.gz' -2026-01-16 11:19:02.915 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.915 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipelines.pq56wwa14f.wasm - 200 67904 application/wasm 5.7758ms -2026-01-16 11:19:02.920 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipes.AccessControl.orawgey7bd.wasm - null null -2026-01-16 11:19:02.921 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.921 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.921 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.921 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.921 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.924 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.924 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.924 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.924 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.924 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.924 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.924 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.924 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.924 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.924 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.924 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.925 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.925 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.926 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Pipes.AccessControl.orawgey7bd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\l16mq4yf9p-{0}-orawgey7bd-orawgey7bd.gz' -2026-01-16 11:19:02.926 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.926 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipes.AccessControl.orawgey7bd.wasm - 200 13110 application/wasm 5.8547ms -2026-01-16 11:19:02.931 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipes.qv5hx9ne5m.wasm - null null -2026-01-16 11:19:02.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.931 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.931 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.931 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.931 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.933 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.934 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.934 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.934 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.934 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.934 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.934 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.934 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.934 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.934 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.934 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.934 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.934 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.935 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Pipes.qv5hx9ne5m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\r2irkbzfn5-{0}-qv5hx9ne5m-qv5hx9ne5m.gz' -2026-01-16 11:19:02.935 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.935 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipes.qv5hx9ne5m.wasm - 200 32054 application/wasm 4.8412ms -2026-01-16 11:19:02.941 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.UnmanagedMemoryStream.zjpuh62vtt.wasm - null null -2026-01-16 11:19:02.941 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.941 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.941 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.941 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.941 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.944 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.944 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.944 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.944 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.944 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.944 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.944 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.944 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.944 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.944 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.944 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.945 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.945 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.946 +03:00 [INF] Sending file. Request path: '_framework/System.IO.UnmanagedMemoryStream.zjpuh62vtt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\u2mfjvv6a6-{0}-zjpuh62vtt-zjpuh62vtt.gz' -2026-01-16 11:19:02.946 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.946 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.UnmanagedMemoryStream.zjpuh62vtt.wasm - 200 5430 application/wasm 5.0018ms -2026-01-16 11:19:02.950 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.kdm5se4z4i.wasm - null null -2026-01-16 11:19:02.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.951 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.951 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.951 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.951 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.953 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.953 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.953 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.953 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.953 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.953 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.953 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.954 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.954 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.954 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.954 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.954 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.955 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.955 +03:00 [INF] Sending file. Request path: '_framework/System.IO.kdm5se4z4i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tx0zr2bfyn-{0}-kdm5se4z4i-kdm5se4z4i.gz' -2026-01-16 11:19:02.955 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.955 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.kdm5se4z4i.wasm - 200 5430 application/wasm 5.5587ms -2026-01-16 11:19:02.960 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.AsyncEnumerable.24q069vvmu.wasm - null null -2026-01-16 11:19:02.961 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.961 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.961 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.961 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.961 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.964 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.964 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.964 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.964 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.964 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.964 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.964 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.964 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.964 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.964 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.964 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.964 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.965 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.967 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.AsyncEnumerable.24q069vvmu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c7lzsfjd6q-{0}-24q069vvmu-24q069vvmu.gz' -2026-01-16 11:19:02.967 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.968 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.AsyncEnumerable.24q069vvmu.wasm - 200 446327 application/wasm 7.7046ms -2026-01-16 11:19:02.974 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.Expressions.5vac4cfeo2.wasm - null null -2026-01-16 11:19:02.975 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.975 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.975 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.975 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.975 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.978 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.978 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.978 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.978 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.978 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.978 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.978 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.978 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.978 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.978 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.978 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.979 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.979 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.983 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.Expressions.5vac4cfeo2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ofq1bjb4ny-{0}-5vac4cfeo2-5vac4cfeo2.gz' -2026-01-16 11:19:02.983 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.983 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.Expressions.5vac4cfeo2.wasm - 200 565131 application/wasm 9.2934ms -2026-01-16 11:19:02.990 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.Parallel.wec9zwybs3.wasm - null null -2026-01-16 11:19:02.991 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.991 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:02.991 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:02.991 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:02.991 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:02.994 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.994 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.994 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:02.994 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:02.994 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:02.994 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:02.994 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.994 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:02.994 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:02.994 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:02.994 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:02.994 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:02.995 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.997 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.Parallel.wec9zwybs3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gqwqnnwtf4-{0}-wec9zwybs3-wec9zwybs3.gz' -2026-01-16 11:19:02.997 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:02.997 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.Parallel.wec9zwybs3.wasm - 200 212820 application/wasm 6.8587ms -2026-01-16 11:19:03.002 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.Queryable.aacsqokaru.wasm - null null -2026-01-16 11:19:03.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.002 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.002 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.002 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.002 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.005 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.005 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.005 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.005 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.005 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.005 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.005 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.005 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.005 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.005 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.005 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.006 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.006 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.008 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.Queryable.aacsqokaru.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6oa4hfxdqf-{0}-aacsqokaru-aacsqokaru.gz' -2026-01-16 11:19:03.008 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.008 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.Queryable.aacsqokaru.wasm - 200 68416 application/wasm 6.5616ms -2026-01-16 11:19:03.013 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.xsk9czcoz7.wasm - null null -2026-01-16 11:19:03.014 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.014 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.014 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.014 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.014 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.016 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.016 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.016 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.016 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.016 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.016 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.017 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.017 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.017 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.017 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.017 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.017 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.018 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.020 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.xsk9czcoz7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xukhwpcysr-{0}-xsk9czcoz7-xsk9czcoz7.gz' -2026-01-16 11:19:03.020 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.021 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.xsk9czcoz7.wasm - 200 190799 application/wasm 7.7417ms -2026-01-16 11:19:03.027 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Memory.av3iy8oqe6.wasm - null null -2026-01-16 11:19:03.027 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.027 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.027 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.027 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.027 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.030 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.030 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.030 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.030 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.030 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.030 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.030 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.030 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.030 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.030 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.030 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.031 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.031 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.032 +03:00 [INF] Sending file. Request path: '_framework/System.Memory.av3iy8oqe6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\20k8bcs2ry-{0}-av3iy8oqe6-av3iy8oqe6.gz' -2026-01-16 11:19:03.032 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.032 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Memory.av3iy8oqe6.wasm - 200 45371 application/wasm 5.102ms -2026-01-16 11:19:03.037 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Http.Json.f5ti54ia1a.wasm - null null -2026-01-16 11:19:03.037 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.038 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.038 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.038 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.038 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.041 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.041 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.041 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.041 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.041 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.041 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.041 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.042 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.042 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.042 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.042 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.042 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.043 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.043 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Http.Json.f5ti54ia1a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\hdhp2fv8el-{0}-f5ti54ia1a-f5ti54ia1a.gz' -2026-01-16 11:19:03.043 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.044 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Http.Json.f5ti54ia1a.wasm - 200 45883 application/wasm 6.879ms -2026-01-16 11:19:03.049 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Http.xnexopyo77.wasm - null null -2026-01-16 11:19:03.049 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.049 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.049 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.049 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.049 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.051 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.051 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.051 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.051 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.051 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.051 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.051 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.052 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.052 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.052 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.052 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.052 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.052 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.055 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Http.xnexopyo77.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5zhsh7htpt-{0}-xnexopyo77-xnexopyo77.gz' -2026-01-16 11:19:03.055 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.056 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Http.xnexopyo77.wasm - 200 286046 application/wasm 7.1277ms -2026-01-16 11:19:03.061 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.HttpListener.qea3lr0ivv.wasm - null null -2026-01-16 11:19:03.062 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.062 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.062 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.062 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.062 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.065 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.065 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.065 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.065 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.065 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.065 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.065 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.065 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.065 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.065 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.065 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.066 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.066 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.067 +03:00 [INF] Sending file. Request path: '_framework/System.Net.HttpListener.qea3lr0ivv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xstee2l2o3-{0}-qea3lr0ivv-qea3lr0ivv.gz' -2026-01-16 11:19:03.067 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.067 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.HttpListener.qea3lr0ivv.wasm - 200 45883 application/wasm 5.9585ms -2026-01-16 11:19:03.073 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Mail.kabvwy0nwb.wasm - null null -2026-01-16 11:19:03.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.074 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.074 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.074 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.074 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.077 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.077 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.077 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.077 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.077 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.077 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.077 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.077 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.077 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.077 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.077 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.078 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.078 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.080 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Mail.kabvwy0nwb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\brj66r630l-{0}-kabvwy0nwb-kabvwy0nwb.gz' -2026-01-16 11:19:03.080 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.080 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Mail.kabvwy0nwb.wasm - 200 95040 application/wasm 6.8421ms -2026-01-16 11:19:03.085 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.NameResolution.r77xqyi48e.wasm - null null -2026-01-16 11:19:03.086 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.086 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.086 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.086 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.086 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.089 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.089 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.089 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.089 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.089 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.089 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.089 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.089 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.089 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.089 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.089 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.090 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.090 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.091 +03:00 [INF] Sending file. Request path: '_framework/System.Net.NameResolution.r77xqyi48e.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0muzq1nn1l-{0}-r77xqyi48e-r77xqyi48e.gz' -2026-01-16 11:19:03.091 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.091 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.NameResolution.r77xqyi48e.wasm - 200 14134 application/wasm 5.9802ms -2026-01-16 11:19:03.095 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.NetworkInformation.4y8ae4b47g.wasm - null null -2026-01-16 11:19:03.096 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.096 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.096 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.096 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.096 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.099 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.099 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.099 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.099 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.099 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.099 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.099 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.099 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.099 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.099 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.099 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.100 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.100 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.101 +03:00 [INF] Sending file. Request path: '_framework/System.Net.NetworkInformation.4y8ae4b47g.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\t7lf75pu6w-{0}-4y8ae4b47g-4y8ae4b47g.gz' -2026-01-16 11:19:03.101 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.101 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.NetworkInformation.4y8ae4b47g.wasm - 200 32054 application/wasm 5.9768ms -2026-01-16 11:19:03.107 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Ping.fb39s7nqmu.wasm - null null -2026-01-16 11:19:03.107 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.107 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.108 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.108 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.108 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.110 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.110 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.110 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.110 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.111 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.111 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.111 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.111 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.111 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.111 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.111 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.112 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.112 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.113 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Ping.fb39s7nqmu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1qhthfilvz-{0}-fb39s7nqmu-fb39s7nqmu.gz' -2026-01-16 11:19:03.113 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.113 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Ping.fb39s7nqmu.wasm - 200 17718 application/wasm 5.8588ms -2026-01-16 11:19:03.118 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Primitives.2oo4pve6tx.wasm - null null -2026-01-16 11:19:03.119 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.119 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.119 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.119 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.119 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.121 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.121 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.122 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.122 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.122 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.122 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.122 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.122 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.122 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.122 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.122 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.126 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.126 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.128 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Primitives.2oo4pve6tx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xxez8u380e-{0}-2oo4pve6tx-2oo4pve6tx.gz' -2026-01-16 11:19:03.128 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.128 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Primitives.2oo4pve6tx.wasm - 200 97088 application/wasm 9.7953ms -2026-01-16 11:19:03.134 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Quic.wedsu6m1ok.wasm - null null -2026-01-16 11:19:03.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.135 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.135 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.135 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.135 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.139 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.139 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.139 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.139 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.139 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.139 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.139 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.140 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.140 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.140 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.140 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.141 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.141 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.142 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Quic.wedsu6m1ok.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mavmo5ad6x-{0}-wedsu6m1ok-wedsu6m1ok.gz' -2026-01-16 11:19:03.142 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.143 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Quic.wedsu6m1ok.wasm - 200 28982 application/wasm 8.462ms -2026-01-16 11:19:03.148 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Requests.dd8um1v0v4.wasm - null null -2026-01-16 11:19:03.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.149 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.149 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.149 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.149 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.152 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.152 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.152 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.152 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.152 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.152 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.152 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.153 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.153 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.153 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.153 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.153 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.154 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.154 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Requests.dd8um1v0v4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\g8osyueis5-{0}-dd8um1v0v4-dd8um1v0v4.gz' -2026-01-16 11:19:03.155 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.155 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Requests.dd8um1v0v4.wasm - 200 55611 application/wasm 6.757ms -2026-01-16 11:19:03.160 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Security.j01yc12epg.wasm - null null -2026-01-16 11:19:03.161 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.161 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.161 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.161 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.161 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.164 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.164 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.164 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.164 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.164 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.164 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.164 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.165 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.165 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.165 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.165 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.166 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.166 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.167 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Security.j01yc12epg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vd1ks16ws6-{0}-j01yc12epg-j01yc12epg.gz' -2026-01-16 11:19:03.167 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.168 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Security.j01yc12epg.wasm - 200 104261 application/wasm 7.367ms -2026-01-16 11:19:03.174 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.ServerSentEvents.n20pwunwwa.wasm - null null -2026-01-16 11:19:03.174 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.174 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.174 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.174 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.174 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.177 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.178 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.178 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.178 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.178 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.178 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.178 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.178 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.178 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.178 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.178 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.179 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.179 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.180 +03:00 [INF] Sending file. Request path: '_framework/System.Net.ServerSentEvents.n20pwunwwa.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rp6twqxirl-{0}-n20pwunwwa-n20pwunwwa.gz' -2026-01-16 11:19:03.180 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.180 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.ServerSentEvents.n20pwunwwa.wasm - 200 30518 application/wasm 6.6928ms -2026-01-16 11:19:03.201 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.ServicePoint.6qgdmrxct2.wasm - null null -2026-01-16 11:19:03.202 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.202 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.202 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.202 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.202 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.205 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.205 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.205 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.205 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.205 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.205 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.205 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.205 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.205 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.205 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.205 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.206 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.206 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.207 +03:00 [INF] Sending file. Request path: '_framework/System.Net.ServicePoint.6qgdmrxct2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v7t97n1u19-{0}-6qgdmrxct2-6qgdmrxct2.gz' -2026-01-16 11:19:03.207 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.207 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.ServicePoint.6qgdmrxct2.wasm - 200 4918 application/wasm 6.0151ms -2026-01-16 11:19:03.214 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Sockets.0jj55xk9rv.wasm - null null -2026-01-16 11:19:03.215 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.215 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.215 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.215 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.215 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.217 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.217 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.217 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.217 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.217 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.217 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.217 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.218 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.218 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.218 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.218 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.218 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.218 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.219 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Sockets.0jj55xk9rv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\i4k589b7bn-{0}-0jj55xk9rv-0jj55xk9rv.gz' -2026-01-16 11:19:03.219 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.220 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Sockets.0jj55xk9rv.wasm - 200 64315 application/wasm 5.6572ms -2026-01-16 11:19:03.227 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebClient.3wc74qco9q.wasm - null null -2026-01-16 11:19:03.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.231 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.231 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.231 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.231 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.231 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.231 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.231 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.231 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.231 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.231 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.231 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.233 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.234 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.235 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebClient.3wc74qco9q.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9mnjsb8x3q-{0}-3wc74qco9q-3wc74qco9q.gz' -2026-01-16 11:19:03.235 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.236 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebClient.3wc74qco9q.wasm - 200 45883 application/wasm 8.9216ms -2026-01-16 11:19:03.243 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebHeaderCollection.4ybcvi6krs.wasm - null null -2026-01-16 11:19:03.244 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.244 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.244 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.244 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.244 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.246 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.246 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.246 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.246 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.246 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.246 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.246 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.246 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.246 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.246 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.246 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.247 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.247 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.248 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebHeaderCollection.4ybcvi6krs.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\apet8won7e-{0}-4ybcvi6krs-4ybcvi6krs.gz' -2026-01-16 11:19:03.248 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.248 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebHeaderCollection.4ybcvi6krs.wasm - 200 22838 application/wasm 5.3979ms -2026-01-16 11:19:03.254 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebProxy.zxvs9bwlaq.wasm - null null -2026-01-16 11:19:03.254 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.254 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.254 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.254 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.254 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.257 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.258 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.258 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.258 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.258 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.258 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.258 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.258 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.258 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.258 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.258 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.259 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.259 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.260 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebProxy.zxvs9bwlaq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n8e7iy8bgt-{0}-zxvs9bwlaq-zxvs9bwlaq.gz' -2026-01-16 11:19:03.260 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.260 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebProxy.zxvs9bwlaq.wasm - 200 11574 application/wasm 6.5727ms -2026-01-16 11:19:03.266 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebSockets.Client.n57nf3z1br.wasm - null null -2026-01-16 11:19:03.267 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.267 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.267 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.267 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.267 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.270 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.270 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.270 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.270 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.270 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.270 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.270 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.270 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.270 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.270 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.270 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.271 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.271 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.272 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebSockets.Client.n57nf3z1br.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rnseevpeje-{0}-n57nf3z1br-n57nf3z1br.gz' -2026-01-16 11:19:03.273 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.273 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebSockets.Client.n57nf3z1br.wasm - 200 42299 application/wasm 6.6613ms -2026-01-16 11:19:03.281 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebSockets.i3475fl55i.wasm - null null -2026-01-16 11:19:03.281 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.281 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.281 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.281 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.281 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.284 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.284 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.284 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.284 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.284 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.284 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.284 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.284 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.284 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.284 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.284 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.286 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.286 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.288 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebSockets.i3475fl55i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fixxlx5x95-{0}-i3475fl55i-i3475fl55i.gz' -2026-01-16 11:19:03.288 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.288 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebSockets.i3475fl55i.wasm - 200 98629 application/wasm 7.3521ms -2026-01-16 11:19:03.293 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.2jb9y9tls4.wasm - null null -2026-01-16 11:19:03.294 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.294 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.294 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.294 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.294 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.297 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.297 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.297 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.297 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.297 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.297 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.297 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.297 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.297 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.297 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.297 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.298 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.298 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.299 +03:00 [INF] Sending file. Request path: '_framework/System.Net.2jb9y9tls4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sdhyils1a8-{0}-2jb9y9tls4-2jb9y9tls4.gz' -2026-01-16 11:19:03.299 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.299 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.2jb9y9tls4.wasm - 200 6966 application/wasm 5.7508ms -2026-01-16 11:19:03.305 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Numerics.Vectors.tjoypuu8wa.wasm - null null -2026-01-16 11:19:03.306 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.306 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.306 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.306 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.306 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.309 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.309 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.309 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.309 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.309 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.309 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.309 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.309 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.309 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.309 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.309 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.310 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.310 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.311 +03:00 [INF] Sending file. Request path: '_framework/System.Numerics.Vectors.tjoypuu8wa.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\52qfucpyv5-{0}-tjoypuu8wa-tjoypuu8wa.gz' -2026-01-16 11:19:03.311 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.311 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Numerics.Vectors.tjoypuu8wa.wasm - 200 5430 application/wasm 6.0472ms -2026-01-16 11:19:03.315 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Numerics.zb6snwiiqo.wasm - null null -2026-01-16 11:19:03.315 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.315 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.315 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.315 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.315 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.318 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.318 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.318 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.318 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.318 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.318 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.318 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.318 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.318 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.318 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.318 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.319 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.319 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.320 +03:00 [INF] Sending file. Request path: '_framework/System.Numerics.zb6snwiiqo.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3mhjbwzot4-{0}-zb6snwiiqo-zb6snwiiqo.gz' -2026-01-16 11:19:03.320 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.320 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Numerics.zb6snwiiqo.wasm - 200 4918 application/wasm 5.4485ms -2026-01-16 11:19:03.326 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ObjectModel.qra8ipv6cl.wasm - null null -2026-01-16 11:19:03.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.327 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.327 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.327 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.327 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.330 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.330 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.330 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.330 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.330 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.330 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.330 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.330 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.330 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.330 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.330 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.331 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.331 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.331 +03:00 [INF] Sending file. Request path: '_framework/System.ObjectModel.qra8ipv6cl.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\69h7jimh8b-{0}-qra8ipv6cl-qra8ipv6cl.gz' -2026-01-16 11:19:03.332 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.332 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ObjectModel.qra8ipv6cl.wasm - 200 31030 application/wasm 5.9092ms -2026-01-16 11:19:03.339 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.DataContractSerialization.cdaesawoob.wasm - null null -2026-01-16 11:19:03.340 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.340 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.340 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.340 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.340 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.343 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.343 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.343 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.343 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.343 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.343 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.343 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.343 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.343 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.343 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.343 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.344 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.344 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.349 +03:00 [INF] Sending file. Request path: '_framework/System.Private.DataContractSerialization.cdaesawoob.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xukodscfdt-{0}-cdaesawoob-cdaesawoob.gz' -2026-01-16 11:19:03.350 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.350 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.DataContractSerialization.cdaesawoob.wasm - 200 849331 application/wasm 10.9486ms -2026-01-16 11:19:03.359 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.Uri.d7c7uu4en8.wasm - null null -2026-01-16 11:19:03.359 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.359 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.359 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.360 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.360 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.362 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.362 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.363 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.363 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.363 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.363 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.363 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.363 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.363 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.363 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.363 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.364 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.364 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.365 +03:00 [INF] Sending file. Request path: '_framework/System.Private.Uri.d7c7uu4en8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ru8d7hu3hx-{0}-d7c7uu4en8-d7c7uu4en8.gz' -2026-01-16 11:19:03.365 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.365 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.Uri.d7c7uu4en8.wasm - 200 95040 application/wasm 6.702ms -2026-01-16 11:19:03.373 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.Xml.Linq.yklun9npsh.wasm - null null -2026-01-16 11:19:03.374 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.374 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.374 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.374 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.374 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.377 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.377 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.377 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.377 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.378 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.378 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.378 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.378 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.378 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.378 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.378 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.378 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.379 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.380 +03:00 [INF] Sending file. Request path: '_framework/System.Private.Xml.Linq.yklun9npsh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wby45u92ah-{0}-yklun9npsh-yklun9npsh.gz' -2026-01-16 11:19:03.380 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.381 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.Xml.Linq.yklun9npsh.wasm - 200 143690 application/wasm 7.2617ms -2026-01-16 11:19:03.388 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.Xml.8fl2owujec.wasm - null null -2026-01-16 11:19:03.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.389 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.389 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.389 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.389 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.392 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.393 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.393 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.393 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.393 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.393 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.393 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.393 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.393 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.393 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.393 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.394 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.394 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.432 +03:00 [INF] Sending file. Request path: '_framework/System.Private.Xml.8fl2owujec.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4tw2sl7qh6-{0}-8fl2owujec-8fl2owujec.gz' -2026-01-16 11:19:03.432 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.432 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.Xml.8fl2owujec.wasm - 200 3096336 application/wasm 44.1501ms -2026-01-16 11:19:03.449 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.DispatchProxy.dur3huf884.wasm - null null -2026-01-16 11:19:03.450 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.450 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.450 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.450 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.450 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.454 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.454 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.454 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.454 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.454 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.454 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.454 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.454 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.454 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.454 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.454 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.455 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.457 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.458 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.DispatchProxy.dur3huf884.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1vtfgkdvnc-{0}-dur3huf884-dur3huf884.gz' -2026-01-16 11:19:03.458 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.458 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.DispatchProxy.dur3huf884.wasm - 200 27958 application/wasm 9.1036ms -2026-01-16 11:19:03.469 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.ILGeneration.pei97jn90w.wasm - null null -2026-01-16 11:19:03.470 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.470 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.470 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.470 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.470 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.472 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.473 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.473 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.473 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.473 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.473 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.473 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.473 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.473 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.473 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.473 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.474 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.474 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.475 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Emit.ILGeneration.pei97jn90w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v1gyf0d1ub-{0}-pei97jn90w-pei97jn90w.gz' -2026-01-16 11:19:03.475 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.475 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.ILGeneration.pei97jn90w.wasm - 200 5430 application/wasm 6.2966ms -2026-01-16 11:19:03.480 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.Lightweight.ywsyqlj9p1.wasm - null null -2026-01-16 11:19:03.481 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.481 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.481 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.481 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.481 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.484 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.484 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.484 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.484 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.484 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.484 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.484 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.484 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.484 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.484 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.484 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.485 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.485 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.486 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Emit.Lightweight.ywsyqlj9p1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fhnd5yeiv1-{0}-ywsyqlj9p1-ywsyqlj9p1.gz' -2026-01-16 11:19:03.486 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.486 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.Lightweight.ywsyqlj9p1.wasm - 200 5430 application/wasm 5.9248ms -2026-01-16 11:19:03.496 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.tumhikm19o.wasm - null null -2026-01-16 11:19:03.497 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.497 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.497 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.497 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.497 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.500 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.500 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.500 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.500 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.500 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.500 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.500 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.500 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.500 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.500 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.500 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.501 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.501 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.503 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Emit.tumhikm19o.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vgtdlzmyp9-{0}-tumhikm19o-tumhikm19o.gz' -2026-01-16 11:19:03.503 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.503 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.tumhikm19o.wasm - 200 122693 application/wasm 6.8191ms -2026-01-16 11:19:03.510 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Extensions.z98cfn5ig8.wasm - null null -2026-01-16 11:19:03.511 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.511 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.511 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.511 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.511 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.514 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.514 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.514 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.514 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.514 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.514 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.514 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.514 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.514 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.514 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.514 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.515 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.515 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.516 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Extensions.z98cfn5ig8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5188hd084t-{0}-z98cfn5ig8-z98cfn5ig8.gz' -2026-01-16 11:19:03.516 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.516 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Extensions.z98cfn5ig8.wasm - 200 4918 application/wasm 6.0213ms -2026-01-16 11:19:03.521 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Metadata.j4t1n1ywxj.wasm - null null -2026-01-16 11:19:03.522 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.522 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.522 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.522 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.522 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.525 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.525 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.525 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.525 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.525 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.525 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.525 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.526 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.526 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.526 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.526 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.526 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.527 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.530 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Metadata.j4t1n1ywxj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ih2v39fwix-{0}-j4t1n1ywxj-j4t1n1ywxj.gz' -2026-01-16 11:19:03.530 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.530 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Metadata.j4t1n1ywxj.wasm - 200 493441 application/wasm 9.5813ms -2026-01-16 11:19:03.546 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Primitives.p4ntci6hk7.wasm - null null -2026-01-16 11:19:03.546 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.546 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.549 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.549 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.549 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.549 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.549 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.549 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.549 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.549 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.549 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.549 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.549 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.550 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.550 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.551 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Primitives.p4ntci6hk7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\z9kjf4ns5o-{0}-p4ntci6hk7-p4ntci6hk7.gz' -2026-01-16 11:19:03.551 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.551 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Primitives.p4ntci6hk7.wasm - 200 5430 application/wasm 5.3348ms -2026-01-16 11:19:03.564 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.TypeExtensions.puzzlnwex2.wasm - null null -2026-01-16 11:19:03.565 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.565 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.565 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.565 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.565 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.568 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.568 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.568 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.568 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.568 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.568 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.568 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.568 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.568 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.568 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.568 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.569 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.569 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.570 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.TypeExtensions.puzzlnwex2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7ukk8euu3c-{0}-puzzlnwex2-puzzlnwex2.gz' -2026-01-16 11:19:03.570 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.570 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.TypeExtensions.puzzlnwex2.wasm - 200 14134 application/wasm 6.2083ms -2026-01-16 11:19:03.577 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.lt32pnnkzd.wasm - null null -2026-01-16 11:19:03.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.578 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.578 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.578 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.578 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.580 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.580 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.580 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.580 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.580 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.580 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.580 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.581 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.581 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.581 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.581 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.581 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.581 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.582 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.lt32pnnkzd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5zfqu7bsm3-{0}-lt32pnnkzd-lt32pnnkzd.gz' -2026-01-16 11:19:03.582 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.582 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.lt32pnnkzd.wasm - 200 5942 application/wasm 5.4527ms -2026-01-16 11:19:03.590 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Resources.Reader.c8jfsntxbn.wasm - null null -2026-01-16 11:19:03.591 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.591 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.591 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.591 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.591 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.594 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.594 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.594 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.594 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.594 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.594 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.594 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.595 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.595 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.595 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.595 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.595 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.596 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.597 +03:00 [INF] Sending file. Request path: '_framework/System.Resources.Reader.c8jfsntxbn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5fcb3hbz6f-{0}-c8jfsntxbn-c8jfsntxbn.gz' -2026-01-16 11:19:03.597 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.597 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Resources.Reader.c8jfsntxbn.wasm - 200 4918 application/wasm 6.9209ms -2026-01-16 11:19:03.605 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Resources.ResourceManager.q30psrnl7u.wasm - null null -2026-01-16 11:19:03.605 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.606 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.606 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.606 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.606 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.609 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.609 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.609 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.609 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.609 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.609 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.609 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.610 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.610 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.610 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.610 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.611 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.611 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.612 +03:00 [INF] Sending file. Request path: '_framework/System.Resources.ResourceManager.q30psrnl7u.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\k3xfrex2pp-{0}-q30psrnl7u-q30psrnl7u.gz' -2026-01-16 11:19:03.612 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.612 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Resources.ResourceManager.q30psrnl7u.wasm - 200 5430 application/wasm 7.3228ms -2026-01-16 11:19:03.617 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Resources.Writer.wvyn0j1lcg.wasm - null null -2026-01-16 11:19:03.617 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.617 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.617 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.617 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.617 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.621 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.621 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.621 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.621 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.621 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.621 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.621 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.621 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.621 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.621 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.621 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.622 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.622 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.623 +03:00 [INF] Sending file. Request path: '_framework/System.Resources.Writer.wvyn0j1lcg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wsg9isam35-{0}-wvyn0j1lcg-wvyn0j1lcg.gz' -2026-01-16 11:19:03.623 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.624 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Resources.Writer.wvyn0j1lcg.wasm - 200 16694 application/wasm 7.1119ms -2026-01-16 11:19:03.629 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.CompilerServices.Unsafe.djrvtrz9tb.wasm - null null -2026-01-16 11:19:03.630 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.630 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.630 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.630 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.630 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.633 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.633 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.633 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.633 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.633 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.633 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.633 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.633 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.633 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.634 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.634 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.634 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.634 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.635 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.CompilerServices.Unsafe.djrvtrz9tb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\smsvmq9glf-{0}-djrvtrz9tb-djrvtrz9tb.gz' -2026-01-16 11:19:03.635 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.636 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.CompilerServices.Unsafe.djrvtrz9tb.wasm - 200 4918 application/wasm 6.4126ms -2026-01-16 11:19:03.643 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.CompilerServices.VisualC.luekj4crl6.wasm - null null -2026-01-16 11:19:03.644 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.644 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.644 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.644 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.644 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.647 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.647 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.647 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.647 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.647 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.647 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.647 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.647 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.647 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.647 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.647 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.648 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.648 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.649 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.CompilerServices.VisualC.luekj4crl6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\w5clnjen17-{0}-luekj4crl6-luekj4crl6.gz' -2026-01-16 11:19:03.649 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.649 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.CompilerServices.VisualC.luekj4crl6.wasm - 200 6966 application/wasm 6.0475ms -2026-01-16 11:19:03.656 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Extensions.d5mymlulmr.wasm - null null -2026-01-16 11:19:03.657 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.657 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.657 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.657 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.657 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.659 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.659 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.659 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.659 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.659 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.659 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.659 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.660 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.660 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.660 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.660 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.660 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.660 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.661 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Extensions.d5mymlulmr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n6jkmkc1vw-{0}-d5mymlulmr-d5mymlulmr.gz' -2026-01-16 11:19:03.661 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.661 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Extensions.d5mymlulmr.wasm - 200 7478 application/wasm 5.7206ms -2026-01-16 11:19:03.669 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Handles.ih3cmfwxzd.wasm - null null -2026-01-16 11:19:03.669 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.669 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.669 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.669 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.669 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.672 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.672 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.672 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.672 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.672 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.672 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.672 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.673 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.673 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.673 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.673 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.673 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.674 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.674 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Handles.ih3cmfwxzd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2b53wjzpk1-{0}-ih3cmfwxzd-ih3cmfwxzd.gz' -2026-01-16 11:19:03.674 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.675 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Handles.ih3cmfwxzd.wasm - 200 5430 application/wasm 6.0112ms -2026-01-16 11:19:03.680 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.RuntimeInformation.nvwt5l6jkw.wasm - null null -2026-01-16 11:19:03.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.681 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.681 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.681 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.681 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.683 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.683 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.683 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.683 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.683 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.683 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.683 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.684 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.684 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.684 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.684 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.684 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.685 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.685 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.InteropServices.RuntimeInformation.nvwt5l6jkw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5rxlvv130r-{0}-nvwt5l6jkw-nvwt5l6jkw.gz' -2026-01-16 11:19:03.685 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.685 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.RuntimeInformation.nvwt5l6jkw.wasm - 200 4918 application/wasm 5.652ms -2026-01-16 11:19:03.692 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.0us88a4qml.wasm - null null -2026-01-16 11:19:03.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.693 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.693 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.693 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.693 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.695 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.695 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.695 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.695 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.695 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.695 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.695 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.696 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.696 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.696 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.696 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.696 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.697 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.698 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.InteropServices.0us88a4qml.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\t1e5pdefro-{0}-0us88a4qml-0us88a4qml.gz' -2026-01-16 11:19:03.698 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.698 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.0us88a4qml.wasm - 200 54587 application/wasm 6.1314ms -2026-01-16 11:19:03.707 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Intrinsics.bd7qf7pr2d.wasm - null null -2026-01-16 11:19:03.708 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.708 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.708 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.708 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.708 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.710 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.710 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.710 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.710 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.710 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.710 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.710 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.711 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.711 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.711 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.711 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.711 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.711 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.712 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Intrinsics.bd7qf7pr2d.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\q8hyt22w7t-{0}-bd7qf7pr2d-bd7qf7pr2d.gz' -2026-01-16 11:19:03.712 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.712 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Intrinsics.bd7qf7pr2d.wasm - 200 6966 application/wasm 4.8771ms -2026-01-16 11:19:03.716 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Loader.opo019ewpt.wasm - null null -2026-01-16 11:19:03.717 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.717 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.717 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.717 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.717 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.719 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.719 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.719 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.720 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.720 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.720 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.720 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.720 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.720 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.720 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.720 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.721 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.721 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.722 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Loader.opo019ewpt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lulkrkawwl-{0}-opo019ewpt-opo019ewpt.gz' -2026-01-16 11:19:03.722 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.722 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Loader.opo019ewpt.wasm - 200 5430 application/wasm 5.4721ms -2026-01-16 11:19:03.727 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Numerics.opgppvbdi6.wasm - null null -2026-01-16 11:19:03.728 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.728 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.728 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.728 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.728 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.730 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.730 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.730 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.730 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.730 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.730 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.730 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.731 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.731 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.731 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.731 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.731 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.731 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.733 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Numerics.opgppvbdi6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\15lzitxs0t-{0}-opgppvbdi6-opgppvbdi6.gz' -2026-01-16 11:19:03.733 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.733 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Numerics.opgppvbdi6.wasm - 200 134986 application/wasm 6.1563ms -2026-01-16 11:19:03.741 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Formatters.seonqd55ks.wasm - null null -2026-01-16 11:19:03.742 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.742 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.742 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.742 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.742 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.745 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.745 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.745 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.745 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.745 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.745 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.745 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.745 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.745 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.745 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.745 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.746 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.746 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.747 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.Formatters.seonqd55ks.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n0v9yl0jh6-{0}-seonqd55ks-seonqd55ks.gz' -2026-01-16 11:19:03.747 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.747 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Formatters.seonqd55ks.wasm - 200 55611 application/wasm 5.9186ms -2026-01-16 11:19:03.753 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Json.zn0mp7kdmp.wasm - null null -2026-01-16 11:19:03.754 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.754 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.754 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.754 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.754 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.758 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.758 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.758 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.758 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.758 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.758 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.758 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.758 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.758 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.758 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.758 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.759 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.759 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.760 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.Json.zn0mp7kdmp.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wh4w9dsljz-{0}-zn0mp7kdmp-zn0mp7kdmp.gz' -2026-01-16 11:19:03.760 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.760 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Json.zn0mp7kdmp.wasm - 200 5430 application/wasm 7.078ms -2026-01-16 11:19:03.768 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Primitives.yueinvlj2j.wasm - null null -2026-01-16 11:19:03.769 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.769 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.769 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.769 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.769 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.772 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.772 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.772 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.772 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.772 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.772 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.772 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.772 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.772 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.773 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.773 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.773 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.773 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.774 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.Primitives.yueinvlj2j.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n1gdasegta-{0}-yueinvlj2j-yueinvlj2j.gz' -2026-01-16 11:19:03.774 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.775 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Primitives.yueinvlj2j.wasm - 200 13110 application/wasm 6.5251ms -2026-01-16 11:19:03.781 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Xml.v8gymdawqg.wasm - null null -2026-01-16 11:19:03.782 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.782 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.782 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.782 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.782 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.784 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.784 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.784 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.784 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.784 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.784 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.784 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.784 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.784 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.784 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.784 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.785 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.785 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.787 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.Xml.v8gymdawqg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j0zo8hxl7f-{0}-v8gymdawqg-v8gymdawqg.gz' -2026-01-16 11:19:03.787 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.787 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Xml.v8gymdawqg.wasm - 200 6454 application/wasm 5.9822ms -2026-01-16 11:19:03.794 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.gs7sg0u955.wasm - null null -2026-01-16 11:19:03.795 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.795 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.795 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.795 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.795 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.798 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.798 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.798 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.798 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.798 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.798 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.798 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.799 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.799 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.799 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.799 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.799 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.799 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.800 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.gs7sg0u955.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c9urnolypd-{0}-gs7sg0u955-gs7sg0u955.gz' -2026-01-16 11:19:03.800 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.800 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.gs7sg0u955.wasm - 200 6966 application/wasm 6.0348ms -2026-01-16 11:19:03.807 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.6bp69qbwkj.wasm - null null -2026-01-16 11:19:03.807 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.807 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.808 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.808 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.808 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.810 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.810 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.810 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.810 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.810 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.810 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.810 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.810 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.810 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.810 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.810 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.811 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.811 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.812 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.6bp69qbwkj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\35jd1dce24-{0}-6bp69qbwkj-6bp69qbwkj.gz' -2026-01-16 11:19:03.812 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.812 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.6bp69qbwkj.wasm - 200 34619 application/wasm 5.6287ms -2026-01-16 11:19:03.817 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.AccessControl.6rjkcrpkiw.wasm - null null -2026-01-16 11:19:03.818 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.818 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.818 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.818 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.818 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.821 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.821 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.821 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.821 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.821 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.821 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.821 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.821 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.821 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.821 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.821 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.822 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.822 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.823 +03:00 [INF] Sending file. Request path: '_framework/System.Security.AccessControl.6rjkcrpkiw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ad9pnuyu1n-{0}-6rjkcrpkiw-6rjkcrpkiw.gz' -2026-01-16 11:19:03.823 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.823 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.AccessControl.6rjkcrpkiw.wasm - 200 47931 application/wasm 5.6172ms -2026-01-16 11:19:03.829 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Claims.hk3ae85l96.wasm - null null -2026-01-16 11:19:03.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.830 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.830 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.830 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.830 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.832 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.832 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.832 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.832 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.832 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.832 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.832 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.832 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.832 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.832 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.832 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.833 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.833 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.834 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Claims.hk3ae85l96.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vbfh1norfg-{0}-hk3ae85l96-hk3ae85l96.gz' -2026-01-16 11:19:03.834 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.834 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Claims.hk3ae85l96.wasm - 200 44859 application/wasm 5.1795ms -2026-01-16 11:19:03.839 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Algorithms.whyyu092ah.wasm - null null -2026-01-16 11:19:03.840 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.840 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.840 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.840 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.840 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.842 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.842 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.842 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.842 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.842 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.842 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.842 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.843 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.843 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.843 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.843 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.843 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.843 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.844 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Algorithms.whyyu092ah.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lts4eaytip-{0}-whyyu092ah-whyyu092ah.gz' -2026-01-16 11:19:03.844 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.844 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Algorithms.whyyu092ah.wasm - 200 6966 application/wasm 4.8638ms -2026-01-16 11:19:03.848 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Cng.m6se2pcpu2.wasm - null null -2026-01-16 11:19:03.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.848 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.851 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.851 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.851 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.851 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.851 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.851 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.851 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.851 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.851 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.851 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.851 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.852 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.852 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.853 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Cng.m6se2pcpu2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fe4hdxl6xd-{0}-m6se2pcpu2-m6se2pcpu2.gz' -2026-01-16 11:19:03.853 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.853 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Cng.m6se2pcpu2.wasm - 200 5942 application/wasm 4.9826ms -2026-01-16 11:19:03.856 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Csp.hhoaoktf3s.wasm - null null -2026-01-16 11:19:03.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.857 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.857 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.857 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.857 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.859 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.859 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.859 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.859 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.859 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.859 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.859 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.859 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.859 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.859 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.859 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.860 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.860 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.860 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Csp.hhoaoktf3s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\e6c5growx5-{0}-hhoaoktf3s-hhoaoktf3s.gz' -2026-01-16 11:19:03.860 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.861 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Csp.hhoaoktf3s.wasm - 200 5942 application/wasm 4.4826ms -2026-01-16 11:19:03.866 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Encoding.52vboi33gw.wasm - null null -2026-01-16 11:19:03.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.869 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.869 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.869 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.869 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.869 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.869 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.869 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.870 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.870 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.870 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.870 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.871 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.871 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.871 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Encoding.52vboi33gw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9nnkgpt0mz-{0}-52vboi33gw-52vboi33gw.gz' -2026-01-16 11:19:03.871 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.872 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Encoding.52vboi33gw.wasm - 200 5430 application/wasm 5.9187ms -2026-01-16 11:19:03.876 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.OpenSsl.ml0tyz68i8.wasm - null null -2026-01-16 11:19:03.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.876 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.876 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.876 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.876 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.879 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.879 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.879 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.879 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.879 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.879 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.879 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.879 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.879 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.879 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.879 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.880 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.880 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.881 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.OpenSsl.ml0tyz68i8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ggd18ngby9-{0}-ml0tyz68i8-ml0tyz68i8.gz' -2026-01-16 11:19:03.881 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.881 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.OpenSsl.ml0tyz68i8.wasm - 200 5430 application/wasm 5.0296ms -2026-01-16 11:19:03.886 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Primitives.1dlu2dh7y8.wasm - null null -2026-01-16 11:19:03.887 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.887 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.887 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.887 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.887 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.890 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.890 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.890 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.890 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.890 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.890 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.890 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.890 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.890 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.890 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.890 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.891 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.891 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.892 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Primitives.1dlu2dh7y8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ibvt59z0m8-{0}-1dlu2dh7y8-1dlu2dh7y8.gz' -2026-01-16 11:19:03.892 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.892 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Primitives.1dlu2dh7y8.wasm - 200 5430 application/wasm 5.5191ms -2026-01-16 11:19:03.896 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.X509Certificates.6uh0qispd4.wasm - null null -2026-01-16 11:19:03.896 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.896 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.896 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.896 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.896 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.898 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.898 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.898 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.898 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.898 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.898 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.898 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.899 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.899 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.899 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.899 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.899 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.899 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.900 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.X509Certificates.6uh0qispd4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kv01n2x7di-{0}-6uh0qispd4-6uh0qispd4.gz' -2026-01-16 11:19:03.900 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.900 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.X509Certificates.6uh0qispd4.wasm - 200 6454 application/wasm 4.2284ms -2026-01-16 11:19:03.904 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.mbts90zzn6.wasm - null null -2026-01-16 11:19:03.905 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.907 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.907 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.907 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.907 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.907 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.907 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.907 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.908 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.908 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.908 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.908 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.908 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.908 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.912 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.mbts90zzn6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\najz3idkx9-{0}-mbts90zzn6-mbts90zzn6.gz' -2026-01-16 11:19:03.912 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.913 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.mbts90zzn6.wasm - 200 642453 application/wasm 8.3337ms -2026-01-16 11:19:03.918 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Principal.Windows.rp57epmxji.wasm - null null -2026-01-16 11:19:03.918 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.918 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.918 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.918 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.918 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.921 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.921 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.921 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.921 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.921 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.921 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.921 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.921 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.921 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.921 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.921 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.921 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.922 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.922 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Principal.Windows.rp57epmxji.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6c4gn33xif-{0}-rp57epmxji-rp57epmxji.gz' -2026-01-16 11:19:03.922 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.923 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Principal.Windows.rp57epmxji.wasm - 200 27446 application/wasm 4.8548ms -2026-01-16 11:19:03.928 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Principal.0lplkfn42e.wasm - null null -2026-01-16 11:19:03.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.930 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.930 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.931 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.931 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.931 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.931 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.931 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.931 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.931 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.931 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.931 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.931 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.931 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.932 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Principal.0lplkfn42e.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bapixjfy1p-{0}-0lplkfn42e-0lplkfn42e.gz' -2026-01-16 11:19:03.932 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.932 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Principal.0lplkfn42e.wasm - 200 4918 application/wasm 4.1419ms -2026-01-16 11:19:03.936 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.SecureString.dhwpww24h2.wasm - null null -2026-01-16 11:19:03.937 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.937 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.937 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.937 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.937 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.939 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.939 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.939 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.939 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.939 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.939 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.939 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.939 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.939 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.939 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.939 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.939 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.939 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.940 +03:00 [INF] Sending file. Request path: '_framework/System.Security.SecureString.dhwpww24h2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\z7kpj97i3q-{0}-dhwpww24h2-dhwpww24h2.gz' -2026-01-16 11:19:03.940 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.940 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.SecureString.dhwpww24h2.wasm - 200 5430 application/wasm 4.2463ms -2026-01-16 11:19:03.944 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.l9hsxb0sdk.wasm - null null -2026-01-16 11:19:03.945 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.945 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.945 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.945 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.945 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.947 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.947 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.947 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.947 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.947 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.947 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.947 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.948 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.948 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.948 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.948 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.948 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.948 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.949 +03:00 [INF] Sending file. Request path: '_framework/System.Security.l9hsxb0sdk.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4w9pau8lca-{0}-l9hsxb0sdk-l9hsxb0sdk.gz' -2026-01-16 11:19:03.949 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.949 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.l9hsxb0sdk.wasm - 200 7990 application/wasm 4.8353ms -2026-01-16 11:19:03.953 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ServiceModel.Web.zcvkay2idv.wasm - null null -2026-01-16 11:19:03.954 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.954 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.954 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.954 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.954 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.956 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.956 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.956 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.956 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.956 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.956 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.957 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.957 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.957 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.957 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.957 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.957 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.958 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.958 +03:00 [INF] Sending file. Request path: '_framework/System.ServiceModel.Web.zcvkay2idv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wy542848av-{0}-zcvkay2idv-zcvkay2idv.gz' -2026-01-16 11:19:03.958 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.958 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ServiceModel.Web.zcvkay2idv.wasm - 200 6454 application/wasm 5.2418ms -2026-01-16 11:19:03.962 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ServiceProcess.x10kdcthsy.wasm - null null -2026-01-16 11:19:03.963 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.963 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.963 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.963 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.963 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.965 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.965 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.965 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.965 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.965 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.965 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.965 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.966 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.966 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.966 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.966 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.966 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.966 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.967 +03:00 [INF] Sending file. Request path: '_framework/System.ServiceProcess.x10kdcthsy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2yoiew09ss-{0}-x10kdcthsy-x10kdcthsy.gz' -2026-01-16 11:19:03.967 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.967 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ServiceProcess.x10kdcthsy.wasm - 200 5430 application/wasm 4.9969ms -2026-01-16 11:19:03.973 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.CodePages.36p8aommvy.wasm - null null -2026-01-16 11:19:03.974 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.974 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.974 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.974 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.974 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.976 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.976 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.976 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.976 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.976 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.976 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.976 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.976 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.976 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.976 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.976 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.977 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.977 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.981 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Encoding.CodePages.36p8aommvy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lrsfp7sbdw-{0}-36p8aommvy-36p8aommvy.gz' -2026-01-16 11:19:03.981 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.981 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.CodePages.36p8aommvy.wasm - 200 732580 application/wasm 8.2636ms -2026-01-16 11:19:03.989 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.Extensions.7s9z475qvj.wasm - null null -2026-01-16 11:19:03.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.990 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.990 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.990 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.990 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:03.993 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.993 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.993 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:03.993 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:03.993 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:03.993 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:03.993 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.993 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:03.993 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:03.993 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:03.993 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:03.994 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:03.994 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.994 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Encoding.Extensions.7s9z475qvj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ij3a13vyp7-{0}-7s9z475qvj-7s9z475qvj.gz' -2026-01-16 11:19:03.994 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:03.994 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.Extensions.7s9z475qvj.wasm - 200 5430 application/wasm 5.3935ms -2026-01-16 11:19:03.998 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.ldc2rqh80i.wasm - null null -2026-01-16 11:19:03.999 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.999 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:03.999 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:03.999 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:03.999 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.001 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.001 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.001 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.001 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.001 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.001 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.001 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.001 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.001 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.001 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.001 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.002 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.002 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.003 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Encoding.ldc2rqh80i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\w1z5z4lpop-{0}-ldc2rqh80i-ldc2rqh80i.gz' -2026-01-16 11:19:04.003 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.003 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.ldc2rqh80i.wasm - 200 5430 application/wasm 4.9276ms -2026-01-16 11:19:04.009 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Encodings.Web.8dol48h5sw.wasm - null null -2026-01-16 11:19:04.009 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.009 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.010 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.010 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.010 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.012 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.012 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.012 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.012 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.012 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.012 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.012 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.012 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.012 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.012 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.012 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.012 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.013 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.014 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Encodings.Web.8dol48h5sw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b5ft8vnha4-{0}-8dol48h5sw-8dol48h5sw.gz' -2026-01-16 11:19:04.014 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.014 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Encodings.Web.8dol48h5sw.wasm - 200 55611 application/wasm 4.9974ms -2026-01-16 11:19:04.018 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Json.3vc5r851ef.wasm - null null -2026-01-16 11:19:04.019 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.019 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.019 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.019 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.019 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.022 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.023 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.023 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.023 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.023 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.023 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.023 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.023 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.023 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.023 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.023 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.024 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.024 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.028 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Json.3vc5r851ef.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\is1y7e0ewf-{0}-3vc5r851ef-3vc5r851ef.gz' -2026-01-16 11:19:04.028 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.028 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Json.3vc5r851ef.wasm - 200 638869 application/wasm 9.6934ms -2026-01-16 11:19:04.033 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.RegularExpressions.fa55zq7noc.wasm - null null -2026-01-16 11:19:04.034 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.034 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.034 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.034 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.034 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.036 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.036 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.036 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.036 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.036 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.036 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.036 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.036 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.036 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.037 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.037 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.037 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.037 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.040 +03:00 [INF] Sending file. Request path: '_framework/System.Text.RegularExpressions.fa55zq7noc.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b5e2kemd87-{0}-fa55zq7noc-fa55zq7noc.gz' -2026-01-16 11:19:04.040 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.040 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.RegularExpressions.fa55zq7noc.wasm - 200 374637 application/wasm 7.1073ms -2026-01-16 11:19:04.045 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.AccessControl.0jx6t23d4a.wasm - null null -2026-01-16 11:19:04.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.046 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.046 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.046 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.046 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.048 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.048 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.048 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.048 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.048 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.048 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.048 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.048 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.049 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.049 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.049 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.049 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.049 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.050 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.AccessControl.0jx6t23d4a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7hxeyq70th-{0}-0jx6t23d4a-0jx6t23d4a.gz' -2026-01-16 11:19:04.050 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.050 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.AccessControl.0jx6t23d4a.wasm - 200 23350 application/wasm 4.9157ms -2026-01-16 11:19:04.055 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Channels.5yls0a3tlo.wasm - null null -2026-01-16 11:19:04.055 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.055 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.055 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.055 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.055 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.058 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.058 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.058 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.058 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.058 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.058 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.058 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.059 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.059 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.059 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.059 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.059 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.059 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.060 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Channels.5yls0a3tlo.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\yfc45zghwv-{0}-5yls0a3tlo-5yls0a3tlo.gz' -2026-01-16 11:19:04.060 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.061 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Channels.5yls0a3tlo.wasm - 200 56123 application/wasm 5.9942ms -2026-01-16 11:19:04.064 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Overlapped.7fzdvfjpcj.wasm - null null -2026-01-16 11:19:04.065 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.065 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.065 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.065 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.065 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.067 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.067 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.067 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.067 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.067 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.067 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.067 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.067 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.067 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.067 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.067 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.068 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.068 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.069 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Overlapped.7fzdvfjpcj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1nn32vjcux-{0}-7fzdvfjpcj-7fzdvfjpcj.gz' -2026-01-16 11:19:04.069 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.069 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Overlapped.7fzdvfjpcj.wasm - 200 5430 application/wasm 4.4734ms -2026-01-16 11:19:04.073 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Dataflow.b1bop2hs5a.wasm - null null -2026-01-16 11:19:04.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.074 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.074 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.074 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.074 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.076 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.076 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.076 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.076 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.076 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.076 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.076 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.076 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.076 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.076 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.076 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.077 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.077 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.078 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Tasks.Dataflow.b1bop2hs5a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bygxarg1od-{0}-b1bop2hs5a-b1bop2hs5a.gz' -2026-01-16 11:19:04.078 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.079 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Dataflow.b1bop2hs5a.wasm - 200 175439 application/wasm 5.3222ms -2026-01-16 11:19:04.083 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Extensions.w1aib1cdwa.wasm - null null -2026-01-16 11:19:04.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.084 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.084 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.084 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.084 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.086 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.086 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.086 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.086 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.086 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.086 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.086 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.086 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.086 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.086 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.086 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.086 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.086 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.087 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Tasks.Extensions.w1aib1cdwa.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wzcconrhmx-{0}-w1aib1cdwa-w1aib1cdwa.gz' -2026-01-16 11:19:04.087 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.087 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Extensions.w1aib1cdwa.wasm - 200 5430 application/wasm 4.3155ms -2026-01-16 11:19:04.093 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Parallel.k09pj8k6wz.wasm - null null -2026-01-16 11:19:04.094 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.094 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.094 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.094 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.094 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.096 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.097 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.097 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.097 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.097 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.097 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.097 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.097 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.097 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.097 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.097 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.098 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.098 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.099 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Tasks.Parallel.k09pj8k6wz.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\eo71wakl9t-{0}-k09pj8k6wz-k09pj8k6wz.gz' -2026-01-16 11:19:04.099 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.099 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Parallel.k09pj8k6wz.wasm - 200 51003 application/wasm 5.6657ms -2026-01-16 11:19:04.104 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.ixxtp5uj8k.wasm - null null -2026-01-16 11:19:04.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.105 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.105 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.105 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.105 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.107 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.107 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.107 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.107 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.107 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.107 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.107 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.107 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.107 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.107 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.107 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.108 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.108 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.109 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Tasks.ixxtp5uj8k.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dmqlrfwu1b-{0}-ixxtp5uj8k-ixxtp5uj8k.gz' -2026-01-16 11:19:04.109 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.109 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.ixxtp5uj8k.wasm - 200 6454 application/wasm 4.856ms -2026-01-16 11:19:04.113 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Thread.oikmdgabjt.wasm - null null -2026-01-16 11:19:04.113 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.113 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.113 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.113 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.113 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.116 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.116 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.116 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.116 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.116 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.116 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.116 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.116 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.116 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.116 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.116 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.117 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.117 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.118 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Thread.oikmdgabjt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v09yqluov3-{0}-oikmdgabjt-oikmdgabjt.gz' -2026-01-16 11:19:04.118 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.118 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Thread.oikmdgabjt.wasm - 200 5430 application/wasm 5.2708ms -2026-01-16 11:19:04.122 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.ThreadPool.szctd5y8bn.wasm - null null -2026-01-16 11:19:04.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.123 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.123 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.123 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.123 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.125 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.125 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.125 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.125 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.125 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.125 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.125 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.125 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.125 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.125 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.125 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.126 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.126 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.126 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.ThreadPool.szctd5y8bn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jfyqp856kd-{0}-szctd5y8bn-szctd5y8bn.gz' -2026-01-16 11:19:04.126 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.126 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.ThreadPool.szctd5y8bn.wasm - 200 5430 application/wasm 4.3658ms -2026-01-16 11:19:04.130 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Timer.k8rrsskw5o.wasm - null null -2026-01-16 11:19:04.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.131 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.131 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.131 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.131 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.133 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.133 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.133 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.133 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.133 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.133 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.133 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.133 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.133 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.133 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.133 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.134 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.134 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.135 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Timer.k8rrsskw5o.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kw1ofqxbky-{0}-k8rrsskw5o-k8rrsskw5o.gz' -2026-01-16 11:19:04.135 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.135 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Timer.k8rrsskw5o.wasm - 200 4918 application/wasm 4.8807ms -2026-01-16 11:19:04.138 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.s2hrn953g9.wasm - null null -2026-01-16 11:19:04.139 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.139 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.139 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.139 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.139 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.141 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.141 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.141 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.141 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.141 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.141 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.141 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.142 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.142 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.142 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.142 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.142 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.142 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.143 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.s2hrn953g9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6obifrcy4d-{0}-s2hrn953g9-s2hrn953g9.gz' -2026-01-16 11:19:04.143 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.143 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.s2hrn953g9.wasm - 200 34619 application/wasm 4.8651ms -2026-01-16 11:19:04.149 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Transactions.Local.nufsb5pyrr.wasm - null null -2026-01-16 11:19:04.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.153 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.153 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.153 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.153 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.153 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.153 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.153 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.153 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.153 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.153 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.153 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.154 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.155 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.157 +03:00 [INF] Sending file. Request path: '_framework/System.Transactions.Local.nufsb5pyrr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vnl4qu3in7-{0}-nufsb5pyrr-nufsb5pyrr.gz' -2026-01-16 11:19:04.157 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.157 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Transactions.Local.nufsb5pyrr.wasm - 200 165711 application/wasm 8.0844ms -2026-01-16 11:19:04.167 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Transactions.3ezo8twol7.wasm - null null -2026-01-16 11:19:04.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.171 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.171 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.171 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.171 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.171 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.171 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.171 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.171 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.171 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.171 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.171 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.172 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.172 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.173 +03:00 [INF] Sending file. Request path: '_framework/System.Transactions.3ezo8twol7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v8zohqruou-{0}-3ezo8twol7-3ezo8twol7.gz' -2026-01-16 11:19:04.173 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.173 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Transactions.3ezo8twol7.wasm - 200 6454 application/wasm 5.4735ms -2026-01-16 11:19:04.178 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ValueTuple.lle7yi2fzv.wasm - null null -2026-01-16 11:19:04.179 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.179 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.179 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.179 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.179 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.181 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.181 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.181 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.181 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.181 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.181 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.181 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.182 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.182 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.182 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.182 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.182 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.182 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.183 +03:00 [INF] Sending file. Request path: '_framework/System.ValueTuple.lle7yi2fzv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\io39vdvq9n-{0}-lle7yi2fzv-lle7yi2fzv.gz' -2026-01-16 11:19:04.183 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.183 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ValueTuple.lle7yi2fzv.wasm - 200 5430 application/wasm 4.7909ms -2026-01-16 11:19:04.189 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Web.HttpUtility.u5rdfpwou6.wasm - null null -2026-01-16 11:19:04.189 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.192 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.192 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.192 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.192 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.192 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.192 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.192 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.192 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.192 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.192 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.192 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.193 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.194 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.194 +03:00 [INF] Sending file. Request path: '_framework/System.Web.HttpUtility.u5rdfpwou6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rn4buhtgqs-{0}-u5rdfpwou6-u5rdfpwou6.gz' -2026-01-16 11:19:04.194 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.194 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Web.HttpUtility.u5rdfpwou6.wasm - 200 19766 application/wasm 5.7091ms -2026-01-16 11:19:04.199 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Web.wygikf6la5.wasm - null null -2026-01-16 11:19:04.199 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.199 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.199 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.199 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.199 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.202 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.202 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.202 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.202 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.202 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.202 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.202 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.202 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.202 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.202 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.202 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.203 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.203 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.204 +03:00 [INF] Sending file. Request path: '_framework/System.Web.wygikf6la5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ru9f3t39bb-{0}-wygikf6la5-wygikf6la5.gz' -2026-01-16 11:19:04.204 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.204 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Web.wygikf6la5.wasm - 200 4918 application/wasm 5.2389ms -2026-01-16 11:19:04.208 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Windows.axtn86mzz6.wasm - null null -2026-01-16 11:19:04.208 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.208 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.208 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.208 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.208 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.211 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.211 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.211 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.211 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.211 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.211 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.211 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.211 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.211 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.212 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.212 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.212 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.212 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.213 +03:00 [INF] Sending file. Request path: '_framework/System.Windows.axtn86mzz6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1my90r3byi-{0}-axtn86mzz6-axtn86mzz6.gz' -2026-01-16 11:19:04.213 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.213 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Windows.axtn86mzz6.wasm - 200 5430 application/wasm 5.4442ms -2026-01-16 11:19:04.218 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.Linq.j4b5ce3025.wasm - null null -2026-01-16 11:19:04.219 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.219 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.219 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.219 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.219 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.222 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.222 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.222 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.222 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.222 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.222 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.222 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.223 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.223 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.223 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.223 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.224 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.224 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.225 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.Linq.j4b5ce3025.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2m6czvvsuo-{0}-j4b5ce3025-j4b5ce3025.gz' -2026-01-16 11:19:04.225 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.225 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.Linq.j4b5ce3025.wasm - 200 5430 application/wasm 6.7057ms -2026-01-16 11:19:04.230 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.ReaderWriter.60z52rxro3.wasm - null null -2026-01-16 11:19:04.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.231 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.231 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.231 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.231 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.234 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.234 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.234 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.234 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.234 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.234 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.234 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.234 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.234 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.234 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.234 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.235 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.235 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.236 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.ReaderWriter.60z52rxro3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rg4isli5jp-{0}-60z52rxro3-60z52rxro3.gz' -2026-01-16 11:19:04.236 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.236 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.ReaderWriter.60z52rxro3.wasm - 200 11574 application/wasm 6.1239ms -2026-01-16 11:19:04.243 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.Serialization.pm5yw3aolk.wasm - null null -2026-01-16 11:19:04.244 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.244 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.244 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.244 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.244 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.246 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.246 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.246 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.246 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.246 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.246 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.246 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.247 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.247 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.247 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.247 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.247 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.248 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.248 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.Serialization.pm5yw3aolk.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\o41cy5pfaz-{0}-pm5yw3aolk-pm5yw3aolk.gz' -2026-01-16 11:19:04.248 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.248 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.Serialization.pm5yw3aolk.wasm - 200 5942 application/wasm 5.4095ms -2026-01-16 11:19:04.254 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XDocument.b4xtw4lbmx.wasm - null null -2026-01-16 11:19:04.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.256 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.256 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.256 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.256 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.258 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.258 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.258 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.258 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.258 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.258 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.258 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.259 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.259 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.259 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.259 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.259 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.260 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.260 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XDocument.b4xtw4lbmx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\veh6k128ug-{0}-b4xtw4lbmx-b4xtw4lbmx.gz' -2026-01-16 11:19:04.260 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.261 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XDocument.b4xtw4lbmx.wasm - 200 5430 application/wasm 6.1858ms -2026-01-16 11:19:04.266 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XPath.XDocument.p6s7bmw3ej.wasm - null null -2026-01-16 11:19:04.267 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.267 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.267 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.267 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.267 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.270 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.270 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.270 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.270 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.270 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.270 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.270 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.271 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.271 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.271 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.271 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.272 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.272 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.273 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XPath.XDocument.p6s7bmw3ej.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dp2x1o3mj5-{0}-p6s7bmw3ej-p6s7bmw3ej.gz' -2026-01-16 11:19:04.273 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.273 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XPath.XDocument.p6s7bmw3ej.wasm - 200 5430 application/wasm 6.8616ms -2026-01-16 11:19:04.280 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XPath.egozus3d9z.wasm - null null -2026-01-16 11:19:04.281 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.281 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.281 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.281 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.281 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.285 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.285 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.285 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.285 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.285 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.285 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.285 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.285 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.285 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.285 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.285 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.286 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.286 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.287 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XPath.egozus3d9z.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6kx3a3nw65-{0}-egozus3d9z-egozus3d9z.gz' -2026-01-16 11:19:04.287 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.287 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XPath.egozus3d9z.wasm - 200 5430 application/wasm 7.6237ms -2026-01-16 11:19:04.294 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XmlDocument.771pf23z5h.wasm - null null -2026-01-16 11:19:04.295 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.295 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.295 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.295 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.295 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.298 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.298 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.298 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.298 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.298 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.298 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.298 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.299 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.299 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.299 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.299 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.299 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.300 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.300 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XmlDocument.771pf23z5h.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mit9lp1cls-{0}-771pf23z5h-771pf23z5h.gz' -2026-01-16 11:19:04.300 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.300 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XmlDocument.771pf23z5h.wasm - 200 5430 application/wasm 6.3428ms -2026-01-16 11:19:04.307 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XmlSerializer.h0uogtkh03.wasm - null null -2026-01-16 11:19:04.308 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.313 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.313 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.313 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.313 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.318 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.318 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.318 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.318 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.318 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.318 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.318 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.319 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.319 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.319 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.319 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.320 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.321 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.321 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XmlSerializer.h0uogtkh03.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6ubynsl46b-{0}-h0uogtkh03-h0uogtkh03.gz' -2026-01-16 11:19:04.321 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.322 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XmlSerializer.h0uogtkh03.wasm - 200 7478 application/wasm 14.5096ms -2026-01-16 11:19:04.327 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.95nan2l20b.wasm - null null -2026-01-16 11:19:04.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.327 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.327 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.327 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.327 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.330 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.330 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.330 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.330 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.330 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.330 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.330 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.330 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.331 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.331 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.331 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.331 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.331 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.332 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.95nan2l20b.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pcooe0k5kk-{0}-95nan2l20b-95nan2l20b.gz' -2026-01-16 11:19:04.332 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.332 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.95nan2l20b.wasm - 200 13110 application/wasm 5.6329ms -2026-01-16 11:19:04.336 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.au65xu8d95.wasm - null null -2026-01-16 11:19:04.337 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.337 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.337 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.337 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.337 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.340 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.340 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.340 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.340 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.340 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.340 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.340 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.340 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.340 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.340 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.340 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.341 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.341 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.342 +03:00 [INF] Sending file. Request path: '_framework/System.au65xu8d95.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\um28rmltyb-{0}-au65xu8d95-au65xu8d95.gz' -2026-01-16 11:19:04.342 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.342 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.au65xu8d95.wasm - 200 39739 application/wasm 5.2563ms -2026-01-16 11:19:04.349 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/WindowsBase.mi3hkxthj8.wasm - null null -2026-01-16 11:19:04.349 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.349 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.349 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.349 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.349 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.352 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.352 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.352 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.352 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.352 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.352 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.352 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.352 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.352 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.352 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.352 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.353 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.353 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.354 +03:00 [INF] Sending file. Request path: '_framework/WindowsBase.mi3hkxthj8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8syd5uq41h-{0}-mi3hkxthj8-mi3hkxthj8.gz' -2026-01-16 11:19:04.354 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.354 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/WindowsBase.mi3hkxthj8.wasm - 200 5942 application/wasm 5.0197ms -2026-01-16 11:19:04.358 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/mscorlib.uifnjyorgo.wasm - null null -2026-01-16 11:19:04.359 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.359 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.359 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.359 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.359 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.362 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.362 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.362 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.362 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.362 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.362 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.362 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.362 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.362 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.362 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.362 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.363 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.363 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.364 +03:00 [INF] Sending file. Request path: '_framework/mscorlib.uifnjyorgo.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xpihquz2r5-{0}-uifnjyorgo-uifnjyorgo.gz' -2026-01-16 11:19:04.364 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.364 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/mscorlib.uifnjyorgo.wasm - 200 49467 application/wasm 5.7349ms -2026-01-16 11:19:04.370 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/netstandard.qvqeanc7qr.wasm - null null -2026-01-16 11:19:04.371 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.371 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.371 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.371 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.371 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.374 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.374 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.374 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.374 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.374 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.374 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.374 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.374 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.374 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.374 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.374 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.375 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.375 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.376 +03:00 [INF] Sending file. Request path: '_framework/netstandard.qvqeanc7qr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ciukkw19kg-{0}-qvqeanc7qr-qvqeanc7qr.gz' -2026-01-16 11:19:04.376 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.376 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/netstandard.qvqeanc7qr.wasm - 200 90432 application/wasm 6.0627ms -2026-01-16 11:19:04.382 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Application.Contracts.xngfzyrqyt.wasm - null null -2026-01-16 11:19:04.383 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.383 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.383 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.383 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.383 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.385 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.385 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.385 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.385 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.385 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.385 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.385 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.385 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.385 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.385 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.385 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.386 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.386 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.387 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Application.Contracts.xngfzyrqyt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0lm5ebgqof-{0}-xngfzyrqyt-xngfzyrqyt.gz' -2026-01-16 11:19:04.387 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.388 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Application.Contracts.xngfzyrqyt.wasm - 200 8502 application/wasm 5.4175ms -2026-01-16 11:19:04.392 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Domain.Shared.uowqmvlgpz.wasm - null null -2026-01-16 11:19:04.393 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.393 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.393 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.393 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.393 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.396 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.396 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.396 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.396 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.396 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.396 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.396 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.397 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.397 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.397 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.397 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.397 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.398 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.399 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Domain.Shared.uowqmvlgpz.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\qwx72m6fc1-{0}-uowqmvlgpz-uowqmvlgpz.gz' -2026-01-16 11:19:04.399 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.399 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Domain.Shared.uowqmvlgpz.wasm - 200 23350 application/wasm 6.521ms -2026-01-16 11:19:04.404 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.HttpApi.Client.8eaik0mqxe.wasm - null null -2026-01-16 11:19:04.405 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.405 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.405 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.405 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.405 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.408 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.408 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.408 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.408 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.408 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.408 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.408 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.408 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.408 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.408 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.408 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.409 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.409 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.410 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.HttpApi.Client.8eaik0mqxe.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\scloparoeu-{0}-8eaik0mqxe-8eaik0mqxe.gz' -2026-01-16 11:19:04.410 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.410 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.HttpApi.Client.8eaik0mqxe.wasm - 200 7990 application/wasm 5.6984ms -2026-01-16 11:19:04.414 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.Application.Contracts.v1mj3k57fr.wasm - null null -2026-01-16 11:19:04.415 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.415 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.415 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.415 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.415 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.417 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.417 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.417 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.417 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.417 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.417 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.417 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.417 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.417 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.417 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.417 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.418 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.418 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.420 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Account.Application.Contracts.v1mj3k57fr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lj6k2ntok7-{0}-v1mj3k57fr-v1mj3k57fr.gz' -2026-01-16 11:19:04.420 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.420 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.Application.Contracts.v1mj3k57fr.wasm - 200 182095 application/wasm 5.938ms -2026-01-16 11:19:04.425 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.HttpApi.Client.yh9otogzgt.wasm - null null -2026-01-16 11:19:04.426 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.426 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.426 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.426 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.426 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.428 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.428 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.429 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.429 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.429 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.429 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.429 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.429 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.429 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.429 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.429 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.429 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.429 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.430 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Account.HttpApi.Client.yh9otogzgt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\am5qy7si0d-{0}-yh9otogzgt-yh9otogzgt.gz' -2026-01-16 11:19:04.430 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.430 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.HttpApi.Client.yh9otogzgt.wasm - 200 36667 application/wasm 5.1351ms -2026-01-16 11:19:04.435 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.apf4xc15fu.wasm - null null -2026-01-16 11:19:04.436 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.436 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.436 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.436 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.436 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.438 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.438 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.439 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.439 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.439 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.439 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.439 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.439 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.439 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.439 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.439 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.440 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.440 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.441 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.apf4xc15fu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7rtjnlhdr6-{0}-apf4xc15fu-apf4xc15fu.gz' -2026-01-16 11:19:04.441 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.441 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.apf4xc15fu.wasm - 200 23350 application/wasm 6.1632ms -2026-01-16 11:19:04.446 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.rq9i0i0z26.wasm - null null -2026-01-16 11:19:04.446 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.447 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.447 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.447 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.447 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.449 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.449 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.449 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.449 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.449 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.449 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.449 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.449 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.449 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.449 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.449 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.450 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.450 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.451 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.rq9i0i0z26.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dtw2jvq9ko-{0}-rq9i0i0z26-rq9i0i0z26.gz' -2026-01-16 11:19:04.451 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.451 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.rq9i0i0z26.wasm - 200 49979 application/wasm 4.966ms -2026-01-16 11:19:04.455 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.Theming.2ct0cbvcgl.wasm - null null -2026-01-16 11:19:04.456 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.456 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.456 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.456 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.456 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.459 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.459 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.459 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.459 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.459 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.459 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.459 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.459 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.459 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.459 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.459 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.460 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.460 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.461 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.Theming.2ct0cbvcgl.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\zck986wix3-{0}-2ct0cbvcgl-2ct0cbvcgl.gz' -2026-01-16 11:19:04.461 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.461 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.Theming.2ct0cbvcgl.wasm - 200 46395 application/wasm 5.7095ms -2026-01-16 11:19:04.466 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.62nl55cu0f.wasm - null null -2026-01-16 11:19:04.467 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.467 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.467 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.467 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.467 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.470 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.470 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.470 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.470 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.470 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.470 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.470 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.470 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.470 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.470 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.470 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.471 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.471 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.472 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.62nl55cu0f.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\29y4ttn7p6-{0}-62nl55cu0f-62nl55cu0f.gz' -2026-01-16 11:19:04.472 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.472 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.62nl55cu0f.wasm - 200 56635 application/wasm 6.0682ms -2026-01-16 11:19:04.477 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.vtzblf3l1n.wasm - null null -2026-01-16 11:19:04.478 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.478 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.478 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.478 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.478 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.480 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.480 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.480 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.480 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.480 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.480 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.480 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.480 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.480 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.480 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.480 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.481 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.481 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.482 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.vtzblf3l1n.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v23sh1qt8y-{0}-vtzblf3l1n-vtzblf3l1n.gz' -2026-01-16 11:19:04.482 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.482 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.vtzblf3l1n.wasm - 200 9526 application/wasm 4.9896ms -2026-01-16 11:19:04.486 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.qihc53vb7i.wasm - null null -2026-01-16 11:19:04.486 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.486 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.486 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.486 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.486 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.489 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.489 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.489 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.489 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.489 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.489 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.489 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.489 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.489 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.489 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.489 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.490 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.490 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.491 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.qihc53vb7i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dig1ljri84-{0}-qihc53vb7i-qihc53vb7i.gz' -2026-01-16 11:19:04.491 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.491 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.qihc53vb7i.wasm - 200 9014 application/wasm 5.3963ms -2026-01-16 11:19:04.494 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.3hipvilosq.wasm - null null -2026-01-16 11:19:04.495 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.495 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.495 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.495 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.495 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.498 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.498 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.498 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.498 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.498 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.498 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.498 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.498 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.498 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.498 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.498 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.499 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.499 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.500 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.3hipvilosq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wywr70k095-{0}-3hipvilosq-3hipvilosq.gz' -2026-01-16 11:19:04.500 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.500 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.3hipvilosq.wasm - 200 53051 application/wasm 5.7922ms -2026-01-16 11:19:04.507 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Contracts.rppoxkx2x4.wasm - null null -2026-01-16 11:19:04.508 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.508 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.508 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.508 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.508 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.510 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.510 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.510 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.510 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.510 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.510 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.510 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.510 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.510 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.511 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.511 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.511 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.511 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.512 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.Contracts.rppoxkx2x4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ch1l6yg9xg-{0}-rppoxkx2x4-rppoxkx2x4.gz' -2026-01-16 11:19:04.512 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.512 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Contracts.rppoxkx2x4.wasm - 200 32054 application/wasm 4.5179ms -2026-01-16 11:19:04.516 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.be6noxwtse.wasm - null null -2026-01-16 11:19:04.517 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.517 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.517 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.517 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.517 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.520 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.520 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.520 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.520 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.520 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.520 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.520 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.520 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.520 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.520 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.520 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.521 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.521 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.522 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.be6noxwtse.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6qc21ahd0h-{0}-be6noxwtse-be6noxwtse.gz' -2026-01-16 11:19:04.522 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.523 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.be6noxwtse.wasm - 200 24886 application/wasm 6.0825ms -2026-01-16 11:19:04.527 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.Contracts.scb5l0zrji.wasm - null null -2026-01-16 11:19:04.528 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.528 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.528 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.528 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.528 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.530 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.530 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.530 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.530 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.530 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.530 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.530 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.530 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.530 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.530 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.530 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.531 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.531 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.532 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Auditing.Contracts.scb5l0zrji.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gvrtk0uenw-{0}-scb5l0zrji-scb5l0zrji.gz' -2026-01-16 11:19:04.532 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.532 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.Contracts.scb5l0zrji.wasm - 200 6454 application/wasm 4.5134ms -2026-01-16 11:19:04.536 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.95q49aor52.wasm - null null -2026-01-16 11:19:04.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.537 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.537 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.537 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.537 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.539 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.539 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.539 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.539 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.539 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.539 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.539 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.539 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.539 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.539 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.539 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.540 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.540 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.541 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Auditing.95q49aor52.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0bpurwxf4x-{0}-95q49aor52-95q49aor52.gz' -2026-01-16 11:19:04.541 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.541 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.95q49aor52.wasm - 200 51003 application/wasm 5.6202ms -2026-01-16 11:19:04.546 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AuditLogging.Domain.Shared.qnhz2lmy6m.wasm - null null -2026-01-16 11:19:04.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.549 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.549 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.550 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.550 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.550 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.550 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.550 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.550 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.550 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.550 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.550 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.550 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.551 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.552 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AuditLogging.Domain.Shared.qnhz2lmy6m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\een9hz6ik5-{0}-qnhz2lmy6m-qnhz2lmy6m.gz' -2026-01-16 11:19:04.552 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.552 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AuditLogging.Domain.Shared.qnhz2lmy6m.wasm - 200 158026 application/wasm 6.3773ms -2026-01-16 11:19:04.557 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.Abstractions.9vxm0cr7nm.wasm - null null -2026-01-16 11:19:04.558 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.558 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.558 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.558 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.558 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.560 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.561 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.561 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.561 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.561 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.561 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.561 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.561 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.561 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.561 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.561 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.561 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.562 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.562 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Authorization.Abstractions.9vxm0cr7nm.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mzg3hwxb9z-{0}-9vxm0cr7nm-9vxm0cr7nm.gz' -2026-01-16 11:19:04.562 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.563 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.Abstractions.9vxm0cr7nm.wasm - 200 36155 application/wasm 5.3228ms -2026-01-16 11:19:04.569 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.pmcd94mrwk.wasm - null null -2026-01-16 11:19:04.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.573 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.573 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.573 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.573 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.573 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.573 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.573 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.573 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.573 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.573 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.573 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.573 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.574 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.575 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Authorization.pmcd94mrwk.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kmfgdovl74-{0}-pmcd94mrwk-pmcd94mrwk.gz' -2026-01-16 11:19:04.575 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.575 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.pmcd94mrwk.wasm - 200 134986 application/wasm 6.3907ms -2026-01-16 11:19:04.614 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.w0f7283yhs.wasm - null null -2026-01-16 11:19:04.615 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.618 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.618 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.618 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.618 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.618 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.618 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.618 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.619 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.619 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.619 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.619 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.620 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.620 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.621 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Autofac.w0f7283yhs.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dnh2928fpn-{0}-w0f7283yhs-w0f7283yhs.gz' -2026-01-16 11:19:04.621 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.621 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.w0f7283yhs.wasm - 200 20790 application/wasm 6.4681ms -2026-01-16 11:19:04.632 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.WebAssembly.1v0mwzzkmy.wasm - null null -2026-01-16 11:19:04.633 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.633 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.633 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.633 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.633 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.636 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.636 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.636 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.636 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.636 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.636 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.636 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.637 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.637 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.637 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.637 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.638 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.638 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.639 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Autofac.WebAssembly.1v0mwzzkmy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fy88n7o3re-{0}-1v0mwzzkmy-1v0mwzzkmy.gz' -2026-01-16 11:19:04.639 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.639 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.WebAssembly.1v0mwzzkmy.wasm - 200 6454 application/wasm 7.0507ms -2026-01-16 11:19:04.645 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundJobs.Domain.Shared.u8iz7to1f8.wasm - null null -2026-01-16 11:19:04.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.647 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.647 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.647 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.647 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.650 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.650 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.650 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.650 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.650 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.650 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.650 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.650 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.650 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.650 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.650 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.651 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.651 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.652 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BackgroundJobs.Domain.Shared.u8iz7to1f8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\it8pbr6hs7-{0}-u8iz7to1f8-u8iz7to1f8.gz' -2026-01-16 11:19:04.652 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.652 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundJobs.Domain.Shared.u8iz7to1f8.wasm - 200 5430 application/wasm 6.645ms -2026-01-16 11:19:04.657 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundWorkers.cjdl9on1vi.wasm - null null -2026-01-16 11:19:04.657 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.658 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.658 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.658 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.658 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.660 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.660 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.660 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.660 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.660 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.660 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.660 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.660 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.660 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.660 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.660 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.661 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.661 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.662 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BackgroundWorkers.cjdl9on1vi.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tnta0aqntp-{0}-cjdl9on1vi-cjdl9on1vi.gz' -2026-01-16 11:19:04.662 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.662 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundWorkers.cjdl9on1vi.wasm - 200 25398 application/wasm 5.2656ms -2026-01-16 11:19:04.667 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BlazoriseUI.iine40esqe.wasm - null null -2026-01-16 11:19:04.668 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.668 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.668 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.668 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.668 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.670 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.670 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.670 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.670 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.670 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.670 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.670 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.670 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.670 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.670 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.670 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.671 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.671 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.673 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BlazoriseUI.iine40esqe.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ui1xftib7r-{0}-iine40esqe-iine40esqe.gz' -2026-01-16 11:19:04.673 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.673 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BlazoriseUI.iine40esqe.wasm - 200 153418 application/wasm 6.4501ms -2026-01-16 11:19:04.681 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Caching.s09ctqex99.wasm - null null -2026-01-16 11:19:04.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.681 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.681 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.681 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.681 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.685 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.685 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.685 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.685 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.685 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.685 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.685 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.685 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.685 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.685 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.685 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.686 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.687 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.688 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Caching.s09ctqex99.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5pr3wxuvo5-{0}-s09ctqex99-s09ctqex99.gz' -2026-01-16 11:19:04.688 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.689 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Caching.s09ctqex99.wasm - 200 85824 application/wasm 8.0871ms -2026-01-16 11:19:04.700 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Castle.Core.din8glqpb5.wasm - null null -2026-01-16 11:19:04.701 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.701 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.701 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.701 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.701 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.704 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.704 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.705 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.705 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.705 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.705 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.705 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.705 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.705 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.705 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.705 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.706 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.706 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.707 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Castle.Core.din8glqpb5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\f5a40y0td5-{0}-din8glqpb5-din8glqpb5.gz' -2026-01-16 11:19:04.707 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.707 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Castle.Core.din8glqpb5.wasm - 200 11574 application/wasm 6.7552ms -2026-01-16 11:19:04.711 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Core.jc6l297fef.wasm - null null -2026-01-16 11:19:04.712 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.712 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.712 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.712 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.712 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.714 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.714 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.714 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.714 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.714 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.714 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.714 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.714 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.714 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.714 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.714 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.715 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.715 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.717 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Core.jc6l297fef.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\klnckblff1-{0}-jc6l297fef-jc6l297fef.gz' -2026-01-16 11:19:04.717 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.717 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Core.jc6l297fef.wasm - 200 311139 application/wasm 6.1289ms -2026-01-16 11:19:04.723 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Data.45tb83m8qj.wasm - null null -2026-01-16 11:19:04.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.723 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.723 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.723 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.723 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.726 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.726 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.726 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.726 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.726 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.726 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.726 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.727 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.727 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.727 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.727 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.727 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.727 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.728 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Data.45tb83m8qj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\g2etzqh2n8-{0}-45tb83m8qj-45tb83m8qj.gz' -2026-01-16 11:19:04.728 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.728 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Data.45tb83m8qj.wasm - 200 23862 application/wasm 5.8644ms -2026-01-16 11:19:04.733 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Ddd.Application.Contracts.r37rukhywo.wasm - null null -2026-01-16 11:19:04.734 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.734 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.734 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.734 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.734 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.737 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.737 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.737 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.737 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.737 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.737 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.737 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.737 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.737 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.737 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.737 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.738 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.738 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.739 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Ddd.Application.Contracts.r37rukhywo.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bq3ub7csyu-{0}-r37rukhywo-r37rukhywo.gz' -2026-01-16 11:19:04.739 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.739 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Ddd.Application.Contracts.r37rukhywo.wasm - 200 37691 application/wasm 5.4778ms -2026-01-16 11:19:04.744 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.DistributedLocking.Abstractions.tk4mfpf8i8.wasm - null null -2026-01-16 11:19:04.744 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.744 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.744 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.744 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.744 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.747 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.747 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.747 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.747 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.747 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.747 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.747 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.747 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.747 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.747 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.747 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.747 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.748 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.748 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.DistributedLocking.Abstractions.tk4mfpf8i8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\qe2ghijxui-{0}-tk4mfpf8i8-tk4mfpf8i8.gz' -2026-01-16 11:19:04.748 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.748 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.DistributedLocking.Abstractions.tk4mfpf8i8.wasm - 200 7990 application/wasm 4.6938ms -2026-01-16 11:19:04.752 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.Abstractions.5cqj3sommy.wasm - null null -2026-01-16 11:19:04.753 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.753 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.753 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.753 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.753 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.756 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.756 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.756 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.756 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.756 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.756 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.756 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.756 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.756 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.756 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.756 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.756 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.757 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.757 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.EventBus.Abstractions.5cqj3sommy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\30q391t77y-{0}-5cqj3sommy-5cqj3sommy.gz' -2026-01-16 11:19:04.757 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.757 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.Abstractions.5cqj3sommy.wasm - 200 20278 application/wasm 5.2043ms -2026-01-16 11:19:04.761 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.utpzts8k5s.wasm - null null -2026-01-16 11:19:04.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.762 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.762 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.762 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.762 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.764 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.764 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.764 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.764 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.764 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.764 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.764 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.764 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.764 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.764 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.764 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.764 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.765 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.766 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.EventBus.utpzts8k5s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xdn8i8epqw-{0}-utpzts8k5s-utpzts8k5s.gz' -2026-01-16 11:19:04.766 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.766 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.utpzts8k5s.wasm - 200 85824 application/wasm 4.3326ms -2026-01-16 11:19:04.772 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ExceptionHandling.vp0sg9d114.wasm - null null -2026-01-16 11:19:04.772 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.772 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.772 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.772 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.772 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.775 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.775 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.775 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.775 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.775 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.775 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.775 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.775 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.775 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.775 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.776 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.776 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.777 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.778 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ExceptionHandling.vp0sg9d114.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\86e1bzf02o-{0}-vp0sg9d114-vp0sg9d114.gz' -2026-01-16 11:19:04.778 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.778 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ExceptionHandling.vp0sg9d114.wasm - 200 79680 application/wasm 6.5225ms -2026-01-16 11:19:04.783 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Application.Contracts.sfkscfc8zv.wasm - null null -2026-01-16 11:19:04.784 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.784 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.784 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.784 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.784 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.788 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.788 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.788 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.788 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.788 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.788 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.788 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.788 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.788 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.788 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.788 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.789 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.789 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.790 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Application.Contracts.sfkscfc8zv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1k1yaajq7n-{0}-sfkscfc8zv-sfkscfc8zv.gz' -2026-01-16 11:19:04.790 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.790 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Application.Contracts.sfkscfc8zv.wasm - 200 11574 application/wasm 7.3422ms -2026-01-16 11:19:04.797 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.rngg7ug5lr.wasm - null null -2026-01-16 11:19:04.797 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.797 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.797 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.797 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.797 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.800 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.800 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.800 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.800 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.800 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.800 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.800 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.800 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.800 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.800 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.800 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.801 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.801 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.802 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Blazor.rngg7ug5lr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\to2klgum5b-{0}-rngg7ug5lr-rngg7ug5lr.gz' -2026-01-16 11:19:04.802 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.803 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.rngg7ug5lr.wasm - 200 39739 application/wasm 5.8238ms -2026-01-16 11:19:04.808 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.WebAssembly.wh6dfeii6u.wasm - null null -2026-01-16 11:19:04.809 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.809 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.809 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.809 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.809 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.812 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.812 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.812 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.812 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.812 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.812 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.812 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.812 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.812 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.812 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.812 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.813 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.813 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.814 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Blazor.WebAssembly.wh6dfeii6u.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\98qfb9rcua-{0}-wh6dfeii6u-wh6dfeii6u.gz' -2026-01-16 11:19:04.814 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.814 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.WebAssembly.wh6dfeii6u.wasm - 200 5430 application/wasm 5.2637ms -2026-01-16 11:19:04.819 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Domain.Shared.l99wm3i8ic.wasm - null null -2026-01-16 11:19:04.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.819 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.819 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.819 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.819 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.822 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.822 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.822 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.822 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.822 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.822 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.822 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.822 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.822 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.822 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.822 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.823 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.823 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.824 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Domain.Shared.l99wm3i8ic.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nv73dihqbu-{0}-l99wm3i8ic-l99wm3i8ic.gz' -2026-01-16 11:19:04.824 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.824 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Domain.Shared.l99wm3i8ic.wasm - 200 47419 application/wasm 5.5539ms -2026-01-16 11:19:04.831 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.HttpApi.Client.e611pdn2dh.wasm - null null -2026-01-16 11:19:04.832 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.832 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.832 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.832 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.832 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.834 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.834 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.834 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.834 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.834 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.834 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.834 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.835 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.835 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.835 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.835 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.835 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.835 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.836 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.HttpApi.Client.e611pdn2dh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5kgd4qlij6-{0}-e611pdn2dh-e611pdn2dh.gz' -2026-01-16 11:19:04.836 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.836 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.HttpApi.Client.e611pdn2dh.wasm - 200 22838 application/wasm 5.4541ms -2026-01-16 11:19:04.842 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Features.8j0pys3g0l.wasm - null null -2026-01-16 11:19:04.843 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.843 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.843 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.843 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.843 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.846 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.846 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.846 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.846 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.846 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.846 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.846 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.846 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.846 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.846 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.846 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.847 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.847 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.848 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Features.8j0pys3g0l.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c4f7xcddbd-{0}-8j0pys3g0l-8j0pys3g0l.gz' -2026-01-16 11:19:04.848 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.848 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Features.8j0pys3g0l.wasm - 200 71488 application/wasm 6.0998ms -2026-01-16 11:19:04.854 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.GlobalFeatures.cncnlsoxlv.wasm - null null -2026-01-16 11:19:04.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.854 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.855 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.855 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.855 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.857 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.857 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.857 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.857 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.857 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.857 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.857 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.857 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.857 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.857 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.858 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.858 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.858 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.859 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.GlobalFeatures.cncnlsoxlv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lgshqof3zp-{0}-cncnlsoxlv-cncnlsoxlv.gz' -2026-01-16 11:19:04.859 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.859 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.GlobalFeatures.cncnlsoxlv.wasm - 200 26422 application/wasm 5.2446ms -2026-01-16 11:19:04.867 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Guids.rpqf4eel82.wasm - null null -2026-01-16 11:19:04.868 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.868 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.868 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.868 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.868 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.870 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.870 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.870 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.871 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.871 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.871 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.871 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.871 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.871 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.871 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.871 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.871 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.871 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.872 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Guids.rpqf4eel82.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fakjzvu1ye-{0}-rpqf4eel82-rpqf4eel82.gz' -2026-01-16 11:19:04.872 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.872 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Guids.rpqf4eel82.wasm - 200 5942 application/wasm 4.9927ms -2026-01-16 11:19:04.876 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Abstractions.8dpdiecfgp.wasm - null null -2026-01-16 11:19:04.877 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.877 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.877 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.877 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.877 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.878 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.878 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.878 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.878 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.878 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.878 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.878 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.878 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.878 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.878 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.878 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.879 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.879 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.880 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Abstractions.8dpdiecfgp.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\orvt5319bs-{0}-8dpdiecfgp-8dpdiecfgp.gz' -2026-01-16 11:19:04.880 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.880 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Abstractions.8dpdiecfgp.wasm - 200 5942 application/wasm 4.2106ms -2026-01-16 11:19:04.884 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.r68qdgcd1b.wasm - null null -2026-01-16 11:19:04.884 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.885 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.885 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.885 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.885 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.887 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.887 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.887 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.887 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.887 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.887 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.887 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.887 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.887 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.887 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.887 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.888 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.888 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.890 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.r68qdgcd1b.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\esehx2q8xm-{0}-r68qdgcd1b-r68qdgcd1b.gz' -2026-01-16 11:19:04.890 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.890 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.r68qdgcd1b.wasm - 200 96576 application/wasm 5.8651ms -2026-01-16 11:19:04.894 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.q7bwu8tai1.wasm - null null -2026-01-16 11:19:04.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.895 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.895 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.895 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.895 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.898 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.898 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.898 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.898 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.898 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.898 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.898 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.898 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.898 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.898 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.898 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.898 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.899 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.899 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.IdentityModel.q7bwu8tai1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\69zsrpzmke-{0}-q7bwu8tai1-q7bwu8tai1.gz' -2026-01-16 11:19:04.899 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.899 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.q7bwu8tai1.wasm - 200 7990 application/wasm 5.0845ms -2026-01-16 11:19:04.904 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.qzbsp0yqt9.wasm - null null -2026-01-16 11:19:04.905 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.907 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.907 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.907 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.907 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.907 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.907 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.907 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.907 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.908 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.908 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.908 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.908 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.908 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.909 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.qzbsp0yqt9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\985eczt6cq-{0}-qzbsp0yqt9-qzbsp0yqt9.gz' -2026-01-16 11:19:04.909 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.909 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.qzbsp0yqt9.wasm - 200 10550 application/wasm 5.3629ms -2026-01-16 11:19:04.914 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.wghlvqu53y.wasm - null null -2026-01-16 11:19:04.915 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.915 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.915 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.915 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.915 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.917 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.917 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.917 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.917 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.917 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.917 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.917 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.918 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.918 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.918 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.918 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.918 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.918 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.919 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.wghlvqu53y.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\blqvtier8g-{0}-wghlvqu53y-wghlvqu53y.gz' -2026-01-16 11:19:04.919 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.920 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.wghlvqu53y.wasm - 200 54587 application/wasm 5.4183ms -2026-01-16 11:19:04.925 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Application.Contracts.oc86zdrdr6.wasm - null null -2026-01-16 11:19:04.926 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.926 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.926 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.926 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.926 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.928 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.928 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.928 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.928 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.928 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.928 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.928 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.929 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.929 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.929 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.929 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.929 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.929 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.930 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Application.Contracts.oc86zdrdr6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ru0e3g14jl-{0}-oc86zdrdr6-oc86zdrdr6.gz' -2026-01-16 11:19:04.930 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.930 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Application.Contracts.oc86zdrdr6.wasm - 200 21302 application/wasm 4.9699ms -2026-01-16 11:19:04.935 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.heex3hhtoe.wasm - null null -2026-01-16 11:19:04.935 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.935 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.935 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.935 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.935 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.938 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.938 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.938 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.938 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.938 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.938 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.938 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.938 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.939 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.939 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.939 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.939 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.940 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.941 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Blazor.heex3hhtoe.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\opbpkr1dm9-{0}-heex3hhtoe-heex3hhtoe.gz' -2026-01-16 11:19:04.941 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.941 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.heex3hhtoe.wasm - 200 77632 application/wasm 6.4994ms -2026-01-16 11:19:04.946 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.WebAssembly.2yg00gujjm.wasm - null null -2026-01-16 11:19:04.947 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.947 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.947 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.947 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.947 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.950 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.950 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.950 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.950 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.950 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.950 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.950 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.950 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.950 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.950 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.950 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.950 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.951 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.951 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Blazor.WebAssembly.2yg00gujjm.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ggeuqe8fbt-{0}-2yg00gujjm-2yg00gujjm.gz' -2026-01-16 11:19:04.951 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.951 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.WebAssembly.2yg00gujjm.wasm - 200 5430 application/wasm 5.3889ms -2026-01-16 11:19:04.957 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Domain.Shared.8pasengv23.wasm - null null -2026-01-16 11:19:04.958 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.958 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.958 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.958 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.958 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.961 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.961 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.961 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.961 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.961 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.961 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.961 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.961 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.961 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.961 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.961 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.961 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.962 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.964 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Domain.Shared.8pasengv23.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\o0k8cjq56a-{0}-8pasengv23-8pasengv23.gz' -2026-01-16 11:19:04.964 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.964 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Domain.Shared.8pasengv23.wasm - 200 370029 application/wasm 7.0646ms -2026-01-16 11:19:04.969 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.HttpApi.Client.plxsdumg7g.wasm - null null -2026-01-16 11:19:04.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.970 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.970 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.970 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.970 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.972 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.972 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.972 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.972 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.972 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.972 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.972 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.973 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.973 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.973 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.973 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.974 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.974 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.975 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.HttpApi.Client.plxsdumg7g.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bj1jtfcis3-{0}-plxsdumg7g-plxsdumg7g.gz' -2026-01-16 11:19:04.975 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.975 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.HttpApi.Client.plxsdumg7g.wasm - 200 123205 application/wasm 6.4967ms -2026-01-16 11:19:04.981 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.IdentityModel.ne3sh62c7z.wasm - null null -2026-01-16 11:19:04.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.981 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.981 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.981 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.981 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.984 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.984 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.984 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.984 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.984 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.984 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.984 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.984 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.984 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.984 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.984 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.984 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.985 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.985 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.IdentityModel.ne3sh62c7z.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6dvntei2gj-{0}-ne3sh62c7z-ne3sh62c7z.gz' -2026-01-16 11:19:04.986 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.986 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.IdentityModel.ne3sh62c7z.wasm - 200 32566 application/wasm 4.9996ms -2026-01-16 11:19:04.991 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.Abstractions.xb0dc1uslz.wasm - null null -2026-01-16 11:19:04.992 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.992 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:04.992 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:04.992 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:04.992 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:04.994 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.994 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.994 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:04.994 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:04.994 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:04.994 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:04.994 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.995 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:04.995 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:04.995 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:04.995 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:04.995 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:04.995 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.996 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.Abstractions.xb0dc1uslz.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kno3y6bjsa-{0}-xb0dc1uslz-xb0dc1uslz.gz' -2026-01-16 11:19:04.996 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:04.996 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.Abstractions.xb0dc1uslz.wasm - 200 4918 application/wasm 5.2979ms -2026-01-16 11:19:05.000 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.pnp959fij0.wasm - null null -2026-01-16 11:19:05.001 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.001 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.001 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.001 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.001 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.005 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.005 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.005 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.005 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.005 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.005 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.005 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.005 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.005 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.005 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.005 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.006 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.006 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.007 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.pnp959fij0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xxkqi4ckse-{0}-pnp959fij0-pnp959fij0.gz' -2026-01-16 11:19:05.007 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.007 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.pnp959fij0.wasm - 200 3894 application/wasm 6.7231ms -2026-01-16 11:19:05.012 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.SystemTextJson.9pfgthge2g.wasm - null null -2026-01-16 11:19:05.013 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.013 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.013 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.013 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.013 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.015 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.015 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.015 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.015 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.015 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.015 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.015 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.015 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.015 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.015 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.015 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.015 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.016 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.016 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.SystemTextJson.9pfgthge2g.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\y6nmb5oill-{0}-9pfgthge2g-9pfgthge2g.gz' -2026-01-16 11:19:05.016 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.016 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.SystemTextJson.9pfgthge2g.wasm - 200 24374 application/wasm 4.3027ms -2026-01-16 11:19:05.022 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.Abstractions.olczjtqc1j.wasm - null null -2026-01-16 11:19:05.023 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.023 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.023 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.023 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.023 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.026 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.026 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.026 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.026 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.026 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.026 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.026 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.026 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.026 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.026 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.026 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.026 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.027 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.027 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Localization.Abstractions.olczjtqc1j.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6hzosd4d2z-{0}-olczjtqc1j-olczjtqc1j.gz' -2026-01-16 11:19:05.027 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.027 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.Abstractions.olczjtqc1j.wasm - 200 13622 application/wasm 5.327ms -2026-01-16 11:19:05.031 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.i67lx3dg9t.wasm - null null -2026-01-16 11:19:05.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.035 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.035 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.035 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.035 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.035 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.035 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.035 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.035 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.035 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.035 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.035 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.036 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.036 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.037 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Localization.i67lx3dg9t.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\742lfcokyb-{0}-i67lx3dg9t-i67lx3dg9t.gz' -2026-01-16 11:19:05.037 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.037 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.i67lx3dg9t.wasm - 200 66880 application/wasm 5.9708ms -2026-01-16 11:19:05.051 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Mapperly.tjha8lqr01.wasm - null null -2026-01-16 11:19:05.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.052 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.052 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.052 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.052 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.054 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.054 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.054 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.054 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.054 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.054 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.054 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.054 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.054 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.054 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.054 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.055 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.055 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.056 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Mapperly.tjha8lqr01.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wlgf7ryjmc-{0}-tjha8lqr01-tjha8lqr01.gz' -2026-01-16 11:19:05.056 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.056 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Mapperly.tjha8lqr01.wasm - 200 18230 application/wasm 4.4054ms -2026-01-16 11:19:05.063 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Minify.lo7abix7jn.wasm - null null -2026-01-16 11:19:05.064 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.064 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.064 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.064 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.064 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.067 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.067 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.067 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.067 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.067 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.067 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.067 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.067 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.067 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.067 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.067 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.067 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.068 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.068 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Minify.lo7abix7jn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xo92mb2h1m-{0}-lo7abix7jn-lo7abix7jn.gz' -2026-01-16 11:19:05.068 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.068 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Minify.lo7abix7jn.wasm - 200 6966 application/wasm 5.11ms -2026-01-16 11:19:05.072 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.Abstractions.phybhmx25i.wasm - null null -2026-01-16 11:19:05.073 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.073 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.073 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.073 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.073 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.076 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.076 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.076 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.076 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.076 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.076 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.076 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.076 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.076 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.076 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.076 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.077 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.077 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.077 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MultiTenancy.Abstractions.phybhmx25i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9h6hwofytn-{0}-phybhmx25i-phybhmx25i.gz' -2026-01-16 11:19:05.077 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.078 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.Abstractions.phybhmx25i.wasm - 200 26934 application/wasm 5.3857ms -2026-01-16 11:19:05.084 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.ilbjum73s1.wasm - null null -2026-01-16 11:19:05.085 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.085 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.085 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.085 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.085 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.088 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.088 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.088 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.088 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.088 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.088 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.088 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.088 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.088 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.088 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.088 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.089 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.089 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.090 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MultiTenancy.ilbjum73s1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\k4tu4vjqt3-{0}-ilbjum73s1-ilbjum73s1.gz' -2026-01-16 11:19:05.090 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.090 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.ilbjum73s1.wasm - 200 31542 application/wasm 5.9945ms -2026-01-16 11:19:05.097 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectExtending.xkxw5ywq2u.wasm - null null -2026-01-16 11:19:05.097 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.101 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.101 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.101 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.101 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.101 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.101 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.101 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.101 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.101 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.101 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.101 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.102 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.102 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.103 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ObjectExtending.xkxw5ywq2u.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3mtcgnfv0c-{0}-xkxw5ywq2u-xkxw5ywq2u.gz' -2026-01-16 11:19:05.103 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.103 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectExtending.xkxw5ywq2u.wasm - 200 48443 application/wasm 6.4026ms -2026-01-16 11:19:05.110 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectMapping.ufqopy12y4.wasm - null null -2026-01-16 11:19:05.111 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.111 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.111 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.111 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.111 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.114 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.114 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.114 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.114 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.114 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.114 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.114 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.114 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.114 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.114 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.114 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.115 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.115 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.116 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ObjectMapping.ufqopy12y4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\zesov8dx3n-{0}-ufqopy12y4-ufqopy12y4.gz' -2026-01-16 11:19:05.116 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.116 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectMapping.ufqopy12y4.wasm - 200 17206 application/wasm 5.7908ms -2026-01-16 11:19:05.121 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.OpenIddict.Domain.Shared.ept9w5ufhq.wasm - null null -2026-01-16 11:19:05.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.124 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.125 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.125 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.125 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.125 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.125 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.125 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.125 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.125 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.125 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.125 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.125 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.126 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.126 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.OpenIddict.Domain.Shared.ept9w5ufhq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\e9mit81pkr-{0}-ept9w5ufhq-ept9w5ufhq.gz' -2026-01-16 11:19:05.126 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.127 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.OpenIddict.Domain.Shared.ept9w5ufhq.wasm - 200 41275 application/wasm 5.5872ms -2026-01-16 11:19:05.132 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Application.Contracts.ihd8hyrzaj.wasm - null null -2026-01-16 11:19:05.133 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.133 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.133 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.133 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.133 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.135 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.135 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.135 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.135 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.135 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.135 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.135 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.135 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.135 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.135 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.135 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.136 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.136 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.137 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Application.Contracts.ihd8hyrzaj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\my5sja1gq5-{0}-ihd8hyrzaj-ihd8hyrzaj.gz' -2026-01-16 11:19:05.137 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.137 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Application.Contracts.ihd8hyrzaj.wasm - 200 14134 application/wasm 4.5743ms -2026-01-16 11:19:05.143 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.v61ue0ybxl.wasm - null null -2026-01-16 11:19:05.144 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.147 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.148 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.148 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.148 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.148 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.148 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.148 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.148 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.148 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.148 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.148 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.149 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.149 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.150 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Blazor.v61ue0ybxl.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\yyrmustgj2-{0}-v61ue0ybxl-v61ue0ybxl.gz' -2026-01-16 11:19:05.150 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.150 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.v61ue0ybxl.wasm - 200 78656 application/wasm 7.5649ms -2026-01-16 11:19:05.157 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.WebAssembly.ta15fbtaxb.wasm - null null -2026-01-16 11:19:05.157 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.158 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.158 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.158 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.158 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.160 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.160 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.160 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.160 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.160 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.160 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.160 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.161 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.161 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.161 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.161 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.161 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.162 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.162 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Blazor.WebAssembly.ta15fbtaxb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tlpod9jcj5-{0}-ta15fbtaxb-ta15fbtaxb.gz' -2026-01-16 11:19:05.162 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.162 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.WebAssembly.ta15fbtaxb.wasm - 200 5430 application/wasm 5.6302ms -2026-01-16 11:19:05.166 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Domain.Shared.dp67lx65bv.wasm - null null -2026-01-16 11:19:05.166 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.166 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.167 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.167 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.167 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.169 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.169 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.169 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.169 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.169 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.169 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.169 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.169 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.169 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.169 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.169 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.169 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.170 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.171 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Domain.Shared.dp67lx65bv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\yzrsadtuc3-{0}-dp67lx65bv-dp67lx65bv.gz' -2026-01-16 11:19:05.171 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.171 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Domain.Shared.dp67lx65bv.wasm - 200 59195 application/wasm 4.9153ms -2026-01-16 11:19:05.176 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.HttpApi.Client.52y0vooa2b.wasm - null null -2026-01-16 11:19:05.176 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.176 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.176 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.177 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.177 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.179 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.179 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.179 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.179 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.179 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.179 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.179 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.180 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.180 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.180 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.180 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.180 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.180 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.181 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.HttpApi.Client.52y0vooa2b.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\oo1t1rirr3-{0}-52y0vooa2b-52y0vooa2b.gz' -2026-01-16 11:19:05.181 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.182 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.HttpApi.Client.52y0vooa2b.wasm - 200 68416 application/wasm 5.8435ms -2026-01-16 11:19:05.186 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.RemoteServices.4mwmbxh6wc.wasm - null null -2026-01-16 11:19:05.186 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.186 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.186 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.186 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.186 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.189 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.189 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.189 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.189 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.189 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.189 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.189 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.190 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.190 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.190 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.190 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.190 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.191 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.191 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.RemoteServices.4mwmbxh6wc.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fxolomud6k-{0}-4mwmbxh6wc-4mwmbxh6wc.gz' -2026-01-16 11:19:05.191 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.191 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.RemoteServices.4mwmbxh6wc.wasm - 200 11574 application/wasm 5.5286ms -2026-01-16 11:19:05.196 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Security.631iyyll7y.wasm - null null -2026-01-16 11:19:05.196 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.196 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.197 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.197 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.197 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.199 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.199 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.199 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.199 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.199 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.199 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.199 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.199 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.199 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.199 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.199 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.200 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.200 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.201 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Security.631iyyll7y.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3330bn9dpa-{0}-631iyyll7y-631iyyll7y.gz' -2026-01-16 11:19:05.201 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.201 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Security.631iyyll7y.wasm - 200 48955 application/wasm 4.9806ms -2026-01-16 11:19:05.207 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Serialization.mcwfwlxjtc.wasm - null null -2026-01-16 11:19:05.208 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.208 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.208 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.208 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.208 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.210 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.211 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.211 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.211 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.211 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.211 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.211 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.211 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.211 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.211 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.211 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.211 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.212 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.212 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Serialization.mcwfwlxjtc.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jm5tzubbmd-{0}-mcwfwlxjtc-mcwfwlxjtc.gz' -2026-01-16 11:19:05.212 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.212 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Serialization.mcwfwlxjtc.wasm - 200 6966 application/wasm 5.1671ms -2026-01-16 11:19:05.216 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Application.Contracts.m9cszjvkq4.wasm - null null -2026-01-16 11:19:05.217 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.217 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.217 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.217 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.217 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.219 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.219 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.219 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.219 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.219 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.219 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.219 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.219 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.219 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.219 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.219 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.220 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.220 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.221 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Application.Contracts.m9cszjvkq4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sa63frt88b-{0}-m9cszjvkq4-m9cszjvkq4.gz' -2026-01-16 11:19:05.221 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.221 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Application.Contracts.m9cszjvkq4.wasm - 200 14134 application/wasm 5.0346ms -2026-01-16 11:19:05.224 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.9ouzngi5xt.wasm - null null -2026-01-16 11:19:05.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.225 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.225 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.225 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.225 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.227 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.227 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.228 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.228 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.228 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.228 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.228 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.228 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.228 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.228 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.228 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.228 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.229 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.229 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Blazor.9ouzngi5xt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\o3t7gsk43d-{0}-9ouzngi5xt-9ouzngi5xt.gz' -2026-01-16 11:19:05.230 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.230 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.9ouzngi5xt.wasm - 200 64827 application/wasm 5.3034ms -2026-01-16 11:19:05.234 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.WebAssembly.66kpp2xe1w.wasm - null null -2026-01-16 11:19:05.234 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.234 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.234 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.234 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.234 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.236 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.236 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.236 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.236 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.236 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.236 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.236 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.237 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.237 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.237 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.237 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.237 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.237 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.238 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Blazor.WebAssembly.66kpp2xe1w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6idcgz9ch1-{0}-66kpp2xe1w-66kpp2xe1w.gz' -2026-01-16 11:19:05.238 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.238 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.WebAssembly.66kpp2xe1w.wasm - 200 5430 application/wasm 4.1229ms -2026-01-16 11:19:05.241 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Domain.Shared.1io4tqsn7k.wasm - null null -2026-01-16 11:19:05.242 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.242 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.242 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.242 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.242 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.245 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.245 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.245 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.245 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.245 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.245 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.245 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.245 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.245 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.245 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.245 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.246 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.246 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.247 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Domain.Shared.1io4tqsn7k.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\a9lyefc7q1-{0}-1io4tqsn7k-1io4tqsn7k.gz' -2026-01-16 11:19:05.247 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.247 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Domain.Shared.1io4tqsn7k.wasm - 200 86336 application/wasm 5.6452ms -2026-01-16 11:19:05.251 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.HttpApi.Client.xe9mymnwdz.wasm - null null -2026-01-16 11:19:05.252 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.252 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.252 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.252 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.252 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.254 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.255 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.255 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.255 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.255 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.255 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.255 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.255 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.255 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.255 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.255 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.255 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.255 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.256 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.HttpApi.Client.xe9mymnwdz.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ivgy4mp33s-{0}-xe9mymnwdz-xe9mymnwdz.gz' -2026-01-16 11:19:05.256 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.256 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.HttpApi.Client.xe9mymnwdz.wasm - 200 23862 application/wasm 4.82ms -2026-01-16 11:19:05.262 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Settings.wyqvmj5hzl.wasm - null null -2026-01-16 11:19:05.262 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.262 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.262 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.262 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.262 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.264 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.264 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.264 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.264 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.264 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.264 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.264 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.264 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.264 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.264 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.264 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.265 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.265 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.266 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Settings.wyqvmj5hzl.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bgt33y9v4t-{0}-wyqvmj5hzl-wyqvmj5hzl.gz' -2026-01-16 11:19:05.266 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.266 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Settings.wyqvmj5hzl.wasm - 200 40763 application/wasm 4.1317ms -2026-01-16 11:19:05.272 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Application.Contracts.ygbs0mhsr6.wasm - null null -2026-01-16 11:19:05.273 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.273 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.273 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.273 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.273 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.275 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.275 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.275 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.275 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.275 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.275 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.275 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.276 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.276 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.276 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.276 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.276 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.276 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.277 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Application.Contracts.ygbs0mhsr6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c16tsznfvz-{0}-ygbs0mhsr6-ygbs0mhsr6.gz' -2026-01-16 11:19:05.277 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.277 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Application.Contracts.ygbs0mhsr6.wasm - 200 12086 application/wasm 4.9067ms -2026-01-16 11:19:05.281 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.gd3eudic6u.wasm - null null -2026-01-16 11:19:05.282 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.282 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.282 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.282 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.282 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.284 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.284 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.284 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.284 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.284 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.284 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.284 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.285 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.285 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.285 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.285 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.285 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.286 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.287 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Blazor.gd3eudic6u.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\w9s02i9mfm-{0}-gd3eudic6u-gd3eudic6u.gz' -2026-01-16 11:19:05.287 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.287 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.gd3eudic6u.wasm - 200 35131 application/wasm 5.5551ms -2026-01-16 11:19:05.291 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.WebAssembly.gd0ne5huhq.wasm - null null -2026-01-16 11:19:05.292 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.292 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.292 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.292 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.292 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.295 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.295 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.295 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.295 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.295 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.295 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.295 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.295 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.295 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.295 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.295 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.296 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.296 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.297 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Blazor.WebAssembly.gd0ne5huhq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ddnrcas9h4-{0}-gd0ne5huhq-gd0ne5huhq.gz' -2026-01-16 11:19:05.297 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.297 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.WebAssembly.gd0ne5huhq.wasm - 200 5430 application/wasm 5.2636ms -2026-01-16 11:19:05.301 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Domain.Shared.srlzqit33k.wasm - null null -2026-01-16 11:19:05.302 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.302 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.302 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.302 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.302 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.305 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.305 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.305 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.305 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.305 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.305 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.305 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.305 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.305 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.305 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.305 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.306 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.306 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.307 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Domain.Shared.srlzqit33k.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\so2apr0f18-{0}-srlzqit33k-srlzqit33k.gz' -2026-01-16 11:19:05.307 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.307 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Domain.Shared.srlzqit33k.wasm - 200 44347 application/wasm 5.5481ms -2026-01-16 11:19:05.314 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.HttpApi.Client.d2pijqfx1p.wasm - null null -2026-01-16 11:19:05.315 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.315 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.315 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.315 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.315 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.318 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.318 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.319 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.319 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.319 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.319 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.319 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.319 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.319 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.319 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.319 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.320 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.320 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.321 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.HttpApi.Client.d2pijqfx1p.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\imelthvwfz-{0}-d2pijqfx1p-d2pijqfx1p.gz' -2026-01-16 11:19:05.321 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.321 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.HttpApi.Client.d2pijqfx1p.wasm - 200 37179 application/wasm 7.1724ms -2026-01-16 11:19:05.334 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Threading.d66hw237g4.wasm - null null -2026-01-16 11:19:05.335 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.335 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.336 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.336 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.336 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.338 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.338 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.338 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.338 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.338 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.338 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.338 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.338 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.338 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.338 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.338 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.339 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.339 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.340 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Threading.d66hw237g4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bipe9d19v0-{0}-d66hw237g4-d66hw237g4.gz' -2026-01-16 11:19:05.340 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.340 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Threading.d66hw237g4.wasm - 200 34619 application/wasm 5.4526ms -2026-01-16 11:19:05.346 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Timing.g07dqr03za.wasm - null null -2026-01-16 11:19:05.347 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.347 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.347 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.347 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.347 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.349 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.349 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.349 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.349 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.349 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.349 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.349 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.350 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.350 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.350 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.350 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.350 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.350 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.351 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Timing.g07dqr03za.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\k5ucu0dgya-{0}-g07dqr03za-g07dqr03za.gz' -2026-01-16 11:19:05.351 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.351 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Timing.g07dqr03za.wasm - 200 19766 application/wasm 5.0189ms -2026-01-16 11:19:05.356 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.72n9motsm6.wasm - null null -2026-01-16 11:19:05.357 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.357 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.357 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.357 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.357 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.360 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.360 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.360 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.360 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.360 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.360 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.360 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.360 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.360 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.360 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.360 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.360 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.361 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.362 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.UI.72n9motsm6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pq6xwwf7om-{0}-72n9motsm6-72n9motsm6.gz' -2026-01-16 11:19:05.362 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.362 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.72n9motsm6.wasm - 200 83776 application/wasm 5.3483ms -2026-01-16 11:19:05.367 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.Navigation.aser3kjl5e.wasm - null null -2026-01-16 11:19:05.368 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.368 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.368 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.368 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.368 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.370 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.370 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.370 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.370 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.370 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.370 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.370 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.370 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.370 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.371 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.371 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.371 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.371 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.372 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.UI.Navigation.aser3kjl5e.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9g5ljk4lon-{0}-aser3kjl5e-aser3kjl5e.gz' -2026-01-16 11:19:05.372 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.373 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.Navigation.aser3kjl5e.wasm - 200 40763 application/wasm 5.3565ms -2026-01-16 11:19:05.378 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Uow.muvacr9n86.wasm - null null -2026-01-16 11:19:05.378 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.378 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.379 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.379 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.379 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.381 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.381 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.381 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.381 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.381 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.381 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.381 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.381 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.381 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.381 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.381 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.382 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.382 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.383 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Uow.muvacr9n86.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ilu4fbxe2e-{0}-muvacr9n86-muvacr9n86.gz' -2026-01-16 11:19:05.383 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.383 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Uow.muvacr9n86.wasm - 200 39227 application/wasm 4.9979ms -2026-01-16 11:19:05.388 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Abstractions.75ke78vuqe.wasm - null null -2026-01-16 11:19:05.388 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.391 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.391 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.391 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.391 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.391 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.391 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.391 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.391 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.391 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.391 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.391 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.392 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.392 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.393 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Users.Abstractions.75ke78vuqe.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jyt2zu3ttz-{0}-75ke78vuqe-75ke78vuqe.gz' -2026-01-16 11:19:05.393 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.393 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Abstractions.75ke78vuqe.wasm - 200 11062 application/wasm 5.3537ms -2026-01-16 11:19:05.398 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Domain.Shared.9xfqx4eagm.wasm - null null -2026-01-16 11:19:05.398 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.398 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.398 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.398 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.398 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.401 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.401 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.401 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.401 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.401 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.401 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.401 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.401 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.401 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.401 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.401 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.402 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.402 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.403 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Users.Domain.Shared.9xfqx4eagm.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8bcoe6ftg7-{0}-9xfqx4eagm-9xfqx4eagm.gz' -2026-01-16 11:19:05.403 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.403 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Domain.Shared.9xfqx4eagm.wasm - 200 4918 application/wasm 5.3798ms -2026-01-16 11:19:05.409 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.Abstractions.pdgirsrcy7.wasm - null null -2026-01-16 11:19:05.409 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.410 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.410 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.410 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.410 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.412 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.412 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.412 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.412 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.412 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.412 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.412 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.412 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.413 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.413 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.413 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.413 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.413 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.414 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Validation.Abstractions.pdgirsrcy7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gd6ojlvfcf-{0}-pdgirsrcy7-pdgirsrcy7.gz' -2026-01-16 11:19:05.414 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.414 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.Abstractions.pdgirsrcy7.wasm - 200 6966 application/wasm 5.3615ms -2026-01-16 11:19:05.418 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.cw8rp94akf.wasm - null null -2026-01-16 11:19:05.418 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.418 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.418 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.418 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.418 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.421 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.421 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.421 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.421 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.421 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.421 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.421 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.422 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.422 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.422 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.422 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.422 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.422 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.424 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Validation.cw8rp94akf.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2i0haqeq52-{0}-cw8rp94akf-cw8rp94akf.gz' -2026-01-16 11:19:05.424 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.424 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.cw8rp94akf.wasm - 200 133962 application/wasm 6.6756ms -2026-01-16 11:19:05.430 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.VirtualFileSystem.yczg6coj9s.wasm - null null -2026-01-16 11:19:05.430 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.431 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.431 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.431 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.431 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.433 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.433 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.433 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.433 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.433 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.433 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.433 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.433 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.433 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.433 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.433 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.434 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.434 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.435 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.VirtualFileSystem.yczg6coj9s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\oikj36ifzq-{0}-yczg6coj9s-yczg6coj9s.gz' -2026-01-16 11:19:05.435 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.435 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.VirtualFileSystem.yczg6coj9s.wasm - 200 21302 application/wasm 5.1191ms -2026-01-16 11:19:05.442 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.a6alvvd27g.wasm - null null -2026-01-16 11:19:05.442 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.442 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.443 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.443 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.443 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.445 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.445 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.445 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.445 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.445 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.445 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.445 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.445 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.445 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.445 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.445 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.446 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.446 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.447 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.a6alvvd27g.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b9vq30g1vb-{0}-a6alvvd27g-a6alvvd27g.gz' -2026-01-16 11:19:05.447 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.447 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.a6alvvd27g.wasm - 200 38715 application/wasm 5.1107ms -2026-01-16 11:19:05.451 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/icudt.oh1zvcfom8.dat - null null -2026-01-16 11:19:05.451 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.451 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.451 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.451 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.451 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.454 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.454 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.454 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.454 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.454 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.454 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.454 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.455 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.455 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.455 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.455 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.456 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.456 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.456 +03:00 [INF] The file _framework/icudt.oh1zvcfom8.dat was not modified -2026-01-16 11:19:05.456 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.456 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/icudt.oh1zvcfom8.dat - 304 null application/octet-stream 5.1339ms -2026-01-16 11:19:05.468 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/appsettings.Development.json - null null -2026-01-16 11:19:05.470 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.470 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.470 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.470 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.470 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.474 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.474 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.474 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.474 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.474 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.474 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.474 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.475 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.475 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.475 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.475 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.476 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.476 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.476 +03:00 [INF] Sending file. Request path: 'appsettings.Development.json'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5yh5mvb6m0-{0}-qygrwjo5h3-qygrwjo5h3.gz' -2026-01-16 11:19:05.477 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.477 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/appsettings.Development.json - 200 41 application/json 8.9326ms -2026-01-16 11:19:05.487 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/appsettings.json - null null -2026-01-16 11:19:05.487 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.487 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:05.487 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:05.487 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:05.487 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:05.490 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.490 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.490 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:05.490 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:05.490 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:05.490 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:05.490 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.490 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:05.490 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:05.490 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:05.490 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:05.491 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:05.491 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.492 +03:00 [INF] Sending file. Request path: 'appsettings.json'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\apuwzph3tz-{0}-b8hf2s338i-b8hf2s338i.gz' -2026-01-16 11:19:05.492 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:05.492 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/appsettings.json - 200 136 application/json 4.9616ms -2026-01-16 11:19:08.783 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/api/abp/application-configuration?IncludeLocalizationResources=False&api-version=1.0 - null null -2026-01-16 11:19:08.784 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.784 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.784 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:08.784 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:08.784 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:08.786 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.786 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.786 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:08.786 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:08.786 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:08.786 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:08.786 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.786 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.786 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.786 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:08.786 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.787 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:08.788 +03:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' -2026-01-16 11:19:08.797 +03:00 [INF] Route matched with {area = "abp", action = "Get", controller = "AbpApplicationConfiguration", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto] GetAsync(Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationRequestOptions) on controller Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController (Volo.Abp.AspNetCore.Mvc). -2026-01-16 11:19:08.804 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/bootstrap/css/bootstrap.css - null null -2026-01-16 11:19:08.805 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.805 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.805 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:08.805 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:08.805 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:08.810 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.810 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.810 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:08.810 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:08.810 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:08.810 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:08.810 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.810 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.810 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.810 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:08.810 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.811 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:08.811 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.814 +03:00 [INF] Sending file. Request path: 'libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\jzp36yfch8-{0}-evu8y4tl4x-evu8y4tl4x.gz' -2026-01-16 11:19:08.814 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.815 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/bootstrap/css/bootstrap.css - 200 280384 text/css 10.4359ms -2026-01-16 11:19:08.821 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/all.css - null null -2026-01-16 11:19:08.821 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/.well-known/appspecific/com.chrome.devtools.json - null null -2026-01-16 11:19:08.823 +03:00 [DBG] Executing AbpApplicationConfigurationAppService.GetAsync()... -2026-01-16 11:19:08.823 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.823 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.823 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:08.823 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:08.823 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:08.823 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.824 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.824 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:08.824 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:08.824 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:08.824 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2026-01-16 11:19:08.824 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2026-01-16 11:19:08.824 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise/blazorise.css - null null -2026-01-16 11:19:08.825 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2026-01-16 11:19:08.825 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2026-01-16 11:19:08.825 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2026-01-16 11:19:08.825 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.825 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.825 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.825 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:08.825 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:08.825 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:08.825 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.825 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2026-01-16 11:19:08.825 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:08.825 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:08.825 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:08.825 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.825 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.825 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:08.826 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:08.826 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:08.826 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.826 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.826 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.826 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:08.826 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:08.826 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:08.826 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.826 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:08.826 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:08.826 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:08.826 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.Create,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.Update,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.Delete,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.ManagePermissions,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.Create,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.Update,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.Update.ManageRoles,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.Delete,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.ManagePermissions,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:FeatureManagement.ManageHostFeatures,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:SettingManagement.Emailing,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:SettingManagement.Emailing.Test,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:SettingManagement.TimeZone,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.Create,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.Update,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.Delete,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.ManageFeatures,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.ManageConnectionStrings -2026-01-16 11:19:08.826 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.826 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.826 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:08.826 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:08.826 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:08.826 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.Create,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.Update,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.Delete,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.ManagePermissions,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.Create,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.Update,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.Update.ManageRoles,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.Delete,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.ManagePermissions,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:FeatureManagement.ManageHostFeatures,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:SettingManagement.Emailing,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:SettingManagement.Emailing.Test,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:SettingManagement.TimeZone,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.Create,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.Update,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.Delete,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.ManageFeatures,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.ManageConnectionStrings -2026-01-16 11:19:08.827 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles,pn:R,pk:admin,n:AbpIdentity.Roles.Create,pn:R,pk:admin,n:AbpIdentity.Roles.Update,pn:R,pk:admin,n:AbpIdentity.Roles.Delete,pn:R,pk:admin,n:AbpIdentity.Roles.ManagePermissions,pn:R,pk:admin,n:AbpIdentity.Users,pn:R,pk:admin,n:AbpIdentity.Users.Create,pn:R,pk:admin,n:AbpIdentity.Users.Update,pn:R,pk:admin,n:AbpIdentity.Users.Update.ManageRoles,pn:R,pk:admin,n:AbpIdentity.Users.Delete,pn:R,pk:admin,n:AbpIdentity.Users.ManagePermissions,pn:R,pk:admin,n:FeatureManagement.ManageHostFeatures,pn:R,pk:admin,n:SettingManagement.Emailing,pn:R,pk:admin,n:SettingManagement.Emailing.Test,pn:R,pk:admin,n:SettingManagement.TimeZone,pn:R,pk:admin,n:AbpTenantManagement.Tenants,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Create,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Update,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Delete,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageFeatures,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageConnectionStrings -2026-01-16 11:19:08.827 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles,pn:R,pk:admin,n:AbpIdentity.Roles.Create,pn:R,pk:admin,n:AbpIdentity.Roles.Update,pn:R,pk:admin,n:AbpIdentity.Roles.Delete,pn:R,pk:admin,n:AbpIdentity.Roles.ManagePermissions,pn:R,pk:admin,n:AbpIdentity.Users,pn:R,pk:admin,n:AbpIdentity.Users.Create,pn:R,pk:admin,n:AbpIdentity.Users.Update,pn:R,pk:admin,n:AbpIdentity.Users.Update.ManageRoles,pn:R,pk:admin,n:AbpIdentity.Users.Delete,pn:R,pk:admin,n:AbpIdentity.Users.ManagePermissions,pn:R,pk:admin,n:FeatureManagement.ManageHostFeatures,pn:R,pk:admin,n:SettingManagement.Emailing,pn:R,pk:admin,n:SettingManagement.Emailing.Test,pn:R,pk:admin,n:SettingManagement.TimeZone,pn:R,pk:admin,n:AbpTenantManagement.Tenants,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Create,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Update,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Delete,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageFeatures,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageConnectionStrings -2026-01-16 11:19:08.827 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.827 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.827 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:08.827 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.827 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:08.827 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:08.827 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.827 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:08.827 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:08.827 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:08.827 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.827 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:08.827 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:08.827 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.827 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.827 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.827 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:08.827 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.827 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.828 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.828 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:08.828 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.828 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2026-01-16 11:19:08.828 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.829 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:08.829 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:08.829 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.829 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:08.829 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:08.829 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:08.829 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.829 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/.well-known/appspecific/com.chrome.devtools.json - 404 0 null 8.2105ms -2026-01-16 11:19:08.830 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.830 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.830 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.830 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:08.830 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.830 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:08.830 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:08.830 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:08.830 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:08.830 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:08.830 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:08.830 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:08.830 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.830 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.830 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44308/.well-known/appspecific/com.chrome.devtools.json, Response status code: 404 -2026-01-16 11:19:08.830 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.830 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.830 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:08.830 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.830 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.830 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.830 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:08.830 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.830 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2026-01-16 11:19:08.830 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2026-01-16 11:19:08.831 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:08.831 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:08.831 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.831 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.831 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.831 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.831 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.831 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.831 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:08.831 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:08.831 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:08.831 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:08.831 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.831 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:08.831 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:08.831 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:08.831 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:08.831 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.831 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.831 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.831 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:08.831 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:08.831 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:08.831 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:08.831 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.831 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.831 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.831 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.831 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:08.831 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.831 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.831 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:08.831 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.831 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.831 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.832 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:08.832 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.832 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.832 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.832 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:08.832 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:08.832 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:08.832 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\8wavgvnzyu-{0}-zxtkyfow31-zxtkyfow31.gz' -2026-01-16 11:19:08.832 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.832 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.832 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.832 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:08.832 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 554 text/css 6.6727ms -2026-01-16 11:19:08.832 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:08.832 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:08.832 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:08.832 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.832 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2026-01-16 11:19:08.832 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:08.832 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:08.832 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.832 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.832 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.832 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.833 +03:00 [INF] The file _content/Blazorise.Bootstrap5/blazorise.bootstrap5.css was not modified -2026-01-16 11:19:08.833 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.833 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 304 null text/css 8.1691ms -2026-01-16 11:19:08.833 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:08.833 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:08.833 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:08.833 +03:00 [INF] The file _content/Blazorise/blazorise.css was not modified -2026-01-16 11:19:08.833 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:08.833 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.833 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.833 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\obj\Debug\net10.0\compressed\p1g0cu86en-{0}-c25c931rn9-c25c931rn9.gz' -2026-01-16 11:19:08.833 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.833 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.833 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\0vulsgakzi-{0}-2ej0o14t5y-2ej0o14t5y.gz' -2026-01-16 11:19:08.833 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.833 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.833 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1375 text/css 8.7943ms -2026-01-16 11:19:08.833 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:08.833 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:08.833 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/all.css - 200 110162 text/css 12.1951ms -2026-01-16 11:19:08.833 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:08.833 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise/blazorise.css - 304 null text/css 8.9301ms -2026-01-16 11:19:08.833 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2026-01-16 11:19:08.834 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2026-01-16 11:19:08.834 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:08.834 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.834 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.834 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:08.834 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.835 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.835 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.836 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.836 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:08.836 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:08.836 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:08.836 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.836 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.836 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:08.836 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:08.836 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:08.836 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:08.836 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.837 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.837 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.837 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:08.837 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:08.837 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2026-01-16 11:19:08.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:08.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:08.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.837 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.837 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.837 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:08.837 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:08.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:08.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:08.837 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.837 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.837 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:08.837 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:08.837 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:08.837 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:08.837 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:08.837 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.838 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.838 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.838 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.838 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:08.838 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.838 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:08.838 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.838 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:08.838 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:08.838 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:08.838 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.838 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:08.838 +03:00 [INF] The file _content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css was not modified -2026-01-16 11:19:08.838 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.838 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 304 null text/css 7.8888ms -2026-01-16 11:19:08.838 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.BlazoriseUI\obj\Debug\net10.0\compressed\jpg9ocpd9d-{0}-ijisvpsc99-ijisvpsc99.gz' -2026-01-16 11:19:08.838 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.838 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.838 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/blazor-global-styles.css - null null -2026-01-16 11:19:08.838 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1571 text/css 13.1861ms -2026-01-16 11:19:08.838 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css - null null -2026-01-16 11:19:08.839 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.PermissionManagement.Blazor/Volo.Abp.PermissionManagement.Blazor.p33ll9g8os.bundle.scp.css - null null -2026-01-16 11:19:08.839 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:08.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.839 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.839 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:08.839 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:08.839 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:08.839 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.839 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.839 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:08.839 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:08.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.839 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:08.839 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:08.839 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.839 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.839 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:08.839 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:08.839 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:08.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.839 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.839 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.839 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:08.839 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.839 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:08.839 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:08.839 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:08.839 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.839 +03:00 [INF] The file _content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css was not modified -2026-01-16 11:19:08.839 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.840 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.840 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 304 null text/css 11.8322ms -2026-01-16 11:19:08.840 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.840 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.840 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:08.840 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:08.840 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:08.840 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:08.840 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.840 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\dfuwed8qp2-{0}-9fxst9u6yk-9fxst9u6yk.gz' -2026-01-16 11:19:08.840 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.840 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 38549 text/css 15.8684ms -2026-01-16 11:19:08.840 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:08.840 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.840 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.840 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:08.840 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.840 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.841 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.841 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.841 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:08.841 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:08.841 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:08.841 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:08.841 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.841 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.841 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.841 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:08.841 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.842 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\e7v19mgtln-{0}-gf8iscesmb-gf8iscesmb.gz' -2026-01-16 11:19:08.842 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.842 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 31622 text/css 8.2393ms -2026-01-16 11:19:08.842 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.842 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.842 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:08.842 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:08.842 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:08.842 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:08.842 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.842 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:08.842 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.842 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.842 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:08.842 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.843 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.843 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\m3eknofir4-{0}-2s3j35qcl3-2s3j35qcl3.gz' -2026-01-16 11:19:08.843 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.843 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3437 text/css 12.7703ms -2026-01-16 11:19:08.843 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:08.843 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.844 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:08.844 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:08.844 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:08.844 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.844 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:08.844 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:08.844 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.844 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\rsrgg46xj8-{0}-iv1s27gl02-iv1s27gl02.gz' -2026-01-16 11:19:08.844 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.844 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 160 text/css 7.5088ms -2026-01-16 11:19:08.844 +03:00 [INF] Sending file. Request path: 'MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s4s6fpr8ex-{0}-3fgcsmkvgt-3fgcsmkvgt.gz' -2026-01-16 11:19:08.844 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.844 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css - 200 440 text/css 5.9862ms -2026-01-16 11:19:08.845 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.845 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.845 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:08.845 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:08.845 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:08.845 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:08.845 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.845 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.845 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.845 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:08.845 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:08.845 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:08.845 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:08.845 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\4fh1mvs9e3-{0}-xjm6tbvzai-xjm6tbvzai.gz' -2026-01-16 11:19:08.845 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.845 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.845 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.845 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.845 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:08.845 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.845 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 9150 text/css 13.0077ms -2026-01-16 11:19:08.845 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.845 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.845 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:08.845 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.846 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:08.846 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.846 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:08.847 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.847 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.847 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.847 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:08.847 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:08.847 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:08.847 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:08.847 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.847 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.PermissionManagement.Blazor/Volo.Abp.PermissionManagement.Blazor.p33ll9g8os.bundle.scp.css'. Physical path: 'D:\GitHub\abp\modules\permission-management\src\Volo.Abp.PermissionManagement.Blazor\obj\Debug\net10.0\compressed\lxble3k5fs-{0}-p33ll9g8os-p33ll9g8os.gz' -2026-01-16 11:19:08.847 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.847 +03:00 [INF] Sending file. Request path: 'blazor-global-styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\smexgl05zq-{0}-y3n6denrdr-y3n6denrdr.gz' -2026-01-16 11:19:08.847 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.847 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.847 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.847 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.PermissionManagement.Blazor/Volo.Abp.PermissionManagement.Blazor.p33ll9g8os.bundle.scp.css - 200 1107 text/css 8.8502ms -2026-01-16 11:19:08.847 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:08.847 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.848 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/blazor-global-styles.css - 200 641 text/css 9.2903ms -2026-01-16 11:19:08.849 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:08.849 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.849 +03:00 [INF] The file _content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css was not modified -2026-01-16 11:19:08.849 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.850 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 304 null text/css 16.2518ms -2026-01-16 11:19:08.850 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.850 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.850 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:08.850 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:08.850 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:08.850 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:08.850 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.850 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:08.850 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:08.851 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:08.851 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:08.853 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:08.853 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.854 +03:00 [INF] Sending file. Request path: '_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\3wqf99oqz3-{0}-yj3izxkafq-yj3izxkafq.gz' -2026-01-16 11:19:08.854 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:08.855 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11514 text/css 29.6126ms -2026-01-16 11:19:08.881 +03:00 [DBG] Executed AbpApplicationConfigurationAppService.GetAsync(). -2026-01-16 11:19:08.893 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto'. -2026-01-16 11:19:08.930 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc) in 132.2828ms -2026-01-16 11:19:08.930 +03:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' -2026-01-16 11:19:08.931 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/api/abp/application-configuration?IncludeLocalizationResources=False&api-version=1.0 - 200 null application/json; charset=utf-8 147.8026ms -2026-01-16 11:19:09.330 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.js.map - null null -2026-01-16 11:19:09.330 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - null null -2026-01-16 11:19:09.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:09.331 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:09.332 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:09.332 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:09.332 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:09.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:09.332 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:09.332 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:09.332 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:09.332 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:09.352 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:09.352 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:09.352 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:09.352 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:09.352 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:09.352 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:09.352 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:09.352 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:09.352 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:09.352 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:09.352 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:09.352 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:09.352 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:09.352 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:09.352 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:09.352 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:09.352 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:09.352 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:09.352 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:09.352 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:09.352 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:09.352 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:09.353 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:09.353 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:09.354 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:09.354 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:09.365 +03:00 [INF] Sending file. Request path: '_framework/dotnet.runtime.js.map'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xqmdb6twc8-{0}-efgkpxn596-efgkpxn596.gz' -2026-01-16 11:19:09.365 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:09.365 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.js.map - 200 89353 text/plain 35.021ms -2026-01-16 11:19:09.386 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\6wsbzexmwr-{0}-21fyre54ln-21fyre54ln.gz' -2026-01-16 11:19:09.386 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:09.387 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - 200 427735 text/plain 56.392ms -2026-01-16 11:19:09.589 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/bootstrap/css/bootstrap.css.map - null null -2026-01-16 11:19:09.590 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:09.590 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:09.590 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:09.590 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:09.590 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:09.594 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:09.594 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:09.594 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:09.594 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:09.594 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:09.594 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:09.594 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:09.594 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:09.594 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:09.594 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:09.594 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:09.595 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:09.596 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:09.613 +03:00 [INF] Sending file. Request path: 'libs/bootstrap/css/bootstrap.css.map'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\ijjtzhju6q-{0}-b59oeg5zbp-b59oeg5zbp.gz' -2026-01-16 11:19:09.613 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:09.613 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/bootstrap/css/bootstrap.css.map - 200 681071 text/plain 23.981ms -2026-01-16 11:19:10.351 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/api/abp/application-localization?CultureName=en-GB&OnlyDynamics=True&api-version=1.0 - null null -2026-01-16 11:19:10.356 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:10.356 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:10.357 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:10.357 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:10.357 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:10.359 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:10.359 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:10.359 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:10.359 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:10.359 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:10.359 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:10.360 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:10.360 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:10.360 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:10.360 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:10.360 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:10.360 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:10.361 +03:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationLocalizationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' -2026-01-16 11:19:10.368 +03:00 [INF] Route matched with {area = "abp", action = "Get", controller = "AbpApplicationLocalization", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationDto] GetAsync(Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationRequestDto) on controller Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationLocalizationController (Volo.Abp.AspNetCore.Mvc). -2026-01-16 11:19:10.385 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationDto'. -2026-01-16 11:19:10.387 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationLocalizationController.GetAsync (Volo.Abp.AspNetCore.Mvc) in 19.2514ms -2026-01-16 11:19:10.387 +03:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationLocalizationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' -2026-01-16 11:19:10.387 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/api/abp/application-localization?CultureName=en-GB&OnlyDynamics=True&api-version=1.0 - 200 null application/json; charset=utf-8 36.0912ms -2026-01-16 11:19:10.692 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/resource-collection.LYJHD.js - null null -2026-01-16 11:19:10.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:10.693 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:10.693 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:10.693 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:10.693 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:10.696 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:10.696 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:10.696 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:10.696 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:10.696 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:10.696 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:10.696 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:10.696 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:10.696 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:10.696 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:10.696 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:10.697 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:10.697 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:10.700 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:10.700 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/resource-collection.LYJHD.js - 200 83584 application/javascript 8.6425ms -2026-01-16 11:19:13.531 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2026-01-16 11:19:13.531 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/bootstrap/css/bootstrap.css - null null -2026-01-16 11:19:13.531 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/all.css - null null -2026-01-16 11:19:13.531 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2026-01-16 11:19:13.531 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.531 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.531 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.531 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.531 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.531 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.531 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:13.532 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:13.532 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:13.532 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:13.532 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:13.532 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:13.532 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:13.532 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:13.532 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:13.532 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.532 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.532 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:13.532 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:13.532 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:13.534 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.535 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.535 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:13.535 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.535 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.535 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:13.535 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:13.535 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:13.535 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:13.535 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:13.535 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:13.535 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:13.535 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.535 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.535 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.535 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.535 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.535 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:13.535 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:13.535 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.535 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:13.535 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:13.535 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:13.535 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:13.535 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:13.535 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:13.535 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.535 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.535 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.535 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.535 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.535 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.535 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:13.535 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:13.535 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.535 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.535 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.535 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.535 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:13.535 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.535 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.535 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.535 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:13.535 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.535 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise/blazorise.css - null null -2026-01-16 11:19:13.536 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:13.536 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:13.536 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:13.536 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:13.536 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.536 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.536 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.536 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.536 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2026-01-16 11:19:13.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.536 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\obj\Debug\net10.0\compressed\p1g0cu86en-{0}-c25c931rn9-c25c931rn9.gz' -2026-01-16 11:19:13.536 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:13.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:13.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:13.536 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1375 text/css 5.3141ms -2026-01-16 11:19:13.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.537 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.537 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:13.537 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:13.537 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\dfuwed8qp2-{0}-9fxst9u6yk-9fxst9u6yk.gz' -2026-01-16 11:19:13.537 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:13.537 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.537 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 38549 text/css 6.3692ms -2026-01-16 11:19:13.538 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\0vulsgakzi-{0}-2ej0o14t5y-2ej0o14t5y.gz' -2026-01-16 11:19:13.538 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.538 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/all.css - 200 110162 text/css 7.4366ms -2026-01-16 11:19:13.539 +03:00 [INF] Sending file. Request path: 'libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\jzp36yfch8-{0}-evu8y4tl4x-evu8y4tl4x.gz' -2026-01-16 11:19:13.539 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.539 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/bootstrap/css/bootstrap.css - 200 280384 text/css 8.7637ms -2026-01-16 11:19:13.540 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.540 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.540 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:13.540 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:13.540 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:13.540 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:13.540 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.540 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.540 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.540 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:13.540 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:13.540 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:13.540 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:13.540 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.540 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.540 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.540 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:13.540 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.540 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.540 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.540 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:13.540 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.541 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:13.541 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:13.542 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.542 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.543 +03:00 [INF] Sending file. Request path: '_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\e387mq197c-{0}-6u1si05klx-6u1si05klx.gz' -2026-01-16 11:19:13.543 +03:00 [INF] Sending file. Request path: '_content/Blazorise/blazorise.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\gaui1z37so-{0}-mpy3qnus3c-mpy3qnus3c.gz' -2026-01-16 11:19:13.543 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.543 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.543 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 200 11309 text/css 6.6318ms -2026-01-16 11:19:13.543 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise/blazorise.css - 200 9707 text/css 7.2614ms -2026-01-16 11:19:13.560 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2026-01-16 11:19:13.560 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2026-01-16 11:19:13.560 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2026-01-16 11:19:13.560 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2026-01-16 11:19:13.560 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2026-01-16 11:19:13.560 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2026-01-16 11:19:13.561 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2026-01-16 11:19:13.561 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2026-01-16 11:19:13.561 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2026-01-16 11:19:13.561 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2026-01-16 11:19:13.561 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/blazor-global-styles.css - null null -2026-01-16 11:19:13.561 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/global.css - null null -2026-01-16 11:19:13.561 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css - null null -2026-01-16 11:19:13.561 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/main.css - null null -2026-01-16 11:19:13.561 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.561 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.561 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.561 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.561 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.561 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.561 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.561 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.561 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:13.561 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:13.561 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:13.561 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:13.561 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:13.561 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:13.561 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:13.561 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:13.561 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:13.561 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:13.561 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.561 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.561 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:13.561 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:13.561 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:13.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:13.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:13.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:13.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:13.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:13.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:13.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:13.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:13.564 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.564 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.564 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:13.564 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:13.564 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:13.565 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.565 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.565 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.565 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.565 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:13.565 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:13.565 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:13.565 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:13.565 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:13.565 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:13.565 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:13.565 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:13.565 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.565 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.565 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.565 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.565 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:13.565 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.565 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.565 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.565 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:13.565 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.565 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.565 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.565 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.565 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.565 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:13.565 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:13.565 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:13.565 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:13.565 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:13.565 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.566 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:13.566 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:13.566 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:13.566 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.566 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.566 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.566 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.566 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:13.566 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:13.566 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.566 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:13.566 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:13.566 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:13.566 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.566 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.566 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.566 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.566 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:13.566 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:13.566 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:13.566 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.566 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:13.566 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.566 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.566 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:13.566 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.566 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.566 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.566 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:13.566 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:13.566 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:13.566 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:13.566 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.566 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:13.566 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.566 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.566 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.566 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.566 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:13.566 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.566 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.566 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:13.566 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.566 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.566 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.566 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:13.566 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.566 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.566 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.567 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:13.567 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:13.567 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:13.567 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:13.567 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.567 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.567 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.567 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.567 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:13.567 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:13.567 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:13.567 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:13.567 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.567 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.567 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:13.567 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:13.567 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:13.567 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:13.567 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.567 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.567 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:13.567 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.567 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.567 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:13.567 +03:00 [INF] Sending file. Request path: 'MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s4s6fpr8ex-{0}-3fgcsmkvgt-3fgcsmkvgt.gz' -2026-01-16 11:19:13.567 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:13.567 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.567 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:13.567 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.567 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css - 200 440 text/css 6.773ms -2026-01-16 11:19:13.567 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.568 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:13.568 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.568 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:13.568 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.568 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.BlazoriseUI\obj\Debug\net10.0\compressed\jpg9ocpd9d-{0}-ijisvpsc99-ijisvpsc99.gz' -2026-01-16 11:19:13.568 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.568 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.568 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1571 text/css 8.012ms -2026-01-16 11:19:13.568 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\m3eknofir4-{0}-2s3j35qcl3-2s3j35qcl3.gz' -2026-01-16 11:19:13.568 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.569 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3437 text/css 8.1412ms -2026-01-16 11:19:13.569 +03:00 [INF] Sending file. Request path: '_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\3wqf99oqz3-{0}-yj3izxkafq-yj3izxkafq.gz' -2026-01-16 11:19:13.569 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\gc6nt57s39-{0}-j9nrdmskni-j9nrdmskni.gz' -2026-01-16 11:19:13.569 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.569 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.569 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 200 10555 text/css 8.5586ms -2026-01-16 11:19:13.569 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11514 text/css 8.6444ms -2026-01-16 11:19:13.569 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\4fh1mvs9e3-{0}-xjm6tbvzai-xjm6tbvzai.gz' -2026-01-16 11:19:13.569 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.569 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\8wavgvnzyu-{0}-zxtkyfow31-zxtkyfow31.gz' -2026-01-16 11:19:13.569 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.569 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 554 text/css 8.9682ms -2026-01-16 11:19:13.569 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\7rs73t1cee-{0}-3rszlhur0z-3rszlhur0z.gz' -2026-01-16 11:19:13.569 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.569 +03:00 [INF] Sending file. Request path: '/global.css'. Physical path: 'N/A' -2026-01-16 11:19:13.569 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/global.css - 200 735198 text/css 8.7613ms -2026-01-16 11:19:13.570 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 9150 text/css 8.9898ms -2026-01-16 11:19:13.570 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 200 38298 text/css 8.9381ms -2026-01-16 11:19:13.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:13.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:13.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:13.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:13.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:13.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:13.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:13.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:13.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:13.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:13.571 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.571 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.571 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:13.571 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:13.571 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:13.571 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:13.571 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.572 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.572 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.572 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:13.572 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.572 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.572 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.572 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:13.572 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:13.572 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:13.572 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:13.572 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.572 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.573 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.573 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:13.573 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.573 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:13.573 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.573 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.573 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:13.573 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:13.573 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:13.573 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:13.573 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.573 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.573 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.573 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.573 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:13.573 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.573 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.573 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.573 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:13.573 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:13.573 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:13.573 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:13.573 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.574 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.574 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.574 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:13.574 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.574 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.574 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:13.574 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.574 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:13.574 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:13.574 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:13.574 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:13.574 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.574 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.574 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:13.574 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:13.574 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:13.574 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:13.574 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:13.574 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.574 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\e7v19mgtln-{0}-gf8iscesmb-gf8iscesmb.gz' -2026-01-16 11:19:13.574 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.575 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:13.575 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\vh1p5m06vo-{0}-v8qf0vxgcf-v8qf0vxgcf.gz' -2026-01-16 11:19:13.575 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.575 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 31622 text/css 14.0314ms -2026-01-16 11:19:13.575 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.575 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 200 2073 text/css 14.3689ms -2026-01-16 11:19:13.575 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:13.575 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\rsrgg46xj8-{0}-iv1s27gl02-iv1s27gl02.gz' -2026-01-16 11:19:13.575 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.575 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.575 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 160 text/css 14.5938ms -2026-01-16 11:19:13.576 +03:00 [INF] Sending file. Request path: 'blazor-global-styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\smexgl05zq-{0}-y3n6denrdr-y3n6denrdr.gz' -2026-01-16 11:19:13.576 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.576 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/blazor-global-styles.css - 200 641 text/css 15.2541ms -2026-01-16 11:19:13.578 +03:00 [INF] Sending file. Request path: 'main.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\x53nh65uyh-{0}-16t6mswghy-16t6mswghy.gz' -2026-01-16 11:19:13.579 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:13.579 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/main.css - 200 1276 text/css 17.8431ms -2026-01-16 11:19:15.979 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/global.js - null null -2026-01-16 11:19:15.981 +03:00 [INF] Sending file. Request path: '/global.js'. Physical path: 'N/A' -2026-01-16 11:19:15.981 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/global.js - 200 461744 application/javascript 2.1936ms -2026-01-16 11:19:16.047 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/img-support.png - null null -2026-01-16 11:19:16.047 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/bg-01.png - null null -2026-01-16 11:19:16.047 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/img-blog.png - null null -2026-01-16 11:19:16.048 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.048 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.048 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.048 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.048 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.048 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.048 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:16.048 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:16.048 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:16.048 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:16.048 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:16.048 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:16.048 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:16.048 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:16.048 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:16.051 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.051 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.051 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.051 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.051 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.051 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.051 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:16.051 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:16.051 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:16.051 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:16.051 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:16.051 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:16.051 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:16.051 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:16.051 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:16.051 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:16.051 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:16.051 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:16.051 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.051 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.051 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.051 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.051 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.051 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.051 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.051 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:16.051 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.051 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:16.051 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.051 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.051 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.051 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:16.051 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.052 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:16.052 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:16.052 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:16.052 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:16.052 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:16.052 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:16.054 +03:00 [INF] Sending file. Request path: 'images/getting-started/img-blog.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\img-blog.png' -2026-01-16 11:19:16.054 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:16.054 +03:00 [INF] Sending file. Request path: 'images/getting-started/bg-01.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\bg-01.png' -2026-01-16 11:19:16.054 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:16.054 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/img-blog.png - 200 30220 image/png 6.7905ms -2026-01-16 11:19:16.054 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/bg-01.png - 200 22111 image/png 6.885ms -2026-01-16 11:19:16.054 +03:00 [INF] Sending file. Request path: 'images/getting-started/img-support.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\img-support.png' -2026-01-16 11:19:16.054 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:16.054 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/img-support.png - 200 23461 image/png 7.0422ms -2026-01-16 11:19:16.126 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2026-01-16 11:19:16.126 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.126 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.126 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:16.127 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:16.127 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:16.131 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 - null null -2026-01-16 11:19:16.131 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.131 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.131 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:16.131 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:16.131 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:16.131 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:16.131 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.132 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.132 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.132 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.132 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:16.132 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.132 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:16.132 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:16.132 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:16.134 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:16.134 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2 - null null -2026-01-16 11:19:16.134 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:16.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.135 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.135 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:16.135 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:16.135 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:16.137 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.137 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.137 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:16.137 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:16.137 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:16.137 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:16.137 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.138 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.138 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.138 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:16.138 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.138 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' -2026-01-16 11:19:16.138 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:16.139 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 113152 font/woff2 12.8743ms -2026-01-16 11:19:16.139 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:16.139 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:16.139 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.139 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.139 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:16.139 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:16.139 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:16.139 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:16.139 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.140 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.140 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.140 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:16.140 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.141 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:16.141 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:16.142 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-regular-400.woff2' -2026-01-16 11:19:16.142 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:16.142 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-brands-400.woff2' -2026-01-16 11:19:16.142 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:16.142 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2 - 200 18988 font/woff2 8.3963ms -2026-01-16 11:19:16.142 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 - 200 101224 font/woff2 10.8999ms -2026-01-16 11:19:16.258 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/bootstrap/css/bootstrap.css.map - null null -2026-01-16 11:19:16.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.259 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.259 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:16.259 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:16.259 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:16.263 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.263 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.263 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:16.263 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:16.263 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:16.263 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:16.263 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.263 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.263 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.263 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:16.263 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.264 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:16.264 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:16.271 +03:00 [INF] Sending file. Request path: 'libs/bootstrap/css/bootstrap.css.map'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\ijjtzhju6q-{0}-b59oeg5zbp-b59oeg5zbp.gz' -2026-01-16 11:19:16.271 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:16.271 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/bootstrap/css/bootstrap.css.map - 200 681071 text/plain 13.2501ms -2026-01-16 11:19:16.313 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/libs/fontawesome/webfonts/fa-brands-400.woff2 - null null -2026-01-16 11:19:16.313 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/libs/fontawesome/webfonts/fa-solid-900.woff2 - null null -2026-01-16 11:19:16.314 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.314 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.314 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.314 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.314 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:16.314 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:16.314 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:16.314 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:16.314 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:16.314 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:16.316 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2026-01-16 11:19:16.316 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/libs/fontawesome/webfonts/fa-regular-400.woff2 - null null -2026-01-16 11:19:16.317 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.317 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.317 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:16.317 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:16.317 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:16.317 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.317 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.317 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:16.317 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:16.317 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:16.317 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:16.317 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.317 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.317 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.317 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:16.317 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:16.317 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:16.317 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:16.317 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.318 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.318 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.318 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:16.318 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.318 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.318 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.318 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:16.318 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.319 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:16.319 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:16.319 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:16.319 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:16.321 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.321 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.321 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:16.321 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:16.321 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:16.321 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:16.321 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.321 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.321 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.321 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:16.321 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.322 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:16.322 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:16.324 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2'. Physical path: 'C:\Users\ismai\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\5.0.0\staticwebassets\side-menu\libs\bootstrap-icons\font\fonts\bootstrap-icons.woff2' -2026-01-16 11:19:16.324 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:16.324 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 8.1561ms -2026-01-16 11:19:16.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.331 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.331 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:16.331 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:16.331 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:16.334 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.334 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.334 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:16.334 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:16.334 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:16.334 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:16.334 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.335 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.335 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.335 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:16.335 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.336 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:16.336 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:16.344 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/libs/fontawesome/webfonts/fa-brands-400.woff2'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.WebAssembly.Theming\wwwroot\libs\fontawesome\webfonts\fa-brands-400.woff2' -2026-01-16 11:19:16.344 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:16.344 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/libs/fontawesome/webfonts/fa-brands-400.woff2 - 200 117372 font/woff2 31.3878ms -2026-01-16 11:19:16.348 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/libs/fontawesome/webfonts/fa-solid-900.woff2'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.WebAssembly.Theming\wwwroot\libs\fontawesome\webfonts\fa-solid-900.woff2' -2026-01-16 11:19:16.348 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:16.349 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/libs/fontawesome/webfonts/fa-solid-900.woff2 - 200 156496 font/woff2 35.8176ms -2026-01-16 11:19:16.358 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/libs/fontawesome/webfonts/fa-regular-400.woff2'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.WebAssembly.Theming\wwwroot\libs\fontawesome\webfonts\fa-regular-400.woff2' -2026-01-16 11:19:16.358 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:16.358 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/libs/fontawesome/webfonts/fa-regular-400.woff2 - 200 25452 font/woff2 42.3754ms -2026-01-16 11:19:16.382 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/bootstrap.min.css.map - null null -2026-01-16 11:19:16.383 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.383 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.383 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:16.383 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:16.383 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:16.386 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.386 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.386 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:16.386 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:16.386 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:16.386 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:16.386 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.387 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.387 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.387 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:16.387 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.388 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:16.389 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/bootstrap.min.css.map - 404 0 null 7.129ms -2026-01-16 11:19:16.389 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44308/bootstrap.min.css.map, Response status code: 404 -2026-01-16 11:19:16.392 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.PermissionManagement.Blazor/Volo.Abp.PermissionManagement.Blazor.p33ll9g8os.bundle.scp.css - null null -2026-01-16 11:19:16.393 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.393 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.394 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:16.394 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:16.394 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:16.397 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.397 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.397 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:16.397 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:16.397 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:16.397 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:16.397 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.397 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.397 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.397 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:16.397 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.398 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:16.398 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:16.399 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.PermissionManagement.Blazor/Volo.Abp.PermissionManagement.Blazor.p33ll9g8os.bundle.scp.css'. Physical path: 'D:\GitHub\abp\modules\permission-management\src\Volo.Abp.PermissionManagement.Blazor\obj\Debug\net10.0\compressed\lxble3k5fs-{0}-p33ll9g8os-p33ll9g8os.gz' -2026-01-16 11:19:16.399 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:16.399 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.PermissionManagement.Blazor/Volo.Abp.PermissionManagement.Blazor.p33ll9g8os.bundle.scp.css - 200 1107 text/css 6.3181ms -2026-01-16 11:19:16.643 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2026-01-16 11:19:16.645 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.645 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.645 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:16.645 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:16.645 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:16.645 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2026-01-16 11:19:16.646 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2026-01-16 11:19:16.646 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2026-01-16 11:19:16.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.646 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.646 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:16.646 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:16.646 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:16.647 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.647 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.647 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.647 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.647 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:16.647 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:16.647 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:16.647 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:16.647 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:16.647 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:16.650 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2026-01-16 11:19:16.650 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.650 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.650 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:16.650 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:16.650 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:16.650 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:16.650 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.650 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.650 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.650 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:16.650 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.651 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.651 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.651 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:16.651 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:16.651 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:16.651 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:16.651 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.651 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.651 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.651 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:16.651 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.651 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:16.651 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:16.653 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:16.653 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:16.653 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.653 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:16.654 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:16.654 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:16.654 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:16.654 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.654 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.654 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:16.654 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:16.654 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\m3eknofir4-{0}-2s3j35qcl3-2s3j35qcl3.gz' -2026-01-16 11:19:16.654 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:16.654 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:16.654 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:16.654 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.654 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3437 text/css 11.1625ms -2026-01-16 11:19:16.654 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\4fh1mvs9e3-{0}-xjm6tbvzai-xjm6tbvzai.gz' -2026-01-16 11:19:16.654 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:16.654 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 9150 text/css 8.9692ms -2026-01-16 11:19:16.654 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.654 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.654 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:16.654 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.656 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:16.656 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:16.658 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\e7v19mgtln-{0}-gf8iscesmb-gf8iscesmb.gz' -2026-01-16 11:19:16.658 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:16.658 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 31622 text/css 11.7777ms -2026-01-16 11:19:16.659 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.659 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.659 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:16.659 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:16.659 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:16.659 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:16.659 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.660 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.660 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.660 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:16.660 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.660 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.660 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.660 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:16.660 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:16.660 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:16.660 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:16.660 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.660 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:16.660 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:16.660 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:16.660 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:16.662 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:16.662 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:16.662 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:16.663 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:16.663 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\rsrgg46xj8-{0}-iv1s27gl02-iv1s27gl02.gz' -2026-01-16 11:19:16.663 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:16.663 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 160 text/css 13.5374ms -2026-01-16 11:19:16.664 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\7rs73t1cee-{0}-3rszlhur0z-3rszlhur0z.gz' -2026-01-16 11:19:16.664 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:16.664 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 200 38298 text/css 18.321ms -2026-01-16 11:19:17.084 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/global.css - null null -2026-01-16 11:19:17.084 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/main.css - null null -2026-01-16 11:19:17.084 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/blazor-global-styles.css - null null -2026-01-16 11:19:17.085 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:17.085 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:17.085 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:17.085 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:17.085 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:17.085 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:17.085 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:17.085 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:17.085 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:17.085 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:17.088 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:17.088 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:17.088 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:17.088 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:17.088 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:17.088 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:17.088 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:17.088 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:17.088 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:17.088 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:17.088 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:17.088 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:17.088 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:17.088 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:17.088 +03:00 [INF] Sending file. Request path: '/global.css'. Physical path: 'N/A' -2026-01-16 11:19:17.088 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/global.css - 200 735198 text/css 4.4168ms -2026-01-16 11:19:17.089 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:17.089 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:17.089 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:17.089 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:17.089 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:17.089 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:17.089 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:17.089 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:17.090 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:17.090 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:17.090 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:17.090 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:17.090 +03:00 [INF] Sending file. Request path: 'main.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\x53nh65uyh-{0}-16t6mswghy-16t6mswghy.gz' -2026-01-16 11:19:17.090 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:17.091 +03:00 [INF] Sending file. Request path: 'blazor-global-styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\smexgl05zq-{0}-y3n6denrdr-y3n6denrdr.gz' -2026-01-16 11:19:17.091 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:17.091 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/blazor-global-styles.css - 200 641 text/css 6.5462ms -2026-01-16 11:19:17.091 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/main.css - 200 1276 text/css 6.57ms -2026-01-16 11:19:17.141 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/libs/fontawesome/webfonts/fa-solid-900.woff2 - null null -2026-01-16 11:19:17.141 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/libs/fontawesome/webfonts/fa-brands-400.woff2 - null null -2026-01-16 11:19:17.141 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2026-01-16 11:19:17.142 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:17.142 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:17.142 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:17.142 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:17.142 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:17.142 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:17.142 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:17.142 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:17.142 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:17.142 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:17.142 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:17.142 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:17.142 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:17.142 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:17.142 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:17.145 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:17.145 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:17.145 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:17.145 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:17.145 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:17.145 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:17.145 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:17.145 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:17.145 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:17.145 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:17.145 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:17.145 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:17.145 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:17.145 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:17.145 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:17.145 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:17.145 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:17.145 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:17.145 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:17.145 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:17.145 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:17.145 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:17.145 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:17.145 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:17.145 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:17.145 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:17.145 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:17.145 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:17.145 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:17.145 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:17.145 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:17.145 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:17.145 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:17.145 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:17.146 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:17.146 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:17.146 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:17.146 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:17.146 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:17.147 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2'. Physical path: 'C:\Users\ismai\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\5.0.0\staticwebassets\side-menu\libs\bootstrap-icons\font\fonts\bootstrap-icons.woff2' -2026-01-16 11:19:17.147 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:17.147 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 5.9633ms -2026-01-16 11:19:17.148 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/libs/fontawesome/webfonts/fa-brands-400.woff2'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.WebAssembly.Theming\wwwroot\libs\fontawesome\webfonts\fa-brands-400.woff2' -2026-01-16 11:19:17.148 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:17.148 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/libs/fontawesome/webfonts/fa-brands-400.woff2 - 200 117372 font/woff2 7.058ms -2026-01-16 11:19:17.149 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/libs/fontawesome/webfonts/fa-solid-900.woff2'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.WebAssembly.Theming\wwwroot\libs\fontawesome\webfonts\fa-solid-900.woff2' -2026-01-16 11:19:17.149 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:17.149 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/libs/fontawesome/webfonts/fa-solid-900.woff2 - 200 156496 font/woff2 7.4619ms -2026-01-16 11:19:17.192 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/bootstrap.min.css.map - null null -2026-01-16 11:19:17.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:17.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:17.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:17.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:17.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:17.196 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:17.196 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:17.196 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:17.196 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:17.196 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:17.196 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:17.196 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:17.196 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:17.196 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:17.196 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:17.196 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:17.197 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:17.197 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/bootstrap.min.css.map - 404 0 null 5.5021ms -2026-01-16 11:19:17.197 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44308/bootstrap.min.css.map, Response status code: 404 -2026-01-16 11:19:17.711 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/libs/fontawesome/webfonts/fa-regular-400.woff2 - null null -2026-01-16 11:19:17.712 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:17.712 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:17.712 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:17.712 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:17.712 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:17.714 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:17.714 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:17.714 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:17.714 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:17.714 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:17.714 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:17.714 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:17.715 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:17.715 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:17.715 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:17.715 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:17.715 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:17.715 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:17.716 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/libs/fontawesome/webfonts/fa-regular-400.woff2'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.WebAssembly.Theming\wwwroot\libs\fontawesome\webfonts\fa-regular-400.woff2' -2026-01-16 11:19:17.716 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:17.717 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/libs/fontawesome/webfonts/fa-regular-400.woff2 - 200 25452 font/woff2 5.8521ms -2026-01-16 11:19:20.674 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise/utilities.js?v=1.8.8.0 - null null -2026-01-16 11:19:20.674 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:20.675 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:20.675 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:20.675 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:20.675 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:20.677 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:20.677 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:20.677 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:20.678 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:20.678 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:20.678 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:20.678 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:20.678 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:20.678 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:20.678 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:20.678 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:20.678 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:20.679 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:20.680 +03:00 [INF] Sending file. Request path: '_content/Blazorise/utilities.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\yr1uxgfav1-{0}-uy19w6wx8s-uy19w6wx8s.gz' -2026-01-16 11:19:20.680 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:20.680 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise/utilities.js?v=1.8.8.0 - 200 14853 text/javascript 6.3148ms -2026-01-16 11:19:20.696 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise/button.js?v=1.8.8.0 - null null -2026-01-16 11:19:20.696 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:20.696 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:20.696 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:20.697 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:20.697 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:20.699 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:20.699 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:20.699 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:20.699 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:20.699 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:20.699 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:20.699 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:20.699 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:20.699 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:20.699 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:20.699 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:20.700 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:20.700 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:20.711 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise/textEdit.js?v=1.8.8.0 - null null -2026-01-16 11:19:20.712 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:20.712 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:20.712 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:20.712 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:20.712 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:20.715 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:20.715 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:20.715 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:20.715 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:20.715 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:20.715 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:20.715 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:20.715 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:20.715 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:20.715 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:20.715 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:20.716 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:20.717 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:20.734 +03:00 [INF] Sending file. Request path: '_content/Blazorise/button.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\c6dzolm4jo-{0}-eyip6iwp8b-eyip6iwp8b.gz' -2026-01-16 11:19:20.734 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:20.734 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise/button.js?v=1.8.8.0 - 200 979 text/javascript 38.2281ms -2026-01-16 11:19:20.754 +03:00 [INF] Sending file. Request path: '_content/Blazorise/textEdit.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\ierbjfsdxp-{0}-wobh6zvfxh-wobh6zvfxh.gz' -2026-01-16 11:19:20.754 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:20.754 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise/textEdit.js?v=1.8.8.0 - 200 1752 text/javascript 43.2932ms -2026-01-16 11:19:20.799 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise/vendors/sha512.js?v=1.8.8.0 - null null -2026-01-16 11:19:20.799 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise/vendors/jsencrypt.js?v=1.8.8.0 - null null -2026-01-16 11:19:20.799 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise/validators/NumericMaskValidator.js?v=1.8.8.0 - null null -2026-01-16 11:19:20.799 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise/validators/DateTimeMaskValidator.js?v=1.8.8.0 - null null -2026-01-16 11:19:20.800 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise/validators/RegExMaskValidator.js?v=1.8.8.0 - null null -2026-01-16 11:19:20.800 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:20.800 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:20.800 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise/validators/NoValidator.js?v=1.8.8.0 - null null -2026-01-16 11:19:20.800 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:20.800 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:20.801 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:20.801 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:20.801 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:20.801 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:20.801 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:20.801 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:20.803 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:20.803 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:20.804 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:20.804 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:20.804 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:20.804 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:20.804 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:20.804 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:20.804 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:20.804 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:20.804 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:20.804 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:20.804 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:20.804 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:20.804 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:20.804 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:20.804 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:20.804 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:20.804 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:20.804 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:20.804 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:20.804 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:20.805 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:20.805 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:20.805 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:20.805 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:20.808 +03:00 [INF] Sending file. Request path: '_content/Blazorise/validators/DateTimeMaskValidator.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\3vtyy7ztlp-{0}-9sjnuohl93-9sjnuohl93.gz' -2026-01-16 11:19:20.808 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:20.808 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise/validators/DateTimeMaskValidator.js?v=1.8.8.0 - 200 315 text/javascript 8.7404ms -2026-01-16 11:19:20.808 +03:00 [INF] Sending file. Request path: '_content/Blazorise/validators/NumericMaskValidator.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\rd6qfbgcha-{0}-rdf588x9o3-rdf588x9o3.gz' -2026-01-16 11:19:20.808 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:20.808 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:20.808 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:20.808 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:20.808 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:20.808 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:20.808 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:20.808 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:20.808 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:20.808 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:20.808 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:20.809 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise/validators/NumericMaskValidator.js?v=1.8.8.0 - 200 1718 text/javascript 9.5999ms -2026-01-16 11:19:20.812 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:20.812 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:20.812 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:20.812 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:20.812 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:20.812 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:20.812 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:20.812 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:20.812 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:20.812 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:20.812 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:20.812 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:20.812 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:20.812 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:20.812 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:20.812 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:20.812 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:20.812 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:20.812 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:20.812 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:20.812 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:20.812 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:20.813 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:20.813 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:20.813 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:20.813 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:20.814 +03:00 [INF] Sending file. Request path: '_content/Blazorise/validators/NoValidator.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\xkzm15a7rz-{0}-qgmopykj85-qgmopykj85.gz' -2026-01-16 11:19:20.814 +03:00 [INF] Sending file. Request path: '_content/Blazorise/validators/RegExMaskValidator.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\wt9grvv92r-{0}-4rmwhz9udx-4rmwhz9udx.gz' -2026-01-16 11:19:20.814 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:20.814 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:20.814 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise/validators/RegExMaskValidator.js?v=1.8.8.0 - 200 272 text/javascript 14.038ms -2026-01-16 11:19:20.814 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise/validators/NoValidator.js?v=1.8.8.0 - 200 108 text/javascript 14.0093ms -2026-01-16 11:19:20.826 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:20.826 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:20.826 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:20.826 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:20.826 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:20.826 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:20.826 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:20.826 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:20.826 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:20.826 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:20.829 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:20.829 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:20.829 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:20.829 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:20.829 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:20.829 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:20.829 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:20.829 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:20.829 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:20.829 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:20.829 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:20.829 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:20.829 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:20.829 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:20.829 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:20.829 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:20.829 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:20.829 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:20.829 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:20.829 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:20.829 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:20.829 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:20.830 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:20.830 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:20.830 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:20.830 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:20.831 +03:00 [INF] Sending file. Request path: '_content/Blazorise/vendors/jsencrypt.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\c4jog3xkz4-{0}-pybrzh7rdh-pybrzh7rdh.gz' -2026-01-16 11:19:20.831 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:20.832 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise/vendors/jsencrypt.js?v=1.8.8.0 - 200 55472 text/javascript 32.2925ms -2026-01-16 11:19:20.832 +03:00 [INF] Sending file. Request path: '_content/Blazorise/vendors/sha512.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\s7z50pshxl-{0}-luevd9t85z-luevd9t85z.gz' -2026-01-16 11:19:20.832 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:20.832 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise/vendors/sha512.js?v=1.8.8.0 - 200 17932 text/javascript 32.4518ms -2026-01-16 11:19:20.939 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise.DataGrid/datagrid.js?v=1.8.8.0 - null null -2026-01-16 11:19:20.940 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:20.940 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:20.940 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:20.940 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:20.940 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:20.943 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:20.943 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:20.943 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:20.943 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:20.943 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:20.943 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:20.943 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:20.943 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:20.943 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:20.943 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:20.943 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:20.944 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:20.944 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:20.946 +03:00 [INF] Sending file. Request path: '_content/Blazorise.DataGrid/datagrid.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\j2ds3yafnj-{0}-wpmvik4don-wpmvik4don.gz' -2026-01-16 11:19:20.946 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:20.946 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise.DataGrid/datagrid.js?v=1.8.8.0 - 200 2255 text/javascript 7.259ms -2026-01-16 11:19:21.072 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/api/multi-tenancy/tenants?Sorting=&SkipCount=0&MaxResultCount=10&api-version=1.0 - null null -2026-01-16 11:19:21.073 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:21.073 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:21.073 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:21.073 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:21.073 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:21.076 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:21.076 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:21.076 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:21.076 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:21.076 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:21.076 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:21.076 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:21.076 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:21.076 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:21.076 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:21.076 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:21.077 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:21.077 +03:00 [INF] Executing endpoint 'Volo.Abp.TenantManagement.TenantController.GetListAsync (Volo.Abp.TenantManagement.HttpApi)' -2026-01-16 11:19:21.086 +03:00 [INF] Route matched with {area = "multi-tenancy", action = "GetList", controller = "Tenant", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.TenantManagement.TenantDto]] GetListAsync(Volo.Abp.TenantManagement.GetTenantsInput) on controller Volo.Abp.TenantManagement.TenantController (Volo.Abp.TenantManagement.HttpApi). -2026-01-16 11:19:21.159 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants -2026-01-16 11:19:21.159 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants -2026-01-16 11:19:21.159 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpTenantManagement.Tenants -2026-01-16 11:19:21.159 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpTenantManagement.Tenants -2026-01-16 11:19:23.264 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.TenantManagement.TenantDto, Volo.Abp.TenantManagement.Application.Contracts, Version=10.2.0.0, Culture=neutral, PublicKeyToken=null]]'. -2026-01-16 11:19:23.267 +03:00 [INF] Executed action Volo.Abp.TenantManagement.TenantController.GetListAsync (Volo.Abp.TenantManagement.HttpApi) in 2181.283ms -2026-01-16 11:19:23.267 +03:00 [INF] Executed endpoint 'Volo.Abp.TenantManagement.TenantController.GetListAsync (Volo.Abp.TenantManagement.HttpApi)' -2026-01-16 11:19:23.267 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/api/multi-tenancy/tenants?Sorting=&SkipCount=0&MaxResultCount=10&api-version=1.0 - 200 null application/json; charset=utf-8 2195.2184ms -2026-01-16 11:19:27.222 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/api/identity/roles?Sorting=&SkipCount=0&MaxResultCount=10&api-version=1.0 - null null -2026-01-16 11:19:27.223 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:27.223 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:27.223 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:27.223 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:27.223 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:27.227 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:27.227 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:27.227 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:27.227 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:27.227 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:27.227 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:27.227 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:27.228 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:27.228 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:27.228 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:27.228 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:27.228 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:27.229 +03:00 [INF] Executing endpoint 'Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi)' -2026-01-16 11:19:27.241 +03:00 [INF] Route matched with {area = "identity", controller = "Role", action = "GetList", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityRoleDto]] GetListAsync(Volo.Abp.Identity.GetIdentityRolesInput) on controller Volo.Abp.Identity.IdentityRoleController (Volo.Abp.Identity.HttpApi). -2026-01-16 11:19:27.288 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles -2026-01-16 11:19:27.288 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles -2026-01-16 11:19:27.288 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles -2026-01-16 11:19:27.288 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles -2026-01-16 11:19:27.382 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityRoleDto, Volo.Abp.Identity.Application.Contracts, Version=10.2.0.0, Culture=neutral, PublicKeyToken=null]]'. -2026-01-16 11:19:27.394 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi) in 152.7952ms -2026-01-16 11:19:27.394 +03:00 [INF] Executed endpoint 'Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi)' -2026-01-16 11:19:27.395 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/api/identity/roles?Sorting=&SkipCount=0&MaxResultCount=10&api-version=1.0 - 200 null application/json; charset=utf-8 173.1452ms -2026-01-16 11:19:28.022 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise/dropdown.js?v=1.8.8.0 - null null -2026-01-16 11:19:28.023 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:28.023 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:28.024 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:28.024 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:28.024 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:28.026 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:28.026 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:28.026 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:28.026 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:28.026 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:28.026 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:28.026 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:28.026 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:28.026 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:28.026 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:28.026 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:28.027 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:28.027 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:28.028 +03:00 [INF] Sending file. Request path: '_content/Blazorise/dropdown.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\v2go4wikce-{0}-0549itg3qq-0549itg3qq.gz' -2026-01-16 11:19:28.028 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:28.028 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise/dropdown.js?v=1.8.8.0 - 200 466 text/javascript 5.4592ms -2026-01-16 11:19:28.028 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise.Bootstrap5/tooltip.js?v=1.8.8.0 - null null -2026-01-16 11:19:28.029 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:28.029 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:28.029 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:28.029 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:28.029 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:28.032 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:28.032 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:28.032 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:28.032 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:28.032 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:28.032 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:28.032 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:28.032 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:28.032 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:28.032 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:28.032 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:28.033 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:28.033 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:28.048 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise/floatingUi.js?v=1.8.8.0 - null null -2026-01-16 11:19:28.049 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:28.049 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:28.049 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:28.049 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:28.049 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:28.052 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:28.052 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:28.052 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:28.052 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:28.052 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:28.052 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:28.052 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:28.052 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:28.052 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:28.052 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:28.052 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:28.053 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:28.053 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:28.057 +03:00 [INF] Sending file. Request path: '_content/Blazorise.Bootstrap5/tooltip.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\ke7jzigyza-{0}-g1zqsbnr8m-g1zqsbnr8m.gz' -2026-01-16 11:19:28.057 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:28.057 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise.Bootstrap5/tooltip.js?v=1.8.8.0 - 200 454 text/javascript 28.5476ms -2026-01-16 11:19:28.063 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise/tooltip.js?v=1.8.8.0 - null null -2026-01-16 11:19:28.064 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:28.064 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:28.064 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:28.064 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:28.064 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:28.066 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:28.066 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:28.066 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:28.066 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:28.066 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:28.066 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:28.066 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:28.066 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:28.066 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:28.066 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:28.066 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:28.067 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:28.067 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:28.091 +03:00 [INF] Sending file. Request path: '_content/Blazorise/floatingUi.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\5zp9jtq1qf-{0}-uak6le73f2-uak6le73f2.gz' -2026-01-16 11:19:28.091 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:28.091 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise/floatingUi.js?v=1.8.8.0 - 200 1901 text/javascript 43.6292ms -2026-01-16 11:19:28.097 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise/vendors/floating-ui.js?v=1.8.8.0 - null null -2026-01-16 11:19:28.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:28.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:28.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:28.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:28.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:28.101 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:28.101 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:28.101 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:28.101 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:28.101 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:28.101 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:28.101 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:28.101 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:28.101 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:28.101 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:28.101 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:28.102 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:28.102 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:28.103 +03:00 [INF] Sending file. Request path: '_content/Blazorise/tooltip.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\0ip0cn01pl-{0}-pdtncbgtuy-pdtncbgtuy.gz' -2026-01-16 11:19:28.103 +03:00 [INF] Sending file. Request path: '_content/Blazorise/vendors/floating-ui.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\0rzts9d44c-{0}-5mbjrq4df3-5mbjrq4df3.gz' -2026-01-16 11:19:28.103 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:28.103 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:28.103 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise/tooltip.js?v=1.8.8.0 - 200 2524 text/javascript 40.1941ms -2026-01-16 11:19:28.103 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise/vendors/floating-ui.js?v=1.8.8.0 - 200 3950 text/javascript 6.0393ms -2026-01-16 11:19:28.112 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise/vendors/floating-ui-core.js - null null -2026-01-16 11:19:28.113 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:28.113 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:28.113 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:28.113 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:28.113 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:28.114 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise/vendors/tippy.js?v=1.8.8.0 - null null -2026-01-16 11:19:28.114 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise/vendors/popper.js?v=1.8.8.0 - null null -2026-01-16 11:19:28.115 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:28.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:28.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:28.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:28.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:28.115 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:28.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:28.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:28.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:28.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:28.116 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:28.116 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:28.116 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:28.116 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:28.116 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:28.116 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:28.116 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:28.116 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:28.116 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:28.116 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:28.116 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:28.117 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:28.117 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:28.117 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:28.117 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:28.117 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:28.117 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:28.117 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:28.117 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:28.117 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:28.117 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:28.117 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:28.117 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:28.117 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:28.117 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:28.117 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:28.117 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:28.117 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:28.117 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:28.117 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:28.117 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:28.117 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:28.117 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:28.117 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:28.117 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:28.118 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:28.118 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:28.118 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:28.118 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:28.118 +03:00 [INF] Sending file. Request path: '_content/Blazorise/vendors/floating-ui-core.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\ls076u4d3j-{0}-2wlo7snjy4-2wlo7snjy4.gz' -2026-01-16 11:19:28.118 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:28.119 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise/vendors/floating-ui-core.js - 200 5182 text/javascript 6.1147ms -2026-01-16 11:19:28.172 +03:00 [INF] Sending file. Request path: '_content/Blazorise/vendors/tippy.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\tpgyp1oxzq-{0}-k3q2f5g391-k3q2f5g391.gz' -2026-01-16 11:19:28.172 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:28.172 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise/vendors/tippy.js?v=1.8.8.0 - 200 22363 text/javascript 57.8584ms -2026-01-16 11:19:28.184 +03:00 [INF] Sending file. Request path: '_content/Blazorise/vendors/popper.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\hwin4llkot-{0}-r9jjuev8tu-r9jjuev8tu.gz' -2026-01-16 11:19:28.185 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:28.185 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise/vendors/popper.js?v=1.8.8.0 - 200 29451 text/javascript 70.2753ms -2026-01-16 11:19:29.813 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise.Bootstrap5/modal.js?v=1.8.8.0 - null null -2026-01-16 11:19:29.814 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:29.814 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:29.814 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:29.814 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:29.814 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:29.817 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:29.817 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:29.817 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:29.817 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:29.817 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:29.817 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:29.817 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:29.818 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:29.818 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:29.818 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:29.818 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:29.819 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:29.819 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:29.823 +03:00 [INF] Sending file. Request path: '_content/Blazorise.Bootstrap5/modal.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\qw3c8jcjcc-{0}-i91ojo056m-i91ojo056m.gz' -2026-01-16 11:19:29.823 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:29.823 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise.Bootstrap5/modal.js?v=1.8.8.0 - 200 1064 text/javascript 9.4741ms -2026-01-16 11:19:29.832 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Blazorise/closable.js?v=1.8.8.0 - null null -2026-01-16 11:19:29.833 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:29.833 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:29.833 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:29.833 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:29.833 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:29.835 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:29.835 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:29.835 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:29.835 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:29.835 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:29.835 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:29.835 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:29.835 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:29.835 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:29.835 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:29.835 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:29.836 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:29.836 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:29.837 +03:00 [INF] Sending file. Request path: '_content/Blazorise/closable.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\tnh13keuno-{0}-2qnu7pbp1b-2qnu7pbp1b.gz' -2026-01-16 11:19:29.837 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-16 11:19:29.837 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Blazorise/closable.js?v=1.8.8.0 - 200 1199 text/javascript 5.7889ms -2026-01-16 11:19:33.029 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44308/api/identity/roles?api-version=1.0 - application/json; charset=utf-8 74 -2026-01-16 11:19:33.030 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:33.030 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:33.030 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:33.030 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:33.030 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:33.034 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:33.034 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:33.034 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:33.034 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:33.034 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:33.034 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:33.034 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:33.034 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:33.034 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:33.034 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:33.034 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:33.035 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:33.036 +03:00 [INF] Executing endpoint 'Volo.Abp.Identity.IdentityRoleController.CreateAsync (Volo.Abp.Identity.HttpApi)' -2026-01-16 11:19:33.046 +03:00 [INF] Route matched with {area = "identity", controller = "Role", action = "Create", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Identity.IdentityRoleDto] CreateAsync(Volo.Abp.Identity.IdentityRoleCreateDto) on controller Volo.Abp.Identity.IdentityRoleController (Volo.Abp.Identity.HttpApi). -2026-01-16 11:19:33.077 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.Create -2026-01-16 11:19:33.077 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.Create -2026-01-16 11:19:33.077 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles.Create -2026-01-16 11:19:33.077 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles.Create -2026-01-16 11:19:33.077 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles -2026-01-16 11:19:33.077 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles -2026-01-16 11:19:33.077 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles -2026-01-16 11:19:33.077 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles -2026-01-16 11:19:33.316 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Identity.IdentityRoleDto'. -2026-01-16 11:19:33.316 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityRoleController.CreateAsync (Volo.Abp.Identity.HttpApi) in 270.4469ms -2026-01-16 11:19:33.316 +03:00 [INF] Executed endpoint 'Volo.Abp.Identity.IdentityRoleController.CreateAsync (Volo.Abp.Identity.HttpApi)' -2026-01-16 11:19:33.328 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44308/api/identity/roles?api-version=1.0 - 200 null application/json; charset=utf-8 299.3035ms -2026-01-16 11:19:33.387 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/api/identity/roles?Sorting=&SkipCount=0&MaxResultCount=10&api-version=1.0 - null null -2026-01-16 11:19:33.388 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:33.389 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-16 11:19:33.389 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-16 11:19:33.389 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-16 11:19:33.389 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-16 11:19:33.391 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:33.391 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:33.391 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-16 11:19:33.391 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-16 11:19:33.391 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-16 11:19:33.391 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-16 11:19:33.391 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:33.392 +03:00 [DBG] Starting resolving tenant... -2026-01-16 11:19:33.392 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-16 11:19:33.392 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-16 11:19:33.392 +03:00 [DBG] No tenant resolved. -2026-01-16 11:19:33.392 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-16 11:19:33.393 +03:00 [INF] Executing endpoint 'Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi)' -2026-01-16 11:19:33.393 +03:00 [INF] Route matched with {area = "identity", controller = "Role", action = "GetList", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityRoleDto]] GetListAsync(Volo.Abp.Identity.GetIdentityRolesInput) on controller Volo.Abp.Identity.IdentityRoleController (Volo.Abp.Identity.HttpApi). -2026-01-16 11:19:33.397 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles -2026-01-16 11:19:33.398 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles -2026-01-16 11:19:33.398 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles -2026-01-16 11:19:33.398 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles -2026-01-16 11:19:33.405 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityRoleDto, Volo.Abp.Identity.Application.Contracts, Version=10.2.0.0, Culture=neutral, PublicKeyToken=null]]'. -2026-01-16 11:19:33.405 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi) in 12.4633ms -2026-01-16 11:19:33.405 +03:00 [INF] Executed endpoint 'Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi)' -2026-01-16 11:19:33.406 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/api/identity/roles?Sorting=&SkipCount=0&MaxResultCount=10&api-version=1.0 - 200 null application/json; charset=utf-8 18.3211ms -2026-01-16 11:20:35.959 +03:00 [INF] Application is shutting down... -2026-01-16 11:20:36.108 +03:00 [DBG] Stopped background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker -2026-01-16 11:20:36.108 +03:00 [DBG] Stopped background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2026-01-28 14:01:32.548 +03:00 [INF] Starting web host. -2026-01-28 14:01:51.332 +03:00 [DBG] Loaded ABP modules: -2026-01-28 14:01:51.333 +03:00 [DBG] - MyCompanyName.MyProjectName.Blazor.WebApp.MyProjectNameBlazorModule -2026-01-28 14:01:51.333 +03:00 [DBG] - MyCompanyName.MyProjectName.MyProjectNameApplicationModule -2026-01-28 14:01:51.333 +03:00 [DBG] - MyCompanyName.MyProjectName.MyProjectNameDomainModule -2026-01-28 14:01:51.333 +03:00 [DBG] - MyCompanyName.MyProjectName.MyProjectNameDomainSharedModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Validation.AbpValidationModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Localization.AbpLocalizationModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Settings.AbpSettingsModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Security.AbpSecurityModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Data.AbpDataModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Uow.AbpUnitOfWorkModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Threading.AbpThreadingModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Json.AbpJsonAbstractionsModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Timing.AbpTimingModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Identity.AbpIdentityDomainSharedModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Users.AbpUsersDomainSharedModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Features.AbpFeaturesModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.OpenIddict.AbpOpenIddictDomainSharedModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Auditing.AbpAuditingModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Json.AbpJsonModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Auditing.AbpAuditingContractsModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Domain.AbpDddDomainModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.EventBus.AbpEventBusModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Guids.AbpGuidsModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Specifications.AbpSpecificationsModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Caching.AbpCachingModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Serialization.AbpSerializationModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Domain.AbpDddDomainSharedModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Mapperly.AbpMapperlyModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Identity.AbpIdentityDomainModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Users.AbpUsersDomainModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Users.AbpUsersAbstractionModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.OpenIddict.AbpOpenIddictDomainModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.PermissionManagement.OpenIddict.AbpPermissionManagementDomainOpenIddictModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Authorization.AbpAuthorizationModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Emailing.AbpEmailingModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.TextTemplating.AbpTextTemplatingModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Account.AbpAccountApplicationModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Account.AbpAccountApplicationContractsModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Application.AbpDddApplicationContractsModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Identity.AbpIdentityApplicationModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Application.AbpDddApplicationModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.Http.AbpHttpAbstractionsModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.UI.AbpUiModule -2026-01-28 14:01:51.333 +03:00 [DBG] - MyCompanyName.MyProjectName.MyProjectNameApplicationContractsModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule -2026-01-28 14:01:51.333 +03:00 [DBG] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule -2026-01-28 14:01:51.334 +03:00 [DBG] - MyCompanyName.MyProjectName.EntityFrameworkCore.MyProjectNameEntityFrameworkCoreModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.OpenIddict.EntityFrameworkCore.AbpOpenIddictEntityFrameworkCoreModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule -2026-01-28 14:01:51.334 +03:00 [DBG] - MyCompanyName.MyProjectName.MyProjectNameHttpApiModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.Account.AbpAccountHttpApiModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.Identity.AbpIdentityHttpApiModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.Http.AbpHttpModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.Minify.AbpMinifyModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.AspNetCore.AbpAspNetCoreAbstractionsModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.Autofac.AbpAutofacModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.Castle.AbpCastleCoreModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.Account.Web.AbpAccountWebOpenIddictModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.Account.Web.AbpAccountWebModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.AspNetCore.Bundling.AbpAspNetCoreBundlingModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.OpenIddict.AbpOpenIddictAspNetCoreModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.Server.MudBlazorBasicTheme.AbpAspNetCoreComponentsServerMudBlazorBasicThemeModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.AbpAspNetCoreComponentsWebMudBlazorBasicThemeModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.AbpAspNetCoreComponentsWebThemingMudBlazorModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.MudBlazorUI.AbpMudBlazorUIModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.Web.AbpAspNetCoreComponentsWebModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.AbpAspNetCoreComponentsModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.Server.Theming.MudBlazor.AbpAspNetCoreComponentsServerThemingMudBlazorModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.Server.AbpAspNetCoreComponentsServerModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.Http.Client.AbpHttpClientModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.RemoteServices.AbpRemoteServicesModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Theme.LeptonXLite.AbpAspNetCoreMvcUiLeptonXLiteThemeModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.Identity.Blazor.MudBlazor.Server.AbpIdentityBlazorMudBlazorServerModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.Identity.Blazor.MudBlazor.AbpIdentityBlazorMudBlazorModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.PermissionManagement.Blazor.MudBlazor.AbpPermissionManagementBlazorMudBlazorModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.PermissionManagement.Blazor.MudBlazor.Server.AbpPermissionManagementBlazorMudBlazorServerModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.TenantManagement.Blazor.MudBlazor.Server.AbpTenantManagementBlazorMudBlazorServerModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.TenantManagement.Blazor.MudBlazor.AbpTenantManagementBlazorMudBlazorModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.FeatureManagement.Blazor.MudBlazor.AbpFeatureManagementBlazorMudBlazorModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.SettingManagement.Blazor.MudBlazor.AbpSettingManagementBlazorMudBlazorModule -2026-01-28 14:01:51.334 +03:00 [DBG] - Volo.Abp.SettingManagement.Blazor.MudBlazor.Server.AbpSettingManagementBlazorMudBlazorServerModule -2026-01-28 14:01:51.402 +03:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker -2026-01-28 14:01:51.431 +03:00 [DBG] Started background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2026-01-28 14:01:52.389 +03:00 [INF] User profile is available. Using 'C:\Users\ismai\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2026-01-28 14:01:53.060 +03:00 [INF] Initialized all ABP modules. -2026-01-28 14:01:53.892 +03:00 [INF] Now listening on: https://localhost:44308 -2026-01-28 14:01:53.892 +03:00 [INF] Application started. Press Ctrl+C to shut down. -2026-01-28 14:01:53.892 +03:00 [INF] Hosting environment: Development -2026-01-28 14:01:53.892 +03:00 [INF] Content root path: D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp -2026-01-28 14:10:50.504 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44308/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundaryFB4ZrRvMdByZzldJ 359 -2026-01-28 14:10:51.481 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/ - null null -2026-01-28 14:10:51.826 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:51.826 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:51.839 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:51.839 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:51.842 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:51.842 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:51.843 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:51.843 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:51.843 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:51.843 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:51.862 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:51.862 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:51.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:51.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:51.867 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:51.867 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:51.868 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:51.868 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:51.869 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:51.869 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:51.869 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:51.869 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:51.870 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:51.870 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:51.870 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:51.870 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:51.870 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:51.870 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:51.920 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:51.920 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:51.921 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:51.921 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:51.921 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:51.921 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:51.923 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:51.923 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:51.923 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:51.923 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:51.924 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:51.924 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:51.924 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:51.924 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:51.972 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:51.973 +03:00 [INF] Executing endpoint '/ (/)' -2026-01-28 14:10:51.984 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:51.991 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44308/_blazor/disconnect - 400 0 null 1488.2335ms -2026-01-28 14:10:52.262 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2026-01-28 14:10:52.264 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2026-01-28 14:10:52.346 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2026-01-28 14:10:52.414 +03:00 [INF] Executed endpoint '/ (/)' -2026-01-28 14:10:52.431 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/ - 200 null text/html; charset=utf-8 949.8391ms -2026-01-28 14:10:52.458 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/MudBlazor/MudBlazor.min.css - null null -2026-01-28 14:10:52.458 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2026-01-28 14:10:52.458 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/themes/basic/main.css - null null -2026-01-28 14:10:52.459 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.MudBlazorUI/volo.abp.mudblazorui.css - null null -2026-01-28 14:10:52.459 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/blazor-global-styles.css - null null -2026-01-28 14:10:52.459 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/MudBlazor/MudBlazor.min.js - null null -2026-01-28 14:10:52.459 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css - null null -2026-01-28 14:10:52.459 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/bg-01.png - null null -2026-01-28 14:10:52.459 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/img-support.png - null null -2026-01-28 14:10:52.460 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/img-blog.png - null null -2026-01-28 14:10:52.460 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2026-01-28 14:10:52.461 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/blazor.web.js - null null -2026-01-28 14:10:52.461 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2026-01-28 14:10:52.461 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/.well-known/appspecific/com.chrome.devtools.json - null null -2026-01-28 14:10:52.587 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:52.587 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:52.587 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:52.587 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:52.587 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:52.587 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:52.587 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:52.587 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:52.587 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:52.588 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:52.588 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:52.588 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:52.588 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:52.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:52.589 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:52.589 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:52.589 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:52.589 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:52.589 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:52.589 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:52.589 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:52.589 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:52.589 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:52.589 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:52.589 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:52.589 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:52.589 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:52.589 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:52.589 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:52.589 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:52.589 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:52.589 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:52.589 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:52.589 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:52.589 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:52.590 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:52.590 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:52.590 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:52.590 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:52.590 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:52.590 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:52.590 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:52.590 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:52.590 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:52.590 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:52.590 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:52.590 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:52.590 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:52.590 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:52.590 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:52.590 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:52.590 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:52.590 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:52.590 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:52.590 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:52.590 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:52.590 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:52.590 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:52.590 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:52.590 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:52.590 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:52.590 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:52.590 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:52.590 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:52.592 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:52.592 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:52.592 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:52.592 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:52.592 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:52.592 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:52.592 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:52.592 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:52.592 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:52.592 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:52.592 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:52.592 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:52.592 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:52.592 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/.well-known/appspecific/com.chrome.devtools.json - 404 0 null 131.25ms -2026-01-28 14:10:52.593 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44308/.well-known/appspecific/com.chrome.devtools.json, Response status code: 404 -2026-01-28 14:10:52.601 +03:00 [INF] Sending file. Request path: 'MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s4s6fpr8ex-{0}-oa8u55zyfs-oa8u55zyfs.gz' -2026-01-28 14:10:52.601 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:52.601 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css - 200 317 text/css 142.4218ms -2026-01-28 14:10:52.612 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\obj\Debug\net10.0\compressed\p1g0cu86en-{0}-c25c931rn9-c25c931rn9.gz' -2026-01-28 14:10:52.612 +03:00 [INF] Sending file. Request path: 'blazor-global-styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\smexgl05zq-{0}-y3n6denrdr-y3n6denrdr.gz' -2026-01-28 14:10:52.612 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/themes/basic/main.css'. Physical path: 'D:\GitHub\abp\modules\basic-theme\src\Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme\obj\Debug\net10.0\compressed\fqd2rlnqku-{0}-tyyka3g39l-tyyka3g39l.gz' -2026-01-28 14:10:52.612 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:52.612 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:52.612 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:52.612 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/blazor-global-styles.css - 200 641 text/css 153.4933ms -2026-01-28 14:10:52.612 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1375 text/css 154.1231ms -2026-01-28 14:10:52.612 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/themes/basic/main.css - 200 120 text/css 153.9209ms -2026-01-28 14:10:52.612 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.MudBlazorUI/volo.abp.mudblazorui.css'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.MudBlazorUI\obj\Debug\net10.0\compressed\giyoea8shq-{0}-8qeawnrprb-8qeawnrprb.gz' -2026-01-28 14:10:52.612 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:52.612 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.MudBlazorUI/volo.abp.mudblazorui.css - 200 1120 text/css 153.8893ms -2026-01-28 14:10:52.618 +03:00 [INF] Sending file. Request path: '_content/MudBlazor/MudBlazor.min.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\0wz98yz2xy-{0}-u9015k2po7-u9015k2po7.gz' -2026-01-28 14:10:52.618 +03:00 [INF] Sending file. Request path: '_content/MudBlazor/MudBlazor.min.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\tzxjg6is5z-{0}-du7z45fy1o-du7z45fy1o.gz' -2026-01-28 14:10:52.618 +03:00 [INF] Sending file. Request path: 'images/getting-started/img-support.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\img-support.png' -2026-01-28 14:10:52.618 +03:00 [INF] Sending file. Request path: 'images/getting-started/img-blog.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\img-blog.png' -2026-01-28 14:10:52.618 +03:00 [INF] Sending file. Request path: 'images/getting-started/bg-01.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\bg-01.png' -2026-01-28 14:10:52.618 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:52.618 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:52.618 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:52.619 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:52.619 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:52.619 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/MudBlazor/MudBlazor.min.css - 200 64451 text/css 160.8866ms -2026-01-28 14:10:52.619 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/MudBlazor/MudBlazor.min.js - 200 11465 text/javascript 160.131ms -2026-01-28 14:10:52.619 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/bg-01.png - 200 22111 image/png 159.7608ms -2026-01-28 14:10:52.619 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/img-support.png - 200 23461 image/png 159.5413ms -2026-01-28 14:10:52.619 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/img-blog.png - 200 30220 image/png 159.3167ms -2026-01-28 14:10:52.621 +03:00 [INF] Sending file. Request path: '_framework/blazor.web.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\ocy8dvewdt-{0}-2i0r6wwb69-2i0r6wwb69.gz' -2026-01-28 14:10:52.621 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:52.621 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/blazor.web.js - 200 55628 text/javascript 160.6793ms -2026-01-28 14:10:52.624 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\obj\Debug\net10.0\compressed\2mj6s76mwx-{0}-qb38od44a4-qb38od44a4.gz' -2026-01-28 14:10:52.625 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:52.625 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 486 text/javascript 164.0758ms -2026-01-28 14:10:52.636 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\obj\Debug\net10.0\compressed\rhkuekteef-{0}-cowusv9rvg-cowusv9rvg.gz' -2026-01-28 14:10:52.636 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:52.636 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8981 text/javascript 176.326ms -2026-01-28 14:10:52.721 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js - null null -2026-01-28 14:10:52.725 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:52.725 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:52.725 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:52.725 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:52.725 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:52.726 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:52.726 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:52.726 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:52.726 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:52.726 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:52.726 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:52.726 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:52.726 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:52.726 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:52.726 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:52.726 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:52.726 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:52.726 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:52.726 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:52.726 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:52.726 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:52.727 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:52.751 +03:00 [INF] Sending file. Request path: '_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js'. Physical path: 'C:\Users\ismai\.nuget\packages\microsoft.dotnet.hotreload.webassembly.browser\10.0.102\staticwebassets\Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js' -2026-01-28 14:10:52.751 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:52.752 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js - 200 1862 text/javascript 30.5275ms -2026-01-28 14:10:52.760 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.js - null null -2026-01-28 14:10:52.761 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:52.761 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:52.761 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:52.761 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:52.762 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:52.762 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:52.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:52.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:52.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:52.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:52.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:52.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:52.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:52.762 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:52.762 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:52.762 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:52.762 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:52.762 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:52.762 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:52.762 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:52.762 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:52.763 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:52.881 +03:00 [INF] Sending file. Request path: '_framework/dotnet.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uxk8is50o9-{0}-aooho9t0gv-aooho9t0gv.gz' -2026-01-28 14:10:52.881 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:52.881 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.js - 200 138290 text/javascript 120.8341ms -2026-01-28 14:10:53.053 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/favicon.ico - null null -2026-01-28 14:10:53.058 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.0j6ezsi0n0.js - null null -2026-01-28 14:10:53.058 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.native.cs8mcre4gh.js - null null -2026-01-28 14:10:53.059 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.native.muve7a13r4.wasm - null null -2026-01-28 14:10:53.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.059 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.059 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.059 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.059 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.059 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.060 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.060 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.060 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.060 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.060 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.060 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.060 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.060 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.060 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.060 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.060 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.060 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.060 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.060 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.060 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.060 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.060 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.060 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.060 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.060 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.060 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.060 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.060 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.060 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.060 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.062 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'N/A' -2026-01-28 14:10:53.062 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/favicon.ico - 200 38078 image/x-icon 9.0511ms -2026-01-28 14:10:53.063 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44308/_blazor/negotiate?negotiateVersion=1 - null 0 -2026-01-28 14:10:53.068 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.068 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.068 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.068 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.068 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.068 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.068 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.068 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.068 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.068 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.069 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.069 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.069 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.069 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.069 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.069 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.069 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.069 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.069 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.069 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.069 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.069 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.074 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.074 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44308/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 10.2224ms -2026-01-28 14:10:53.077 +03:00 [INF] Sending file. Request path: '_framework/dotnet.native.cs8mcre4gh.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\k6ua61tyqb-{0}-cs8mcre4gh-cs8mcre4gh.gz' -2026-01-28 14:10:53.077 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.077 +03:00 [INF] Sending file. Request path: '_framework/dotnet.runtime.0j6ezsi0n0.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ilxt1pu9fi-{0}-0j6ezsi0n0-0j6ezsi0n0.gz' -2026-01-28 14:10:53.077 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.077 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.native.cs8mcre4gh.js - 200 34952 text/javascript 19.3236ms -2026-01-28 14:10:53.077 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.0j6ezsi0n0.js - 200 57287 text/javascript 19.4427ms -2026-01-28 14:10:53.083 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44308/_blazor?id=R3QMQ6fEvg3YeCBe14tVZQ - null null -2026-01-28 14:10:53.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.084 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.084 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.084 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.084 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.084 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.085 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.085 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.085 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.085 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.085 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.085 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.085 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.086 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.086 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.JavaScript.flbdejno7d.wasm - null null -2026-01-28 14:10:53.086 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.086 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.086 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.086 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.086 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.086 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.086 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.087 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.087 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.087 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.087 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.087 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.088 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.088 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.088 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.088 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.088 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.088 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.088 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.088 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.088 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.088 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.088 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.088 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.088 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.088 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.088 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.088 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.089 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.103 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.js.map - null null -2026-01-28 14:10:53.104 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.105 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.105 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.105 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.105 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.105 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.105 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.106 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.106 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.106 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.106 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.106 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.106 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.106 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.106 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.107 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.InteropServices.JavaScript.flbdejno7d.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s7btk1c9a3-{0}-flbdejno7d-flbdejno7d.gz' -2026-01-28 14:10:53.107 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.108 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.JavaScript.flbdejno7d.wasm - 200 79680 application/wasm 22.0247ms -2026-01-28 14:10:53.114 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.CoreLib.zjh2w4p93l.wasm - null null -2026-01-28 14:10:53.115 +03:00 [INF] Sending file. Request path: '_framework/dotnet.native.muve7a13r4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uv3ayj7441-{0}-muve7a13r4-muve7a13r4.gz' -2026-01-28 14:10:53.115 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.115 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.native.muve7a13r4.wasm - 200 1207839 application/wasm 56.2281ms -2026-01-28 14:10:53.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.116 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.116 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.116 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.116 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.116 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.117 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.117 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.117 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.117 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.117 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.117 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.117 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.117 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.117 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.127 +03:00 [INF] Sending file. Request path: '_framework/dotnet.runtime.js.map'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xqmdb6twc8-{0}-efgkpxn596-efgkpxn596.gz' -2026-01-28 14:10:53.127 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.127 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.js.map - 200 89353 text/plain 24.2517ms -2026-01-28 14:10:53.225 +03:00 [INF] Sending file. Request path: '_framework/System.Private.CoreLib.zjh2w4p93l.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6as1brjopk-{0}-zjh2w4p93l-zjh2w4p93l.gz' -2026-01-28 14:10:53.225 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.225 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.CoreLib.zjh2w4p93l.wasm - 200 4870686 application/wasm 111.5817ms -2026-01-28 14:10:53.242 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.rgbxj6i45y.pdb - null null -2026-01-28 14:10:53.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.243 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.243 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.243 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.243 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.243 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.243 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.244 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.244 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.244 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.244 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.244 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.244 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.244 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.244 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.266 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.rgbxj6i45y.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vzc2x4ap4x-{0}-rgbxj6i45y-rgbxj6i45y.gz' -2026-01-28 14:10:53.266 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.266 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.rgbxj6i45y.pdb - 200 19065 application/octet-stream 24.2274ms -2026-01-28 14:10:53.271 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.3ihkiqtul0.pdb - null null -2026-01-28 14:10:53.271 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.271 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.271 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.271 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.272 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.344 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.344 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.344 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.344 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.344 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.344 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.344 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.344 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.344 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.344 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.344 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.345 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.345 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.345 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.345 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.345 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.345 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.356 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.3ihkiqtul0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6vzgo2e02t-{0}-3ihkiqtul0-3ihkiqtul0.gz' -2026-01-28 14:10:53.356 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.356 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.3ihkiqtul0.pdb - 200 18845 application/octet-stream 85.8905ms -2026-01-28 14:10:53.361 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.q12kofv66i.pdb - null null -2026-01-28 14:10:53.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.362 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.362 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.362 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.362 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.362 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.362 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.363 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.363 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.363 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.363 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.363 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.363 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.363 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.363 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.376 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.q12kofv66i.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tiqjr11wdr-{0}-q12kofv66i-q12kofv66i.gz' -2026-01-28 14:10:53.376 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.376 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.q12kofv66i.pdb - 200 40486 application/octet-stream 14.7048ms -2026-01-28 14:10:53.380 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.ugoz0mgqgy.pdb - null null -2026-01-28 14:10:53.380 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.380 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.380 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.381 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.381 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.381 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.381 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.381 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.381 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.381 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.381 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.381 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.381 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.381 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.381 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.402 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.ugoz0mgqgy.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3z9ena93oc-{0}-ugoz0mgqgy-ugoz0mgqgy.gz' -2026-01-28 14:10:53.402 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.403 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.ugoz0mgqgy.pdb - 200 31293 application/octet-stream 22.7378ms -2026-01-28 14:10:53.403 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2026-01-28 14:10:53.405 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2026-01-28 14:10:53.409 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2026-01-28 14:10:53.415 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.WebAssembly.imimiyzcuo.pdb - null null -2026-01-28 14:10:53.415 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.416 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.416 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.416 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.416 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.416 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.416 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.416 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.416 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.416 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.416 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.416 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.416 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.416 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.416 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.416 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.416 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.416 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.416 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.416 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.416 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.417 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.434 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Autofac.WebAssembly.imimiyzcuo.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\46uzmq97el-{0}-imimiyzcuo-imimiyzcuo.gz' -2026-01-28 14:10:53.434 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.435 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.WebAssembly.imimiyzcuo.pdb - 200 17837 application/octet-stream 19.5903ms -2026-01-28 14:10:53.439 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/bg-01.png - null null -2026-01-28 14:10:53.439 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/img-support.png - null null -2026-01-28 14:10:53.439 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/img-blog.png - null null -2026-01-28 14:10:53.452 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.452 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.452 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.452 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.452 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.452 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.453 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.453 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.453 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.453 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.453 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.453 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.453 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.453 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.453 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.453 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.453 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.453 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.453 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.453 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.453 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.453 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.453 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.453 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.453 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.453 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.453 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.453 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.453 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.453 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.453 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.453 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.453 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.453 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.453 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.453 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.453 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.453 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.453 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.453 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.453 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.453 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.454 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.454 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.454 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.455 +03:00 [INF] Sending file. Request path: 'images/getting-started/bg-01.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\bg-01.png' -2026-01-28 14:10:53.455 +03:00 [INF] Sending file. Request path: 'images/getting-started/img-support.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\img-support.png' -2026-01-28 14:10:53.455 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.455 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.455 +03:00 [INF] Sending file. Request path: 'images/getting-started/img-blog.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\img-blog.png' -2026-01-28 14:10:53.455 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.455 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/img-support.png - 200 23461 image/png 16.5051ms -2026-01-28 14:10:53.455 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/bg-01.png - 200 22111 image/png 16.504ms -2026-01-28 14:10:53.455 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/img-blog.png - 200 30220 image/png 16.4953ms -2026-01-28 14:10:53.467 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.xhf7sa1p5x.pdb - null null -2026-01-28 14:10:53.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.468 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.468 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.468 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.468 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.468 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.468 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.469 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.469 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.469 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.469 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.469 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.469 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.469 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.469 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.485 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.xhf7sa1p5x.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nvmr6rtxm8-{0}-xhf7sa1p5x-xhf7sa1p5x.gz' -2026-01-28 14:10:53.486 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.486 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.xhf7sa1p5x.pdb - 200 18717 application/octet-stream 18.5986ms -2026-01-28 14:10:53.496 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.aauy841uql.pdb - null null -2026-01-28 14:10:53.496 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.496 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.496 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.496 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.496 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.497 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.497 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.497 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.497 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.497 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.497 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.497 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.497 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.497 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.497 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.497 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.497 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.497 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.497 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.497 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.497 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.497 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.511 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.aauy841uql.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2jefoohlw9-{0}-aauy841uql-aauy841uql.gz' -2026-01-28 14:10:53.511 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.511 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.aauy841uql.pdb - 200 18717 application/octet-stream 15.6738ms -2026-01-28 14:10:53.519 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.gbnu5lon3p.pdb - null null -2026-01-28 14:10:53.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.520 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.520 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.520 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.520 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.520 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.520 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.520 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.520 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.520 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.520 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.520 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.520 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.520 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.520 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.521 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.521 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.521 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.521 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.521 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.521 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.521 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.535 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.gbnu5lon3p.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\yqm8xk8yh0-{0}-gbnu5lon3p-gbnu5lon3p.gz' -2026-01-28 14:10:53.535 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.535 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.gbnu5lon3p.pdb - 200 18277 application/octet-stream 16.1839ms -2026-01-28 14:10:53.549 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.HttpApi.Client.puryd8tfts.pdb - null null -2026-01-28 14:10:53.550 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.550 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.550 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.550 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.550 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.550 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.551 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.551 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.551 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.551 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.551 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.551 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.551 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.551 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.551 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.551 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.551 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.551 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.551 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.551 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.551 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.551 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.565 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.HttpApi.Client.puryd8tfts.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wa1oh5lir8-{0}-puryd8tfts-puryd8tfts.gz' -2026-01-28 14:10:53.565 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.565 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.HttpApi.Client.puryd8tfts.pdb - 200 18313 application/octet-stream 16.1022ms -2026-01-28 14:10:53.569 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Application.Contracts.q930c1xwd6.pdb - null null -2026-01-28 14:10:53.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.570 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.571 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.571 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.571 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.571 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.571 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.571 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.571 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.571 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.571 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.583 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Application.Contracts.q930c1xwd6.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7jvwr8mtd4-{0}-q930c1xwd6-q930c1xwd6.gz' -2026-01-28 14:10:53.583 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.583 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Application.Contracts.q930c1xwd6.pdb - 200 17845 application/octet-stream 13.8521ms -2026-01-28 14:10:53.588 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Domain.Shared.bmn2636ymj.pdb - null null -2026-01-28 14:10:53.588 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.589 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.589 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.589 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.589 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.589 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.589 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.589 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.589 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.589 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.589 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.601 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Domain.Shared.bmn2636ymj.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rlbmklp40g-{0}-bmn2636ymj-bmn2636ymj.gz' -2026-01-28 14:10:53.601 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.602 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Domain.Shared.bmn2636ymj.pdb - 200 17373 application/octet-stream 13.869ms -2026-01-28 14:10:53.606 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.tv5yl1psyg.pdb - null null -2026-01-28 14:10:53.606 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.606 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.606 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.606 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.606 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.606 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.607 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.607 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.607 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.607 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.607 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.607 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.607 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.607 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.607 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.607 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.607 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.607 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.607 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.607 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.607 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.607 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.619 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.tv5yl1psyg.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kaxpuw2pqs-{0}-tv5yl1psyg-tv5yl1psyg.gz' -2026-01-28 14:10:53.619 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.619 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.tv5yl1psyg.pdb - 200 21877 application/octet-stream 13.7752ms -2026-01-28 14:10:53.624 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.i3kyf3e5w5.pdb - null null -2026-01-28 14:10:53.624 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.625 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.625 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.625 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.625 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.625 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.625 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.625 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.625 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.625 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.625 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.625 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.625 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.625 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.625 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.625 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.625 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.625 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.625 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.625 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.626 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.626 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.660 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.i3kyf3e5w5.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3g4acw7rc0-{0}-i3kyf3e5w5-i3kyf3e5w5.gz' -2026-01-28 14:10:53.660 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.660 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.i3kyf3e5w5.pdb - 200 28037 application/octet-stream 36.2452ms -2026-01-28 14:10:53.665 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.hcs1zisgxl.pdb - null null -2026-01-28 14:10:53.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.666 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.666 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.666 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.666 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.667 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.667 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.667 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.667 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.667 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.667 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.667 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.668 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.668 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.668 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.680 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.hcs1zisgxl.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\iqrjqm25rb-{0}-hcs1zisgxl-hcs1zisgxl.gz' -2026-01-28 14:10:53.680 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.680 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.hcs1zisgxl.pdb - 200 41586 application/octet-stream 14.7921ms -2026-01-28 14:10:53.685 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.w6zddju3kj.pdb - null null -2026-01-28 14:10:53.685 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.685 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.685 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.685 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.685 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.686 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.686 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.686 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.686 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.686 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.686 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.686 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.686 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.686 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.686 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.686 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.686 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.686 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.686 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.686 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.686 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.686 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.702 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.w6zddju3kj.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wynnfd4qyp-{0}-w6zddju3kj-w6zddju3kj.gz' -2026-01-28 14:10:53.702 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.702 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.w6zddju3kj.pdb - 200 31269 application/octet-stream 17.2709ms -2026-01-28 14:10:53.708 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.kgrhtsi4hq.pdb - null null -2026-01-28 14:10:53.708 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.709 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.709 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.709 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.709 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.709 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.709 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.709 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.709 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.709 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.709 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.709 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.709 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.709 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.709 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.710 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.710 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.710 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.710 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.710 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.710 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.710 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.725 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.kgrhtsi4hq.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\htac70xodz-{0}-kgrhtsi4hq-kgrhtsi4hq.gz' -2026-01-28 14:10:53.725 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.725 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.kgrhtsi4hq.pdb - 200 18517 application/octet-stream 17.4509ms -2026-01-28 14:10:53.731 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.mqramojkbo.pdb - null null -2026-01-28 14:10:53.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.731 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.731 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.731 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.731 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.732 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.732 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.732 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.732 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.732 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.732 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.732 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.732 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.732 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.732 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.732 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.732 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.732 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.732 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.732 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.732 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.732 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.747 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.mqramojkbo.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mf8v92gj25-{0}-mqramojkbo-mqramojkbo.gz' -2026-01-28 14:10:53.747 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.747 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.mqramojkbo.pdb - 200 13921 application/octet-stream 16.5187ms -2026-01-28 14:10:53.752 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.kbf4e1o5yq.pdb - null null -2026-01-28 14:10:53.752 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.752 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.752 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.752 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.752 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.753 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.753 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.753 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.753 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.753 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.753 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.753 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.753 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.753 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.753 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.753 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.753 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.753 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.753 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.753 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.753 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.753 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.766 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.kbf4e1o5yq.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\075clw76hm-{0}-kbf4e1o5yq-kbf4e1o5yq.gz' -2026-01-28 14:10:53.766 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.767 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.kbf4e1o5yq.pdb - 200 21557 application/octet-stream 14.943ms -2026-01-28 14:10:53.771 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.j3nmt0rh5o.pdb - null null -2026-01-28 14:10:53.771 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.771 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.772 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.772 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.772 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.772 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.772 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.772 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.772 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.772 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.772 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.772 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.772 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.772 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.772 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.772 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.772 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.772 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.772 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.772 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.772 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.773 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.786 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.j3nmt0rh5o.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gbgteom76y-{0}-j3nmt0rh5o-j3nmt0rh5o.gz' -2026-01-28 14:10:53.786 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.786 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.j3nmt0rh5o.pdb - 200 31349 application/octet-stream 15.0672ms -2026-01-28 14:10:53.790 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.ej4nfwopnt.pdb - null null -2026-01-28 14:10:53.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.791 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.791 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.791 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.791 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.791 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.791 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.792 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.792 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.792 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.792 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.792 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.792 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.792 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.792 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.804 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Blazor.MudBlazor.ej4nfwopnt.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8c1zm5wt8e-{0}-ej4nfwopnt-ej4nfwopnt.gz' -2026-01-28 14:10:53.804 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.804 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.ej4nfwopnt.pdb - 200 45622 application/octet-stream 13.9607ms -2026-01-28 14:10:53.810 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MudBlazorUI.kagx9siw5c.pdb - null null -2026-01-28 14:10:53.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.810 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.811 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.811 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.811 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.811 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.811 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.811 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.811 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.811 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.811 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.811 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.811 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.811 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.811 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.811 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.811 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.811 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.811 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.811 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.811 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.812 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.825 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MudBlazorUI.kagx9siw5c.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fb4n2yszse-{0}-kagx9siw5c-kagx9siw5c.gz' -2026-01-28 14:10:53.825 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.825 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MudBlazorUI.kagx9siw5c.pdb - 200 75523 application/octet-stream 15.7798ms -2026-01-28 14:10:53.830 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.h9wobfk88b.pdb - null null -2026-01-28 14:10:53.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.831 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.831 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.831 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.831 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.831 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.831 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.831 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.831 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.831 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.831 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.831 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.831 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.831 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.831 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.831 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.831 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.831 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.831 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.831 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.831 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.831 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.843 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.h9wobfk88b.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ouhgkzthum-{0}-h9wobfk88b-h9wobfk88b.gz' -2026-01-28 14:10:53.844 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.844 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.h9wobfk88b.pdb - 200 42806 application/octet-stream 13.6488ms -2026-01-28 14:10:53.847 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.sff8ai0aia.pdb - null null -2026-01-28 14:10:53.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.848 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.848 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.848 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.848 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.848 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.848 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.849 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.849 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.849 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.849 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.849 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.849 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.849 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.849 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.862 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.sff8ai0aia.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xdm6fxeedd-{0}-sff8ai0aia-sff8ai0aia.gz' -2026-01-28 14:10:53.862 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.862 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.sff8ai0aia.pdb - 200 18145 application/octet-stream 14.3367ms -2026-01-28 14:10:53.865 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.6hy2xofs6k.pdb - null null -2026-01-28 14:10:53.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.866 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.866 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.867 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.867 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.867 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.867 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.867 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.867 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.867 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.867 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.878 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.6hy2xofs6k.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wvossyu6ah-{0}-6hy2xofs6k-6hy2xofs6k.gz' -2026-01-28 14:10:53.878 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.878 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.6hy2xofs6k.pdb - 200 41322 application/octet-stream 12.4261ms -2026-01-28 14:10:53.881 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.phiqfrt9c2.pdb - null null -2026-01-28 14:10:53.882 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.882 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.882 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.882 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.882 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.882 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.882 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.882 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.882 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.882 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.882 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.882 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.882 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.882 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.882 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.882 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.882 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.882 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.882 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.882 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.882 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.883 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.893 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.phiqfrt9c2.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mq253tbkc6-{0}-phiqfrt9c2-phiqfrt9c2.gz' -2026-01-28 14:10:53.893 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.893 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.phiqfrt9c2.pdb - 200 28197 application/octet-stream 11.4277ms -2026-01-28 14:10:53.898 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.Application.Contracts.lnhr5y4bfl.pdb - null null -2026-01-28 14:10:53.898 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.899 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.899 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.899 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.899 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.899 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.899 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.899 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.899 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.899 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.899 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.899 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.899 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.899 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.899 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.899 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.899 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.900 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.900 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.900 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.900 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.900 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.912 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Account.Application.Contracts.lnhr5y4bfl.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uzxye9p8cy-{0}-lnhr5y4bfl-lnhr5y4bfl.gz' -2026-01-28 14:10:53.912 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.912 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.Application.Contracts.lnhr5y4bfl.pdb - 200 19021 application/octet-stream 14.2792ms -2026-01-28 14:10:53.916 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.HttpApi.Client.vbwanrrdq2.pdb - null null -2026-01-28 14:10:53.916 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.917 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.917 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.917 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.917 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.917 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.917 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.917 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.917 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.917 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.917 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.917 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.917 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.917 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.917 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.917 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.917 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.917 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.917 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.917 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.917 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.917 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.929 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Account.HttpApi.Client.vbwanrrdq2.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ntmq6e7ewr-{0}-vbwanrrdq2-vbwanrrdq2.gz' -2026-01-28 14:10:53.929 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.929 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.HttpApi.Client.vbwanrrdq2.pdb - 200 18073 application/octet-stream 12.6912ms -2026-01-28 14:10:53.932 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.hpzdukhxsy.pdb - null null -2026-01-28 14:10:53.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.933 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.933 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.933 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.933 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.933 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.933 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.934 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.934 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.934 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.934 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.934 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.934 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.934 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.934 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.943 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.hpzdukhxsy.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\eoau05i0af-{0}-hpzdukhxsy-hpzdukhxsy.gz' -2026-01-28 14:10:53.943 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.943 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.hpzdukhxsy.pdb - 200 25305 application/octet-stream 10.6741ms -2026-01-28 14:10:53.947 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Contracts.4guztbzukr.pdb - null null -2026-01-28 14:10:53.947 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.947 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.947 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.947 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.947 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.948 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.948 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.948 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.948 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.948 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.948 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.948 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.948 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.948 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.948 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.948 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.948 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.948 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.948 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.948 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.948 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.948 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.958 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.Contracts.4guztbzukr.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ur1wb3r0pv-{0}-4guztbzukr-4guztbzukr.gz' -2026-01-28 14:10:53.958 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.958 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Contracts.4guztbzukr.pdb - 200 26921 application/octet-stream 11.2779ms -2026-01-28 14:10:53.963 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.3fgrvz25ex.pdb - null null -2026-01-28 14:10:53.963 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.963 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.964 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.964 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.964 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.964 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.964 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.964 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.964 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.964 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.964 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.964 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.964 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.964 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.964 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.964 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.964 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.964 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.964 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.964 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.964 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.965 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.976 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Auditing.3fgrvz25ex.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\o0dl3ao57v-{0}-3fgrvz25ex-3fgrvz25ex.gz' -2026-01-28 14:10:53.976 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.976 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.3fgrvz25ex.pdb - 200 29913 application/octet-stream 13.6183ms -2026-01-28 14:10:53.980 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.Contracts.ad5k0tpyib.pdb - null null -2026-01-28 14:10:53.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.981 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.981 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.981 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.981 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.981 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:53.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:53.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:53.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:53.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:53.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:53.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:53.981 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:53.982 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:53.982 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:53.982 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:53.982 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:53.982 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:53.982 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:53.982 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:53.982 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.995 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Auditing.Contracts.ad5k0tpyib.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wqxp9ykz4o-{0}-ad5k0tpyib-ad5k0tpyib.gz' -2026-01-28 14:10:53.995 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:53.995 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.Contracts.ad5k0tpyib.pdb - 200 14417 application/octet-stream 14.6534ms -2026-01-28 14:10:53.999 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AuditLogging.Domain.Shared.er7pf6ix9i.pdb - null null -2026-01-28 14:10:53.999 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.999 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:53.999 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:53.999 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:53.999 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.000 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.000 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.000 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.000 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.000 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.000 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.000 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.000 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.000 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.000 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.014 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AuditLogging.Domain.Shared.er7pf6ix9i.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5199po5zxq-{0}-er7pf6ix9i-er7pf6ix9i.gz' -2026-01-28 14:10:54.014 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.014 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AuditLogging.Domain.Shared.er7pf6ix9i.pdb - 200 16493 application/octet-stream 15.2492ms -2026-01-28 14:10:54.018 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.c2wpqbl74n.pdb - null null -2026-01-28 14:10:54.018 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.018 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.018 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.018 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.018 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.019 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.019 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.019 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.019 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.019 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.019 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.019 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.019 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.019 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.019 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.019 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.019 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.019 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.019 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.019 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.019 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.019 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.032 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Authorization.c2wpqbl74n.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sb9kt3tht9-{0}-c2wpqbl74n-c2wpqbl74n.gz' -2026-01-28 14:10:54.033 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.033 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.c2wpqbl74n.pdb - 200 41330 application/octet-stream 14.8049ms -2026-01-28 14:10:54.036 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.Abstractions.njkrkpdqox.pdb - null null -2026-01-28 14:10:54.037 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.037 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.037 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.037 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.037 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.037 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.037 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.037 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.037 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.037 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.037 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.037 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.037 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.037 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.037 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.037 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.037 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.037 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.037 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.037 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.037 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.038 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.050 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Authorization.Abstractions.njkrkpdqox.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\09yc6y4n5e-{0}-njkrkpdqox-njkrkpdqox.gz' -2026-01-28 14:10:54.050 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.050 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.Abstractions.njkrkpdqox.pdb - 200 27181 application/octet-stream 14.2437ms -2026-01-28 14:10:54.055 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.gjl6v1jjym.pdb - null null -2026-01-28 14:10:54.055 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.055 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.055 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.055 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.055 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.056 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.056 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.056 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.056 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.056 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.056 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.056 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.056 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.056 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.056 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.066 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Autofac.gjl6v1jjym.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jpkrtenkjs-{0}-gjl6v1jjym-gjl6v1jjym.gz' -2026-01-28 14:10:54.066 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.066 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.gjl6v1jjym.pdb - 200 18693 application/octet-stream 11.4748ms -2026-01-28 14:10:54.070 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundJobs.Domain.Shared.5vpn00cswb.pdb - null null -2026-01-28 14:10:54.070 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.071 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.071 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.071 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.071 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.071 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.071 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.071 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.071 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.071 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.071 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.071 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.071 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.071 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.071 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.071 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.071 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.071 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.071 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.071 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.072 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.072 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.084 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BackgroundJobs.Domain.Shared.5vpn00cswb.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\htaazompkm-{0}-5vpn00cswb-5vpn00cswb.gz' -2026-01-28 14:10:54.084 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.084 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundJobs.Domain.Shared.5vpn00cswb.pdb - 200 13221 application/octet-stream 14.4321ms -2026-01-28 14:10:54.088 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundWorkers.huyj44uu0k.pdb - null null -2026-01-28 14:10:54.089 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.089 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.089 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.089 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.089 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.089 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.089 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.089 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.089 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.089 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.089 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.089 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.089 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.089 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.090 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.090 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.090 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.090 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.090 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.090 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.090 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.090 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.102 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BackgroundWorkers.huyj44uu0k.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ei0v3zqng-{0}-huyj44uu0k-huyj44uu0k.gz' -2026-01-28 14:10:54.102 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.102 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundWorkers.huyj44uu0k.pdb - 200 19469 application/octet-stream 13.4906ms -2026-01-28 14:10:54.106 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Caching.x1qmvuwbas.pdb - null null -2026-01-28 14:10:54.107 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.107 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.107 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.107 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.107 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.108 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.108 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.108 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.108 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.108 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.108 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.108 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.108 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.108 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.108 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.108 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.108 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.108 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.108 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.108 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.108 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.108 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.120 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Caching.x1qmvuwbas.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wokijgaifq-{0}-x1qmvuwbas-x1qmvuwbas.gz' -2026-01-28 14:10:54.120 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.120 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Caching.x1qmvuwbas.pdb - 200 37286 application/octet-stream 14.0002ms -2026-01-28 14:10:54.125 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Castle.Core.b02it10il0.pdb - null null -2026-01-28 14:10:54.126 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.126 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.126 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.126 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.126 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.126 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.126 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.126 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.127 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.127 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.127 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.127 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.127 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.127 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.127 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.127 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.127 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.127 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.127 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.127 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.127 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.127 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.140 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Castle.Core.b02it10il0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dte7v0ocsr-{0}-b02it10il0-b02it10il0.gz' -2026-01-28 14:10:54.140 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.140 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Castle.Core.b02it10il0.pdb - 200 15221 application/octet-stream 14.5773ms -2026-01-28 14:10:54.145 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Core.t1nnzj3qxb.pdb - null null -2026-01-28 14:10:54.146 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.146 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.146 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.146 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.146 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.146 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.146 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.146 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.146 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.146 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.146 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.146 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.146 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.146 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.147 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.147 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.147 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.147 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.147 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.147 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.147 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.147 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.159 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Core.t1nnzj3qxb.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c42x4ftr8l-{0}-t1nnzj3qxb-t1nnzj3qxb.gz' -2026-01-28 14:10:54.159 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.159 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Core.t1nnzj3qxb.pdb - 200 148177 application/octet-stream 13.6889ms -2026-01-28 14:10:54.164 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Data.9rv6w6qyku.pdb - null null -2026-01-28 14:10:54.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.164 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.164 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.164 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.164 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.164 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.165 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.165 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.165 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.165 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.165 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.165 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.165 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.165 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.165 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.165 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.165 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.165 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.165 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.165 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.165 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.165 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.178 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Data.9rv6w6qyku.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ze3wjukds-{0}-9rv6w6qyku-9rv6w6qyku.gz' -2026-01-28 14:10:54.178 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.178 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Data.9rv6w6qyku.pdb - 200 21821 application/octet-stream 14.5847ms -2026-01-28 14:10:54.182 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Ddd.Application.Contracts.giee71sla7.pdb - null null -2026-01-28 14:10:54.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.182 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.183 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.183 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.183 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.183 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.183 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.183 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.183 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.183 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.183 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.196 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Ddd.Application.Contracts.giee71sla7.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5aiafzhp1m-{0}-giee71sla7-giee71sla7.gz' -2026-01-28 14:10:54.196 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.196 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Ddd.Application.Contracts.giee71sla7.pdb - 200 23417 application/octet-stream 14.6544ms -2026-01-28 14:10:54.200 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.DistributedLocking.Abstractions.65nua6uxpe.pdb - null null -2026-01-28 14:10:54.201 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.201 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.201 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.201 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.201 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.201 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.201 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.201 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.201 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.201 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.201 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.201 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.201 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.201 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.201 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.201 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.201 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.201 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.202 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.202 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.202 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.202 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.215 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.DistributedLocking.Abstractions.65nua6uxpe.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\a8j0sb24cp-{0}-65nua6uxpe-65nua6uxpe.gz' -2026-01-28 14:10:54.215 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.215 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.DistributedLocking.Abstractions.65nua6uxpe.pdb - 200 14657 application/octet-stream 14.533ms -2026-01-28 14:10:54.219 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.iceog8f4b1.pdb - null null -2026-01-28 14:10:54.219 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.219 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.219 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.219 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.219 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.220 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.220 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.220 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.220 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.220 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.220 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.220 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.220 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.220 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.220 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.220 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.220 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.220 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.220 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.220 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.220 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.220 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.233 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.EventBus.iceog8f4b1.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c7ycdiyl76-{0}-iceog8f4b1-iceog8f4b1.gz' -2026-01-28 14:10:54.234 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.234 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.iceog8f4b1.pdb - 200 37630 application/octet-stream 14.8797ms -2026-01-28 14:10:54.246 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.Abstractions.xi5e4z12z9.pdb - null null -2026-01-28 14:10:54.247 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.247 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.247 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.247 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.247 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.247 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.247 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.247 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.247 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.247 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.247 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.247 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.247 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.247 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.248 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.248 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.248 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.248 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.248 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.248 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.248 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.248 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.261 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.EventBus.Abstractions.xi5e4z12z9.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\w7l86von3o-{0}-xi5e4z12z9-xi5e4z12z9.gz' -2026-01-28 14:10:54.261 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.261 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.Abstractions.xi5e4z12z9.pdb - 200 20237 application/octet-stream 14.4475ms -2026-01-28 14:10:54.265 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ExceptionHandling.25h2gy8c5p.pdb - null null -2026-01-28 14:10:54.265 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.265 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.265 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.265 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.265 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.266 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.266 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.266 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.266 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.266 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.266 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.266 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.266 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.266 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.266 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.266 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.266 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.266 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.266 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.266 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.266 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.266 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.278 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ExceptionHandling.25h2gy8c5p.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\m6s0vb39gb-{0}-25h2gy8c5p-25h2gy8c5p.gz' -2026-01-28 14:10:54.278 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.279 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ExceptionHandling.25h2gy8c5p.pdb - 200 20157 application/octet-stream 13.767ms -2026-01-28 14:10:54.283 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Application.Contracts.0urd6kcrgp.pdb - null null -2026-01-28 14:10:54.283 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.283 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.283 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.283 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.283 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.283 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.283 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.284 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.284 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.284 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.284 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.284 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.284 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.284 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.284 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.284 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.284 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.284 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.284 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.284 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.284 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.284 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.297 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Application.Contracts.0urd6kcrgp.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0ru1qvb3x4-{0}-0urd6kcrgp-0urd6kcrgp.gz' -2026-01-28 14:10:54.297 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.297 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Application.Contracts.0urd6kcrgp.pdb - 200 16981 application/octet-stream 14.7306ms -2026-01-28 14:10:54.301 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Domain.Shared.4mozmqu5fv.pdb - null null -2026-01-28 14:10:54.301 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.301 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.301 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.301 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.301 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.302 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.302 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.302 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.302 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.302 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.302 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.302 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.302 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.302 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.302 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.302 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.302 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.302 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.302 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.302 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.302 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.302 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.315 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Domain.Shared.4mozmqu5fv.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dnjx07a9gy-{0}-4mozmqu5fv-4mozmqu5fv.gz' -2026-01-28 14:10:54.315 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.315 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Domain.Shared.4mozmqu5fv.pdb - 200 18405 application/octet-stream 14.3404ms -2026-01-28 14:10:54.319 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.HttpApi.Client.3n7n0nm412.pdb - null null -2026-01-28 14:10:54.320 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.320 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.320 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.320 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.320 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.320 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.320 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.320 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.320 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.320 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.321 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.321 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.321 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.321 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.321 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.321 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.321 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.321 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.333 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.HttpApi.Client.3n7n0nm412.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xephdxvmqy-{0}-3n7n0nm412-3n7n0nm412.gz' -2026-01-28 14:10:54.333 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.334 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.HttpApi.Client.3n7n0nm412.pdb - 200 16661 application/octet-stream 14.441ms -2026-01-28 14:10:54.338 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Features.e0wztgo5kc.pdb - null null -2026-01-28 14:10:54.339 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.339 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.339 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.339 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.339 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.339 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.339 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.339 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.339 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.339 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.339 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.339 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.339 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.339 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.340 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.340 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.340 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.340 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.340 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.340 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.340 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.340 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.351 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Features.e0wztgo5kc.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lwwrm2rnuk-{0}-e0wztgo5kc-e0wztgo5kc.gz' -2026-01-28 14:10:54.351 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.351 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Features.e0wztgo5kc.pdb - 200 31093 application/octet-stream 12.9256ms -2026-01-28 14:10:54.356 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.GlobalFeatures.i3mx9avsa1.pdb - null null -2026-01-28 14:10:54.356 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.356 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.356 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.356 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.356 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.357 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.357 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.357 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.357 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.357 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.357 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.357 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.357 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.357 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.357 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.357 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.357 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.357 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.357 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.357 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.358 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.358 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.372 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.GlobalFeatures.i3mx9avsa1.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8hrz94lbbq-{0}-i3mx9avsa1-i3mx9avsa1.gz' -2026-01-28 14:10:54.372 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.372 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.GlobalFeatures.i3mx9avsa1.pdb - 200 20401 application/octet-stream 16.0417ms -2026-01-28 14:10:54.376 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Guids.trl9ec6i34.pdb - null null -2026-01-28 14:10:54.377 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.377 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.377 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.377 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.377 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.378 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.378 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.378 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.378 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.378 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.378 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.378 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.378 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.378 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.378 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.378 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.378 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.378 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.378 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.378 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.378 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.378 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.391 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Guids.trl9ec6i34.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0qqhgjay94-{0}-trl9ec6i34-trl9ec6i34.gz' -2026-01-28 14:10:54.391 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.391 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Guids.trl9ec6i34.pdb - 200 14061 application/octet-stream 14.5237ms -2026-01-28 14:10:54.396 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.e49tj9fcht.pdb - null null -2026-01-28 14:10:54.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.396 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.396 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.396 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.396 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.397 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.397 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.397 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.397 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.397 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.397 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.397 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.397 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.397 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.397 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.397 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.397 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.397 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.397 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.397 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.397 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.397 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.411 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.e49tj9fcht.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b3mu9af069-{0}-e49tj9fcht-e49tj9fcht.gz' -2026-01-28 14:10:54.411 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.411 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.e49tj9fcht.pdb - 200 31453 application/octet-stream 15.2716ms -2026-01-28 14:10:54.415 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Abstractions.k3c9afe7hi.pdb - null null -2026-01-28 14:10:54.416 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.416 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.416 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.416 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.416 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.416 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.416 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.416 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.416 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.416 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.416 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.416 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.416 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.416 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.417 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.417 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.417 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.417 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.417 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.417 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.417 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.417 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.430 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Abstractions.k3c9afe7hi.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j4y3kuv6se-{0}-k3c9afe7hi-k3c9afe7hi.gz' -2026-01-28 14:10:54.430 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.430 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Abstractions.k3c9afe7hi.pdb - 200 13525 application/octet-stream 14.807ms -2026-01-28 14:10:54.434 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.yru01o8vkp.pdb - null null -2026-01-28 14:10:54.434 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.434 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.434 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.434 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.434 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.435 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.435 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.435 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.435 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.435 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.435 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.435 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.435 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.435 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.435 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.435 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.435 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.435 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.435 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.435 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.435 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.435 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.447 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.yru01o8vkp.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ttya30eyt8-{0}-yru01o8vkp-yru01o8vkp.gz' -2026-01-28 14:10:54.447 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.448 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.yru01o8vkp.pdb - 200 38918 application/octet-stream 13.6546ms -2026-01-28 14:10:54.452 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.3tflefedmx.pdb - null null -2026-01-28 14:10:54.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.453 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.453 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.453 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.453 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.453 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.454 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.454 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.454 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.454 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.454 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.454 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.454 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.454 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.454 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.454 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.454 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.454 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.454 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.454 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.454 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.454 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.466 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.IdentityModel.3tflefedmx.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\d3rz4s2afx-{0}-3tflefedmx-3tflefedmx.gz' -2026-01-28 14:10:54.466 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.466 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.3tflefedmx.pdb - 200 16433 application/octet-stream 14.0065ms -2026-01-28 14:10:54.471 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Application.Contracts.csmzqgy4d0.pdb - null null -2026-01-28 14:10:54.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.472 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.472 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.472 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.472 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.472 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.472 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.473 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.473 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.473 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.473 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.473 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.473 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.473 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.473 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.486 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Application.Contracts.csmzqgy4d0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\h1go2ee35q-{0}-csmzqgy4d0-csmzqgy4d0.gz' -2026-01-28 14:10:54.486 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.486 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Application.Contracts.csmzqgy4d0.pdb - 200 20665 application/octet-stream 14.8817ms -2026-01-28 14:10:54.491 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Domain.Shared.earp2x5g6u.pdb - null null -2026-01-28 14:10:54.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.491 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.492 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.492 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.492 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.492 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.492 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.492 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.492 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.492 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.492 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.492 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.492 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.492 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.492 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.492 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.492 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.492 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.492 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.492 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.493 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.493 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.505 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Domain.Shared.earp2x5g6u.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wq3qylwiyp-{0}-earp2x5g6u-earp2x5g6u.gz' -2026-01-28 14:10:54.506 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.506 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Domain.Shared.earp2x5g6u.pdb - 200 23785 application/octet-stream 14.8173ms -2026-01-28 14:10:54.511 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.HttpApi.Client.4ey4wjeneg.pdb - null null -2026-01-28 14:10:54.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.512 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.512 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.512 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.512 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.512 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.512 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.512 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.513 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.513 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.513 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.513 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.513 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.513 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.513 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.524 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.HttpApi.Client.4ey4wjeneg.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0u48eqlsj4-{0}-4ey4wjeneg-4ey4wjeneg.gz' -2026-01-28 14:10:54.524 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.524 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.HttpApi.Client.4ey4wjeneg.pdb - 200 23337 application/octet-stream 12.9226ms -2026-01-28 14:10:54.529 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.IdentityModel.biic7mtw2y.pdb - null null -2026-01-28 14:10:54.529 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.529 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.529 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.529 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.529 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.529 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.529 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.529 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.530 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.530 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.530 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.530 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.530 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.530 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.530 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.530 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.530 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.530 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.530 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.530 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.530 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.530 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.541 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.IdentityModel.biic7mtw2y.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\poi5v0je1c-{0}-biic7mtw2y-biic7mtw2y.gz' -2026-01-28 14:10:54.541 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.542 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.IdentityModel.biic7mtw2y.pdb - 200 20817 application/octet-stream 12.7695ms -2026-01-28 14:10:54.547 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.wxbyyf07mz.pdb - null null -2026-01-28 14:10:54.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.547 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.548 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.548 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.548 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.548 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.548 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.548 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.548 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.548 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.548 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.548 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.548 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.548 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.548 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.548 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.548 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.548 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.561 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.wxbyyf07mz.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rrchruuh0t-{0}-wxbyyf07mz-wxbyyf07mz.gz' -2026-01-28 14:10:54.561 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.561 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.wxbyyf07mz.pdb - 200 13757 application/octet-stream 14.6113ms -2026-01-28 14:10:54.565 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.Abstractions.b6z6t2mhzy.pdb - null null -2026-01-28 14:10:54.566 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.566 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.566 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.566 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.566 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.566 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.566 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.566 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.566 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.566 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.566 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.566 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.566 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.566 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.566 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.566 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.566 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.566 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.566 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.567 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.567 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.567 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.580 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.Abstractions.b6z6t2mhzy.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\u9w5uxptpu-{0}-b6z6t2mhzy-b6z6t2mhzy.gz' -2026-01-28 14:10:54.580 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.581 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.Abstractions.b6z6t2mhzy.pdb - 200 13249 application/octet-stream 15.3119ms -2026-01-28 14:10:54.584 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.SystemTextJson.rdlvucrzj7.pdb - null null -2026-01-28 14:10:54.584 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.584 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.584 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.585 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.585 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.585 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.585 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.585 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.585 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.585 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.585 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.585 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.585 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.585 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.585 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.585 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.585 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.585 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.585 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.585 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.585 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.585 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.597 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.SystemTextJson.rdlvucrzj7.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4rl2glc87e-{0}-rdlvucrzj7-rdlvucrzj7.gz' -2026-01-28 14:10:54.598 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.598 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.SystemTextJson.rdlvucrzj7.pdb - 200 21501 application/octet-stream 13.6661ms -2026-01-28 14:10:54.601 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.ellkzq2obz.pdb - null null -2026-01-28 14:10:54.601 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.601 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.602 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.602 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.602 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.602 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.602 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.602 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.602 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.602 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.602 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.602 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.614 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Localization.ellkzq2obz.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9jz0202bvx-{0}-ellkzq2obz-ellkzq2obz.gz' -2026-01-28 14:10:54.614 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.614 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.ellkzq2obz.pdb - 200 34682 application/octet-stream 13.4471ms -2026-01-28 14:10:54.618 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.Abstractions.e2czzeh6g0.pdb - null null -2026-01-28 14:10:54.618 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.619 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.619 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.619 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.619 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.619 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.619 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.619 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.619 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.619 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.619 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.619 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.619 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.619 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.620 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.632 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Localization.Abstractions.e2czzeh6g0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nql43ug6yv-{0}-e2czzeh6g0-e2czzeh6g0.gz' -2026-01-28 14:10:54.632 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.632 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.Abstractions.e2czzeh6g0.pdb - 200 16505 application/octet-stream 13.8386ms -2026-01-28 14:10:54.636 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Mapperly.xzmrwcbuer.pdb - null null -2026-01-28 14:10:54.637 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.637 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.637 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.637 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.637 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.637 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.637 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.637 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.637 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.637 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.637 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.637 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.637 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.637 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.637 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.637 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.637 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.637 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.637 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.637 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.637 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.638 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.650 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Mapperly.xzmrwcbuer.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ir90d0l0q4-{0}-xzmrwcbuer-xzmrwcbuer.gz' -2026-01-28 14:10:54.650 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.650 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Mapperly.xzmrwcbuer.pdb - 200 18489 application/octet-stream 13.7787ms -2026-01-28 14:10:54.654 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Minify.jd3swzgz81.pdb - null null -2026-01-28 14:10:54.655 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.655 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.655 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.655 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.655 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.655 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.655 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.655 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.655 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.655 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.655 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.655 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.655 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.655 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.656 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.656 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.656 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.656 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.656 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.656 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.656 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.656 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.669 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Minify.jd3swzgz81.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6nicogsytc-{0}-jd3swzgz81-jd3swzgz81.gz' -2026-01-28 14:10:54.669 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.669 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Minify.jd3swzgz81.pdb - 200 14637 application/octet-stream 14.6868ms -2026-01-28 14:10:54.673 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.m645p8frzn.pdb - null null -2026-01-28 14:10:54.674 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.674 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.674 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.674 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.674 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.674 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.674 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.674 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.674 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.674 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.674 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.674 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.674 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.674 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.675 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.675 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.675 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.675 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.675 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.675 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.675 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.675 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.688 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MultiTenancy.m645p8frzn.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xypgrhxtpa-{0}-m645p8frzn-m645p8frzn.gz' -2026-01-28 14:10:54.688 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.688 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.m645p8frzn.pdb - 200 21073 application/octet-stream 15.0841ms -2026-01-28 14:10:54.693 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.Abstractions.6usxju90tg.pdb - null null -2026-01-28 14:10:54.694 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.694 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.694 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.694 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.694 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.694 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.694 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.694 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.694 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.694 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.695 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.695 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.695 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.695 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.695 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.695 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.695 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.695 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.695 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.695 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.695 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.695 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.707 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MultiTenancy.Abstractions.6usxju90tg.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bwd6m19o6e-{0}-6usxju90tg-6usxju90tg.gz' -2026-01-28 14:10:54.707 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.707 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.Abstractions.6usxju90tg.pdb - 200 19661 application/octet-stream 13.877ms -2026-01-28 14:10:54.712 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectExtending.vubnqxtt45.pdb - null null -2026-01-28 14:10:54.713 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.713 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.713 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.713 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.713 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.713 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.713 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.713 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.713 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.713 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.713 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.713 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.713 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.713 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.714 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.714 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.714 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.714 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.714 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.714 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.714 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.714 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.727 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ObjectExtending.vubnqxtt45.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wybocaa0up-{0}-vubnqxtt45-vubnqxtt45.gz' -2026-01-28 14:10:54.728 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.728 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectExtending.vubnqxtt45.pdb - 200 31977 application/octet-stream 15.3289ms -2026-01-28 14:10:54.732 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectMapping.5ggcg7w9e7.pdb - null null -2026-01-28 14:10:54.732 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.732 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.732 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.732 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.732 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.733 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.733 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.733 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.733 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.733 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.733 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.733 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.733 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.733 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.733 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.733 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.733 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.733 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.733 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.733 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.733 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.733 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.747 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ObjectMapping.5ggcg7w9e7.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fsnac4k4sd-{0}-5ggcg7w9e7-5ggcg7w9e7.gz' -2026-01-28 14:10:54.747 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.747 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectMapping.5ggcg7w9e7.pdb - 200 17133 application/octet-stream 15.5985ms -2026-01-28 14:10:54.752 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.OpenIddict.Domain.Shared.z584yb9x48.pdb - null null -2026-01-28 14:10:54.752 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.752 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.752 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.752 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.752 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.753 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.753 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.753 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.753 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.753 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.753 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.753 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.753 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.753 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.753 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.753 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.753 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.753 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.753 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.753 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.753 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.753 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.766 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.OpenIddict.Domain.Shared.z584yb9x48.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ofhohlcsdd-{0}-z584yb9x48-z584yb9x48.gz' -2026-01-28 14:10:54.766 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.766 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.OpenIddict.Domain.Shared.z584yb9x48.pdb - 200 17397 application/octet-stream 14.4839ms -2026-01-28 14:10:54.770 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Application.Contracts.yiquol1hlc.pdb - null null -2026-01-28 14:10:54.771 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.771 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.771 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.771 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.771 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.771 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.771 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.771 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.771 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.771 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.771 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.772 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.772 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.772 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.772 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.772 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.772 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.772 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.772 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.772 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.772 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.772 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.784 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Application.Contracts.yiquol1hlc.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0j5tpaf1fb-{0}-yiquol1hlc-yiquol1hlc.gz' -2026-01-28 14:10:54.784 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.784 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Application.Contracts.yiquol1hlc.pdb - 200 18373 application/octet-stream 13.9058ms -2026-01-28 14:10:54.797 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Domain.Shared.vduqctl6j9.pdb - null null -2026-01-28 14:10:54.797 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.797 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.798 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.798 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.798 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.798 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.798 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.798 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.798 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.798 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.798 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.798 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.798 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.798 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.799 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.813 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Domain.Shared.vduqctl6j9.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c9ti4wxngh-{0}-vduqctl6j9-vduqctl6j9.gz' -2026-01-28 14:10:54.813 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.813 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Domain.Shared.vduqctl6j9.pdb - 200 16501 application/octet-stream 15.9793ms -2026-01-28 14:10:54.818 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.HttpApi.Client.3dsrqtlur0.pdb - null null -2026-01-28 14:10:54.818 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.818 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.818 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.818 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.818 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.819 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.819 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.819 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.819 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.819 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.819 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.819 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.819 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.819 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.820 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.840 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.HttpApi.Client.3dsrqtlur0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7d7e24takc-{0}-3dsrqtlur0-3dsrqtlur0.gz' -2026-01-28 14:10:54.840 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.840 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.HttpApi.Client.3dsrqtlur0.pdb - 200 18361 application/octet-stream 22.5815ms -2026-01-28 14:10:54.847 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.RemoteServices.f0xptgiufw.pdb - null null -2026-01-28 14:10:54.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.847 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.848 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.848 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.848 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.848 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.848 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.848 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.848 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.848 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.848 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.848 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.848 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.848 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.849 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.871 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.RemoteServices.f0xptgiufw.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uib6a0l2w6-{0}-f0xptgiufw-f0xptgiufw.gz' -2026-01-28 14:10:54.871 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.871 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.RemoteServices.f0xptgiufw.pdb - 200 16053 application/octet-stream 24.4507ms -2026-01-28 14:10:54.881 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Security.zhp0sm48kb.pdb - null null -2026-01-28 14:10:54.882 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.882 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.882 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.882 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.882 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.883 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.883 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.883 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.883 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.883 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.883 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.883 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.883 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.883 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.884 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.895 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Security.zhp0sm48kb.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sx6n9iy4yj-{0}-zhp0sm48kb-zhp0sm48kb.gz' -2026-01-28 14:10:54.895 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.895 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Security.zhp0sm48kb.pdb - 200 29941 application/octet-stream 13.4785ms -2026-01-28 14:10:54.900 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Serialization.iselyci50i.pdb - null null -2026-01-28 14:10:54.900 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.901 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.901 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.901 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.901 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.901 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.901 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.901 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.901 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.901 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.901 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.901 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.901 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.901 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.901 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.901 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.901 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.901 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.916 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Serialization.iselyci50i.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ohz7m9cvuj-{0}-iselyci50i-iselyci50i.gz' -2026-01-28 14:10:54.917 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.917 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Serialization.iselyci50i.pdb - 200 13901 application/octet-stream 16.7849ms -2026-01-28 14:10:54.931 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Application.Contracts.oa8ze5tkwx.pdb - null null -2026-01-28 14:10:54.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.931 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.931 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.931 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.931 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.932 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.932 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.932 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.932 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.932 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.932 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.932 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.932 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.932 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.932 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.932 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.932 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.932 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.932 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.932 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.932 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.932 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.959 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Application.Contracts.oa8ze5tkwx.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n5hx9tj0h8-{0}-oa8ze5tkwx-oa8ze5tkwx.gz' -2026-01-28 14:10:54.959 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.959 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Application.Contracts.oa8ze5tkwx.pdb - 200 17249 application/octet-stream 28.8788ms -2026-01-28 14:10:54.969 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Domain.Shared.rb0zy7dgue.pdb - null null -2026-01-28 14:10:54.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.970 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.970 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.970 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.970 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.970 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:54.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:54.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:54.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:54.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:54.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:54.970 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:54.971 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:54.971 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:54.971 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:54.971 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:54.971 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:54.971 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:54.971 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:54.971 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.989 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Domain.Shared.rb0zy7dgue.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gpxmodrted-{0}-rb0zy7dgue-rb0zy7dgue.gz' -2026-01-28 14:10:54.989 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:54.989 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Domain.Shared.rb0zy7dgue.pdb - 200 15881 application/octet-stream 19.8033ms -2026-01-28 14:10:54.998 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.HttpApi.Client.219qgzx23p.pdb - null null -2026-01-28 14:10:54.999 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.999 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:54.999 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:54.999 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:54.999 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:54.999 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.000 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.000 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.000 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.000 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.000 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.000 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.000 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.000 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.000 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.017 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.HttpApi.Client.219qgzx23p.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vwkga7y8v6-{0}-219qgzx23p-219qgzx23p.gz' -2026-01-28 14:10:55.017 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.017 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.HttpApi.Client.219qgzx23p.pdb - 200 17273 application/octet-stream 19.193ms -2026-01-28 14:10:55.024 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Settings.zg210hgmt5.pdb - null null -2026-01-28 14:10:55.025 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.025 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.025 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.025 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.025 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.025 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.026 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.026 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.026 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.026 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.026 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.026 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.026 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.026 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.027 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.043 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Settings.zg210hgmt5.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\69ib14dhz4-{0}-zg210hgmt5-zg210hgmt5.gz' -2026-01-28 14:10:55.043 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.044 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Settings.zg210hgmt5.pdb - 200 24709 application/octet-stream 19.4635ms -2026-01-28 14:10:55.050 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Application.Contracts.2kqwaqfq07.pdb - null null -2026-01-28 14:10:55.050 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.050 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.050 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.050 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.050 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.051 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.051 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.051 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.051 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.051 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.051 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.051 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.051 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.051 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.051 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.051 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.051 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.051 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.051 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.051 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.051 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.052 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.069 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Application.Contracts.2kqwaqfq07.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\usk06ilw8g-{0}-2kqwaqfq07-2kqwaqfq07.gz' -2026-01-28 14:10:55.069 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.070 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Application.Contracts.2kqwaqfq07.pdb - 200 16305 application/octet-stream 19.8576ms -2026-01-28 14:10:55.075 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Domain.Shared.8e6fpjlw3z.pdb - null null -2026-01-28 14:10:55.076 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.076 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.076 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.076 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.076 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.076 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.076 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.076 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.076 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.076 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.076 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.076 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.076 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.076 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.077 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.077 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.077 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.077 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.077 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.077 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.077 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.077 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.089 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Domain.Shared.8e6fpjlw3z.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\byh2ge6bdr-{0}-8e6fpjlw3z-8e6fpjlw3z.gz' -2026-01-28 14:10:55.089 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.089 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Domain.Shared.8e6fpjlw3z.pdb - 200 15609 application/octet-stream 13.7319ms -2026-01-28 14:10:55.093 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.HttpApi.Client.0ep6vejlyv.pdb - null null -2026-01-28 14:10:55.093 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.093 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.093 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.094 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.094 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.094 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.094 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.094 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.094 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.094 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.094 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.094 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.094 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.094 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.094 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.094 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.094 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.094 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.094 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.094 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.094 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.094 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.105 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.HttpApi.Client.0ep6vejlyv.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b6ncobn1go-{0}-0ep6vejlyv-0ep6vejlyv.gz' -2026-01-28 14:10:55.105 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.105 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.HttpApi.Client.0ep6vejlyv.pdb - 200 17253 application/octet-stream 12.4368ms -2026-01-28 14:10:55.109 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Threading.ltl7sj60qd.pdb - null null -2026-01-28 14:10:55.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.110 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.110 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.110 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.110 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.110 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.110 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.110 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.110 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.110 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.110 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.110 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.110 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.110 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.110 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.110 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.110 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.110 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.110 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.110 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.110 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.111 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.122 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Threading.ltl7sj60qd.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\m4kji2jf2d-{0}-ltl7sj60qd-ltl7sj60qd.gz' -2026-01-28 14:10:55.122 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.122 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Threading.ltl7sj60qd.pdb - 200 22745 application/octet-stream 12.9339ms -2026-01-28 14:10:55.127 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Timing.4ite7giifl.pdb - null null -2026-01-28 14:10:55.127 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.127 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.127 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.127 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.127 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.128 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.128 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.128 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.128 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.128 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.128 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.128 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.128 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.128 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.128 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.128 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.128 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.128 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.128 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.128 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.128 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.128 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.141 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Timing.4ite7giifl.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ku2s5mtpx-{0}-4ite7giifl-4ite7giifl.gz' -2026-01-28 14:10:55.141 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.141 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Timing.4ite7giifl.pdb - 200 17233 application/octet-stream 14.0773ms -2026-01-28 14:10:55.146 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.hbvsia4uct.pdb - null null -2026-01-28 14:10:55.147 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.147 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.147 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.147 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.147 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.147 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.147 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.147 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.147 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.147 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.147 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.147 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.147 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.147 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.147 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.148 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.148 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.148 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.148 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.148 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.148 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.148 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.161 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.UI.hbvsia4uct.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ojvava7kjz-{0}-hbvsia4uct-hbvsia4uct.gz' -2026-01-28 14:10:55.161 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.161 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.hbvsia4uct.pdb - 200 15269 application/octet-stream 15.1634ms -2026-01-28 14:10:55.168 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.Navigation.xd013kg4jh.pdb - null null -2026-01-28 14:10:55.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.169 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.169 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.169 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.169 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.169 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.170 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.170 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.170 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.170 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.170 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.170 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.170 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.170 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.170 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.170 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.170 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.170 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.170 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.170 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.184 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.UI.Navigation.xd013kg4jh.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\opi85np659-{0}-xd013kg4jh-xd013kg4jh.gz' -2026-01-28 14:10:55.184 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.184 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.Navigation.xd013kg4jh.pdb - 200 25665 application/octet-stream 15.5239ms -2026-01-28 14:10:55.190 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Uow.re76cfcetz.pdb - null null -2026-01-28 14:10:55.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.191 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.191 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.191 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.191 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.191 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.191 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.191 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.191 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.191 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.191 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.191 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.191 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.191 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.191 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.191 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.191 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.191 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.204 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Uow.re76cfcetz.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\37xxpsk7fy-{0}-re76cfcetz-re76cfcetz.gz' -2026-01-28 14:10:55.204 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.204 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Uow.re76cfcetz.pdb - 200 26921 application/octet-stream 14.9613ms -2026-01-28 14:10:55.210 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Abstractions.8nynefv6wf.pdb - null null -2026-01-28 14:10:55.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.210 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.210 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.210 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.210 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.211 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.211 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.211 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.211 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.211 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.211 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.211 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.211 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.211 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.211 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.223 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Users.Abstractions.8nynefv6wf.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\02tit97twy-{0}-8nynefv6wf-8nynefv6wf.gz' -2026-01-28 14:10:55.223 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.223 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Abstractions.8nynefv6wf.pdb - 200 16949 application/octet-stream 13.4037ms -2026-01-28 14:10:55.228 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Domain.Shared.l4ascx0wfo.pdb - null null -2026-01-28 14:10:55.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.229 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.229 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.229 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.229 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.229 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.229 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.230 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.230 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.230 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.230 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.230 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.230 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.230 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.230 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.242 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Users.Domain.Shared.l4ascx0wfo.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\i5q2ei5dis-{0}-l4ascx0wfo-l4ascx0wfo.gz' -2026-01-28 14:10:55.242 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.242 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Domain.Shared.l4ascx0wfo.pdb - 200 13285 application/octet-stream 14.2793ms -2026-01-28 14:10:55.247 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.ksfguea92v.pdb - null null -2026-01-28 14:10:55.247 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.247 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.247 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.247 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.247 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.248 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.248 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.248 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.248 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.248 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.248 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.248 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.248 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.248 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.248 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.261 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Validation.ksfguea92v.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wypl5pd007-{0}-ksfguea92v-ksfguea92v.gz' -2026-01-28 14:10:55.261 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.261 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.ksfguea92v.pdb - 200 24513 application/octet-stream 14.6302ms -2026-01-28 14:10:55.266 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.Abstractions.zjvjxeb6lj.pdb - null null -2026-01-28 14:10:55.266 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.266 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.266 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.266 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.266 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.267 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.267 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.267 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.267 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.267 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.267 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.267 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.267 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.267 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.267 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.267 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.267 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.267 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.267 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.267 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.267 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.267 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.280 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Validation.Abstractions.zjvjxeb6lj.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mb6vj9j06o-{0}-zjvjxeb6lj-zjvjxeb6lj.gz' -2026-01-28 14:10:55.280 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.280 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.Abstractions.zjvjxeb6lj.pdb - 200 14137 application/octet-stream 13.9032ms -2026-01-28 14:10:55.285 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.VirtualFileSystem.kcqfs0t7tk.pdb - null null -2026-01-28 14:10:55.285 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.285 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.286 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.286 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.286 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.286 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.286 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.286 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.286 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.286 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.286 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.286 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.286 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.286 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.287 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.298 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.VirtualFileSystem.kcqfs0t7tk.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9vnkhoiruq-{0}-kcqfs0t7tk-kcqfs0t7tk.gz' -2026-01-28 14:10:55.298 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.298 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.VirtualFileSystem.kcqfs0t7tk.pdb - 200 21449 application/octet-stream 13.4941ms -2026-01-28 14:10:55.303 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.2ctxo9q0pu.pdb - null null -2026-01-28 14:10:55.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.303 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.303 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.303 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.303 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.303 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.304 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.304 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.304 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.304 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.304 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.304 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.304 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.304 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.304 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.304 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.304 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.304 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.304 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.304 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.316 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.2ctxo9q0pu.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\21kkcfw31s-{0}-2ctxo9q0pu-2ctxo9q0pu.gz' -2026-01-28 14:10:55.316 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.316 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.2ctxo9q0pu.pdb - 200 32145 application/octet-stream 13.4112ms -2026-01-28 14:10:55.320 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Autofac.le1wnuzdja.wasm - null null -2026-01-28 14:10:55.321 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.321 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.322 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.322 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.322 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.322 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.322 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.322 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.322 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.322 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.322 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.322 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.322 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.322 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.322 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.322 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.322 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.322 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.322 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.322 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.322 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.322 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.340 +03:00 [INF] Sending file. Request path: '_framework/Autofac.le1wnuzdja.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\le2bmj2hd0-{0}-le1wnuzdja-le1wnuzdja.gz' -2026-01-28 14:10:55.340 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.340 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Autofac.le1wnuzdja.wasm - 200 375661 application/wasm 19.6887ms -2026-01-28 14:10:55.365 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Autofac.Extensions.DependencyInjection.slmisa3m0h.wasm - null null -2026-01-28 14:10:55.366 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.366 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.366 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.366 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.366 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.366 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.366 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.366 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.366 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.366 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.366 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.366 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.366 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.366 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.367 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.367 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.367 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.367 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.367 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.367 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.367 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.367 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.380 +03:00 [INF] Sending file. Request path: '_framework/Autofac.Extensions.DependencyInjection.slmisa3m0h.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4h1lb8bivh-{0}-slmisa3m0h-slmisa3m0h.gz' -2026-01-28 14:10:55.380 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.380 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Autofac.Extensions.DependencyInjection.slmisa3m0h.wasm - 200 28470 application/wasm 15.7199ms -2026-01-28 14:10:55.385 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Autofac.Extras.DynamicProxy.tlrq82knod.wasm - null null -2026-01-28 14:10:55.386 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.386 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.386 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.386 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.386 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.386 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.386 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.386 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.386 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.386 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.386 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.386 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.386 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.386 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.387 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.387 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.387 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.387 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.387 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.387 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.387 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.387 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.401 +03:00 [INF] Sending file. Request path: '_framework/Autofac.Extras.DynamicProxy.tlrq82knod.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5nm56h6008-{0}-tlrq82knod-tlrq82knod.gz' -2026-01-28 14:10:55.401 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.401 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Autofac.Extras.DynamicProxy.tlrq82knod.wasm - 200 20278 application/wasm 16.0961ms -2026-01-28 14:10:55.406 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Castle.Core.dr7ya1fwgr.wasm - null null -2026-01-28 14:10:55.406 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.406 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.406 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.406 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.406 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.407 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.407 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.407 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.407 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.407 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.407 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.407 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.407 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.407 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.407 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.424 +03:00 [INF] Sending file. Request path: '_framework/Castle.Core.dr7ya1fwgr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mehy9ugib8-{0}-dr7ya1fwgr-dr7ya1fwgr.gz' -2026-01-28 14:10:55.424 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.424 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Castle.Core.dr7ya1fwgr.wasm - 200 388461 application/wasm 18.7872ms -2026-01-28 14:10:55.430 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Castle.Core.AsyncInterceptor.phbi0db4mk.wasm - null null -2026-01-28 14:10:55.431 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.431 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.431 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.431 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.431 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.431 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.431 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.431 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.431 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.431 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.431 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.431 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.431 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.431 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.431 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.431 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.432 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.432 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.432 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.432 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.432 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.432 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.443 +03:00 [INF] Sending file. Request path: '_framework/Castle.Core.AsyncInterceptor.phbi0db4mk.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dnds4j2x25-{0}-phbi0db4mk-phbi0db4mk.gz' -2026-01-28 14:10:55.443 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.443 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Castle.Core.AsyncInterceptor.phbi0db4mk.wasm - 200 19254 application/wasm 13.2569ms -2026-01-28 14:10:55.448 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Duende.IdentityModel.w8uizqq8rq.wasm - null null -2026-01-28 14:10:55.449 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.450 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.450 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.450 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.450 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.450 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.450 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.450 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.450 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.450 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.450 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.450 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.450 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.450 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.450 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.450 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.450 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.450 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.450 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.450 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.450 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.450 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.464 +03:00 [INF] Sending file. Request path: '_framework/Duende.IdentityModel.w8uizqq8rq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2h3cgpc6ac-{0}-w8uizqq8rq-w8uizqq8rq.gz' -2026-01-28 14:10:55.464 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.464 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Duende.IdentityModel.w8uizqq8rq.wasm - 200 202580 application/wasm 15.7559ms -2026-01-28 14:10:55.468 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/JetBrains.Annotations.30nyqsrum5.wasm - null null -2026-01-28 14:10:55.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.469 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.469 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.469 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.469 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.469 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.469 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.469 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.469 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.469 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.469 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.469 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.469 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.469 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.469 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.469 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.469 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.469 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.469 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.469 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.469 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.469 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.483 +03:00 [INF] Sending file. Request path: '_framework/JetBrains.Annotations.30nyqsrum5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6sdzj3kgop-{0}-30nyqsrum5-30nyqsrum5.gz' -2026-01-28 14:10:55.483 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.483 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/JetBrains.Annotations.30nyqsrum5.wasm - 200 122181 application/wasm 15.7149ms -2026-01-28 14:10:55.488 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Authorization.f7yamg8acn.wasm - null null -2026-01-28 14:10:55.489 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.489 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.489 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.489 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.489 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.489 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.489 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.489 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.489 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.489 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.489 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.489 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.489 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.489 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.490 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.490 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.490 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.490 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.490 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.490 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.490 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.490 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.504 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Authorization.f7yamg8acn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\y8t8qzdrbk-{0}-f7yamg8acn-f7yamg8acn.gz' -2026-01-28 14:10:55.504 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.504 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Authorization.f7yamg8acn.wasm - 200 45371 application/wasm 16.1269ms -2026-01-28 14:10:55.508 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.i180xx2qq9.wasm - null null -2026-01-28 14:10:55.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.509 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.509 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.509 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.509 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.509 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.509 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.509 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.510 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.510 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.510 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.510 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.510 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.510 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.510 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.522 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.i180xx2qq9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\00mrq6s2ss-{0}-i180xx2qq9-i180xx2qq9.gz' -2026-01-28 14:10:55.522 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.523 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.i180xx2qq9.wasm - 200 388973 application/wasm 14.7824ms -2026-01-28 14:10:55.532 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Authorization.8nosel0t6a.wasm - null null -2026-01-28 14:10:55.533 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.533 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.533 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.533 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.533 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.534 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.534 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.534 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.534 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.534 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.534 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.534 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.534 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.534 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.534 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.546 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.Authorization.8nosel0t6a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b9vfzkzuzt-{0}-8nosel0t6a-8nosel0t6a.gz' -2026-01-28 14:10:55.546 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.546 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Authorization.8nosel0t6a.wasm - 200 23862 application/wasm 13.3952ms -2026-01-28 14:10:55.550 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Forms.au92kshad9.wasm - null null -2026-01-28 14:10:55.550 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.551 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.551 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.551 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.551 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.551 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.551 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.551 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.551 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.551 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.551 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.551 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.551 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.551 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.551 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.551 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.551 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.551 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.551 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.551 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.551 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.552 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.564 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.Forms.au92kshad9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0l9h2m1r4h-{0}-au92kshad9-au92kshad9.gz' -2026-01-28 14:10:55.564 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.564 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Forms.au92kshad9.wasm - 200 37691 application/wasm 14.6328ms -2026-01-28 14:10:55.569 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Web.gl9seasc22.wasm - null null -2026-01-28 14:10:55.569 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.570 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.570 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.570 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.570 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.570 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.570 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.570 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.570 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.570 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.571 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.583 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.Web.gl9seasc22.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fqoi4if8m2-{0}-gl9seasc22-gl9seasc22.gz' -2026-01-28 14:10:55.583 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.583 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Web.gl9seasc22.wasm - 200 179023 application/wasm 14.3589ms -2026-01-28 14:10:55.588 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.9qaxkpf6y7.wasm - null null -2026-01-28 14:10:55.588 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.589 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.589 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.589 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.589 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.589 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.589 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.589 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.589 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.589 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.589 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.604 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.WebAssembly.9qaxkpf6y7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4vwfdqnp17-{0}-9qaxkpf6y7-9qaxkpf6y7.gz' -2026-01-28 14:10:55.604 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.604 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.9qaxkpf6y7.wasm - 200 155978 application/wasm 16.4385ms -2026-01-28 14:10:55.608 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.q8d1vzef3m.wasm - null null -2026-01-28 14:10:55.609 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.609 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.609 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.609 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.609 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.609 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.609 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.609 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.609 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.609 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.609 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.609 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.609 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.610 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.610 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.610 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.610 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.610 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.610 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.610 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.610 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.610 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.623 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.q8d1vzef3m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\19o2at4dip-{0}-q8d1vzef3m-q8d1vzef3m.gz' -2026-01-28 14:10:55.623 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.623 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.q8d1vzef3m.wasm - 200 96064 application/wasm 15.0578ms -2026-01-28 14:10:55.628 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Metadata.begmnasal1.wasm - null null -2026-01-28 14:10:55.628 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.629 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.629 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.629 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.629 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.629 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.629 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.629 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.629 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.629 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.629 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.629 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.629 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.629 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.629 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.629 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.629 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.629 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.629 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.629 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.629 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.630 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.640 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Metadata.begmnasal1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\94aawuaijs-{0}-begmnasal1-begmnasal1.gz' -2026-01-28 14:10:55.640 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.640 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Metadata.begmnasal1.wasm - 200 5942 application/wasm 12.8033ms -2026-01-28 14:10:55.645 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.WebUtilities.6cgd80d0to.wasm - null null -2026-01-28 14:10:55.645 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.646 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.646 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.646 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.646 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.646 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.646 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.646 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.646 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.646 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.646 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.646 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.646 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.646 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.647 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.659 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.WebUtilities.6cgd80d0to.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sk2xioyf5m-{0}-6cgd80d0to-6cgd80d0to.gz' -2026-01-28 14:10:55.659 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.659 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.WebUtilities.6cgd80d0to.wasm - 200 97088 application/wasm 14.1694ms -2026-01-28 14:10:55.663 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Bcl.AsyncInterfaces.a6wsrpgfw5.wasm - null null -2026-01-28 14:10:55.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.664 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.664 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.664 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.664 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.664 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.664 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.664 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.665 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.665 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.665 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.665 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.665 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.665 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.665 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.675 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Bcl.AsyncInterfaces.a6wsrpgfw5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\efezora84v-{0}-a6wsrpgfw5-a6wsrpgfw5.gz' -2026-01-28 14:10:55.675 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.675 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Bcl.AsyncInterfaces.a6wsrpgfw5.wasm - 200 9526 application/wasm 11.7009ms -2026-01-28 14:10:55.679 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.u1l3a5juxx.wasm - null null -2026-01-28 14:10:55.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.680 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.680 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.680 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.680 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.680 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.681 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.681 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.681 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.681 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.681 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.681 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.681 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.681 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.681 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.692 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.u1l3a5juxx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wloi09r5kq-{0}-u1l3a5juxx-u1l3a5juxx.gz' -2026-01-28 14:10:55.692 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.692 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.u1l3a5juxx.wasm - 200 56123 application/wasm 12.5558ms -2026-01-28 14:10:55.696 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Abstractions.vvlexwbaez.wasm - null null -2026-01-28 14:10:55.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.697 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.697 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.697 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.697 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.697 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.697 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.697 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.697 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.697 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.697 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.697 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.697 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.697 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.698 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.707 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Caching.Abstractions.vvlexwbaez.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b1crvod4be-{0}-vvlexwbaez-vvlexwbaez.gz' -2026-01-28 14:10:55.707 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.708 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Abstractions.vvlexwbaez.wasm - 200 27446 application/wasm 11.567ms -2026-01-28 14:10:55.712 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Hybrid.u0s8zqcpy7.wasm - null null -2026-01-28 14:10:55.713 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.713 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.713 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.713 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.713 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.713 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.714 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.714 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.714 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.714 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.714 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.714 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.714 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.714 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.714 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.714 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.714 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.714 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.714 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.714 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.714 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.714 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.724 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Caching.Hybrid.u0s8zqcpy7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\t7frkttiob-{0}-u0s8zqcpy7-u0s8zqcpy7.gz' -2026-01-28 14:10:55.724 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.724 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Hybrid.u0s8zqcpy7.wasm - 200 85824 application/wasm 12.1624ms -2026-01-28 14:10:55.728 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Memory.6z3ajjz4f1.wasm - null null -2026-01-28 14:10:55.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.729 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.729 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.729 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.729 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.729 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.730 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.730 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.730 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.730 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.730 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.730 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.730 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.730 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.730 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.730 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.730 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.730 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.730 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.730 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.730 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.730 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.743 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Caching.Memory.6z3ajjz4f1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6gi3ua4ioz-{0}-6z3ajjz4f1-6z3ajjz4f1.gz' -2026-01-28 14:10:55.743 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.743 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Memory.6z3ajjz4f1.wasm - 200 37691 application/wasm 14.8066ms -2026-01-28 14:10:55.748 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.x8wh4xd62i.wasm - null null -2026-01-28 14:10:55.748 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.749 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.749 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.749 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.749 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.749 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.749 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.749 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.749 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.749 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.749 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.749 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.749 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.749 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.749 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.749 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.749 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.749 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.749 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.749 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.749 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.749 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.763 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.x8wh4xd62i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\h1kacpcskm-{0}-x8wh4xd62i-x8wh4xd62i.gz' -2026-01-28 14:10:55.763 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.763 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.x8wh4xd62i.wasm - 200 34619 application/wasm 15.726ms -2026-01-28 14:10:55.767 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Abstractions.sgloa63pwd.wasm - null null -2026-01-28 14:10:55.768 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.768 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.768 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.768 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.768 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.768 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.768 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.768 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.768 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.768 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.768 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.768 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.768 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.768 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.768 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.768 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.768 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.768 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.768 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.768 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.768 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.769 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.779 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.Abstractions.sgloa63pwd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\zxi0ykhieh-{0}-sgloa63pwd-sgloa63pwd.gz' -2026-01-28 14:10:55.779 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.779 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Abstractions.sgloa63pwd.wasm - 200 18230 application/wasm 12.5622ms -2026-01-28 14:10:55.783 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Binder.3jwzw3qxt4.wasm - null null -2026-01-28 14:10:55.784 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.784 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.784 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.784 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.784 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.784 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.784 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.784 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.784 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.784 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.784 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.784 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.784 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.784 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.784 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.784 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.784 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.784 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.785 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.785 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.785 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.785 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.796 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.Binder.3jwzw3qxt4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ko014cnbr7-{0}-3jwzw3qxt4-3jwzw3qxt4.gz' -2026-01-28 14:10:55.796 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.797 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Binder.3jwzw3qxt4.wasm - 200 33083 application/wasm 13.6695ms -2026-01-28 14:10:55.800 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.CommandLine.z1qo7xx5ru.wasm - null null -2026-01-28 14:10:55.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.801 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.801 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.801 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.801 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.801 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.801 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.802 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.802 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.802 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.802 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.802 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.802 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.802 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.802 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.815 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.CommandLine.z1qo7xx5ru.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0qcnzm5lmb-{0}-z1qo7xx5ru-z1qo7xx5ru.gz' -2026-01-28 14:10:55.815 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.815 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.CommandLine.z1qo7xx5ru.wasm - 200 15158 application/wasm 14.5667ms -2026-01-28 14:10:55.820 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.EnvironmentVariables.3gcxsk3zbu.wasm - null null -2026-01-28 14:10:55.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.820 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.820 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.821 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.821 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.821 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.821 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.821 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.821 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.821 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.821 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.821 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.821 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.821 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.821 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.821 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.821 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.821 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.821 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.821 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.821 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.821 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.833 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.EnvironmentVariables.3gcxsk3zbu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\urvjz3sczp-{0}-3gcxsk3zbu-3gcxsk3zbu.gz' -2026-01-28 14:10:55.834 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.834 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.EnvironmentVariables.3gcxsk3zbu.wasm - 200 11574 application/wasm 13.9681ms -2026-01-28 14:10:55.838 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.FileExtensions.phra2kqghi.wasm - null null -2026-01-28 14:10:55.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.838 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.838 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.838 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.838 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.839 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.839 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.839 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.839 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.839 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.839 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.839 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.839 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.839 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.839 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.851 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.FileExtensions.phra2kqghi.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6yhtz7i0uq-{0}-phra2kqghi-phra2kqghi.gz' -2026-01-28 14:10:55.851 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.851 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.FileExtensions.phra2kqghi.wasm - 200 18230 application/wasm 13.7692ms -2026-01-28 14:10:55.855 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Json.9udmvturlf.wasm - null null -2026-01-28 14:10:55.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.856 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.856 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.856 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.856 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.856 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.856 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.857 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.857 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.857 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.857 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.857 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.857 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.857 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.857 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.868 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.Json.9udmvturlf.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jn8nx9ltxb-{0}-9udmvturlf-9udmvturlf.gz' -2026-01-28 14:10:55.868 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.869 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Json.9udmvturlf.wasm - 200 17718 application/wasm 13.5979ms -2026-01-28 14:10:55.872 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.UserSecrets.86yue58ssu.wasm - null null -2026-01-28 14:10:55.873 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.873 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.873 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.873 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.873 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.873 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.873 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.873 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.873 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.873 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.873 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.873 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.873 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.874 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.874 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.874 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.874 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.874 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.874 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.874 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.874 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.874 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.885 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.UserSecrets.86yue58ssu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wlq0vssna7-{0}-86yue58ssu-86yue58ssu.gz' -2026-01-28 14:10:55.885 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.885 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.UserSecrets.86yue58ssu.wasm - 200 16182 application/wasm 12.5023ms -2026-01-28 14:10:55.889 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.92ulj88j6e.wasm - null null -2026-01-28 14:10:55.889 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.889 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.889 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.889 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.889 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.890 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.890 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.890 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.890 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.890 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.890 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.890 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.890 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.890 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.890 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.904 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.DependencyInjection.92ulj88j6e.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ap6jjl5cdc-{0}-92ulj88j6e-92ulj88j6e.gz' -2026-01-28 14:10:55.904 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.904 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.92ulj88j6e.wasm - 200 85312 application/wasm 15.4157ms -2026-01-28 14:10:55.913 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.qzg75988t9.wasm - null null -2026-01-28 14:10:55.914 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.914 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.914 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.914 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.914 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.914 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.914 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.914 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.914 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.914 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.914 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.914 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.914 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.914 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.915 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.915 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.915 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.915 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.915 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.915 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.915 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.915 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.927 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.DependencyInjection.Abstractions.qzg75988t9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2yinc5vl42-{0}-qzg75988t9-qzg75988t9.gz' -2026-01-28 14:10:55.927 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.927 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.qzg75988t9.wasm - 200 55611 application/wasm 14.0042ms -2026-01-28 14:10:55.931 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.tgzcelqpkb.wasm - null null -2026-01-28 14:10:55.932 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.932 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.932 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.932 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.932 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.932 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.932 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.932 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.932 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.932 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.932 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.932 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.932 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.932 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.933 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.933 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.933 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.933 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.933 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.933 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.933 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.933 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.945 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Diagnostics.tgzcelqpkb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\q77258df46-{0}-tgzcelqpkb-tgzcelqpkb.gz' -2026-01-28 14:10:55.945 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.945 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.tgzcelqpkb.wasm - 200 25910 application/wasm 13.9695ms -2026-01-28 14:10:55.949 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.Abstractions.hq61ozpvxa.wasm - null null -2026-01-28 14:10:55.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.949 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.949 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.950 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.950 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.950 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.950 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.950 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.950 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.950 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.950 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.950 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.950 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.950 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.950 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.964 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Diagnostics.Abstractions.hq61ozpvxa.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\hlwf1zkx1t-{0}-hq61ozpvxa-hq61ozpvxa.gz' -2026-01-28 14:10:55.964 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.964 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.Abstractions.hq61ozpvxa.wasm - 200 20790 application/wasm 15.4454ms -2026-01-28 14:10:55.969 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Abstractions.wbhloeatw3.wasm - null null -2026-01-28 14:10:55.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.970 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.970 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.970 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.970 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.970 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.970 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.971 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.971 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.971 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.971 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.971 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.971 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.971 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.971 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.983 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Abstractions.wbhloeatw3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\hwi4k0i86u-{0}-wbhloeatw3-wbhloeatw3.gz' -2026-01-28 14:10:55.983 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.983 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Abstractions.wbhloeatw3.wasm - 200 13110 application/wasm 14.1935ms -2026-01-28 14:10:55.987 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Composite.z8bwpsdnc0.wasm - null null -2026-01-28 14:10:55.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.987 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:55.987 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:55.987 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:55.987 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.988 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:55.988 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:55.988 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:55.988 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:55.988 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:55.988 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:55.988 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.988 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:55.988 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:55.988 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:55.988 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:55.988 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:55.988 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:55.988 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:55.988 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:55.988 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:55.988 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:55.999 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Composite.z8bwpsdnc0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9or5ity2wj-{0}-z8bwpsdnc0-z8bwpsdnc0.gz' -2026-01-28 14:10:55.999 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.000 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Composite.z8bwpsdnc0.wasm - 200 8502 application/wasm 12.9475ms -2026-01-28 14:10:56.004 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Embedded.ptqvg1m34t.wasm - null null -2026-01-28 14:10:56.004 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.004 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.004 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.004 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.004 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.005 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.005 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.005 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.005 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.005 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.005 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.005 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.005 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.005 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.005 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.005 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.005 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.005 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.005 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.005 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.005 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.005 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.018 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Embedded.ptqvg1m34t.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gud3t43je0-{0}-ptqvg1m34t-ptqvg1m34t.gz' -2026-01-28 14:10:56.018 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.019 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Embedded.ptqvg1m34t.wasm - 200 23350 application/wasm 14.8692ms -2026-01-28 14:10:56.022 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Physical.y5k56zvg10.wasm - null null -2026-01-28 14:10:56.023 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.023 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.023 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.023 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.023 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.023 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.023 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.023 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.023 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.023 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.023 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.023 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.023 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.023 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.024 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.024 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.024 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.024 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.024 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.024 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.024 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.024 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.036 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Physical.y5k56zvg10.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\02df65jx0j-{0}-y5k56zvg10-y5k56zvg10.gz' -2026-01-28 14:10:56.036 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.036 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Physical.y5k56zvg10.wasm - 200 35131 application/wasm 13.4867ms -2026-01-28 14:10:56.039 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileSystemGlobbing.4cqycihgg0.wasm - null null -2026-01-28 14:10:56.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.040 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.040 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.040 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.040 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.040 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.040 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.041 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.041 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.041 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.041 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.041 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.041 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.041 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.041 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.052 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileSystemGlobbing.4cqycihgg0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4328gy858z-{0}-4cqycihgg0-4cqycihgg0.gz' -2026-01-28 14:10:56.052 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.052 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileSystemGlobbing.4cqycihgg0.wasm - 200 37691 application/wasm 13.4348ms -2026-01-28 14:10:56.056 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Hosting.Abstractions.5v78u2d057.wasm - null null -2026-01-28 14:10:56.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.057 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.057 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.057 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.057 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.057 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.057 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.057 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.057 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.057 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.057 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.057 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.057 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.057 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.057 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.057 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.057 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.057 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.057 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.057 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.057 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.070 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Hosting.Abstractions.5v78u2d057.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0bjpxbow7h-{0}-5v78u2d057-5v78u2d057.gz' -2026-01-28 14:10:56.070 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.070 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Hosting.Abstractions.5v78u2d057.wasm - 200 43835 application/wasm 14.496ms -2026-01-28 14:10:56.074 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Http.apre2arxjd.wasm - null null -2026-01-28 14:10:56.075 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.075 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.075 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.075 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.075 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.075 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.075 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.075 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.075 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.075 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.075 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.075 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.075 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.075 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.075 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.075 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.075 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.075 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.075 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.076 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.076 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.076 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.088 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Http.apre2arxjd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ocorhjn9ks-{0}-apre2arxjd-apre2arxjd.gz' -2026-01-28 14:10:56.088 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.088 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Http.apre2arxjd.wasm - 200 82752 application/wasm 14.6393ms -2026-01-28 14:10:56.095 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.mml9tf1r1w.wasm - null null -2026-01-28 14:10:56.096 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.096 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.096 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.096 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.096 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.096 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.096 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.096 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.096 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.096 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.096 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.096 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.096 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.096 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.097 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.097 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.097 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.097 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.097 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.097 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.097 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.097 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.109 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Localization.mml9tf1r1w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uqdbs11skp-{0}-mml9tf1r1w-mml9tf1r1w.gz' -2026-01-28 14:10:56.110 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.110 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.mml9tf1r1w.wasm - 200 21302 application/wasm 14.7896ms -2026-01-28 14:10:56.121 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.Abstractions.80p7fyumuw.wasm - null null -2026-01-28 14:10:56.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.122 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.122 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.122 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.122 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.122 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.122 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.122 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.122 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.122 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.123 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.137 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Localization.Abstractions.80p7fyumuw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j8jaks8ba9-{0}-80p7fyumuw-80p7fyumuw.gz' -2026-01-28 14:10:56.137 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.137 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.Abstractions.80p7fyumuw.wasm - 200 9014 application/wasm 16.7125ms -2026-01-28 14:10:56.146 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.05o184w673.wasm - null null -2026-01-28 14:10:56.147 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.147 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.147 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.147 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.147 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.148 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.148 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.148 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.148 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.148 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.148 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.148 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.148 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.148 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.148 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.148 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.148 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.148 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.148 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.148 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.148 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.149 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.165 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Logging.05o184w673.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1cbwctdp50-{0}-05o184w673-05o184w673.gz' -2026-01-28 14:10:56.165 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.165 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.05o184w673.wasm - 200 41275 application/wasm 19.517ms -2026-01-28 14:10:56.170 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.Abstractions.hwa38jh90v.wasm - null null -2026-01-28 14:10:56.171 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.171 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.171 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.171 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.171 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.171 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.171 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.171 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.171 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.171 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.171 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.172 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.172 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.172 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.172 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.172 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.172 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.172 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.172 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.172 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.185 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Logging.Abstractions.hwa38jh90v.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\zatd8kwe6z-{0}-hwa38jh90v-hwa38jh90v.gz' -2026-01-28 14:10:56.185 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.186 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.Abstractions.hwa38jh90v.wasm - 200 56635 application/wasm 15.8303ms -2026-01-28 14:10:56.189 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.zsk78mkyl2.wasm - null null -2026-01-28 14:10:56.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.190 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.191 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.191 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.191 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.191 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.191 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.191 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.191 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.191 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.191 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.191 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.191 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.191 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.191 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.191 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.191 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.191 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.205 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Options.zsk78mkyl2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nx5gv127wz-{0}-zsk78mkyl2-zsk78mkyl2.gz' -2026-01-28 14:10:56.205 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.206 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.zsk78mkyl2.wasm - 200 55099 application/wasm 16.1336ms -2026-01-28 14:10:56.210 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.ConfigurationExtensions.qltknulxmy.wasm - null null -2026-01-28 14:10:56.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.211 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.211 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.211 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.211 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.212 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.212 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.212 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.212 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.212 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.212 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.212 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.212 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.212 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.212 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.212 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.212 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.212 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.212 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.212 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.212 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.212 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.226 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Options.ConfigurationExtensions.qltknulxmy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\eycsz92dw7-{0}-qltknulxmy-qltknulxmy.gz' -2026-01-28 14:10:56.226 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.226 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.ConfigurationExtensions.qltknulxmy.wasm - 200 11574 application/wasm 16.1422ms -2026-01-28 14:10:56.231 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Primitives.51b5spqlwz.wasm - null null -2026-01-28 14:10:56.232 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.232 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.232 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.232 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.232 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.232 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.232 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.232 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.232 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.232 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.232 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.232 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.232 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.232 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.233 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.233 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.233 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.233 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.233 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.233 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.233 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.233 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.247 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Primitives.51b5spqlwz.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dtxltxy254-{0}-51b5spqlwz-51b5spqlwz.gz' -2026-01-28 14:10:56.247 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.247 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Primitives.51b5spqlwz.wasm - 200 34619 application/wasm 15.7345ms -2026-01-28 14:10:56.250 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Validation.vibclmvzbq.wasm - null null -2026-01-28 14:10:56.251 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.251 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.251 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.251 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.251 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.252 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.252 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.252 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.252 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.252 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.252 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.252 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.252 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.252 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.252 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.252 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.252 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.252 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.252 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.252 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.252 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.252 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.264 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Validation.vibclmvzbq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wxjaiwsnh4-{0}-vibclmvzbq-vibclmvzbq.gz' -2026-01-28 14:10:56.264 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.264 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Validation.vibclmvzbq.wasm - 200 33083 application/wasm 14.0683ms -2026-01-28 14:10:56.268 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Abstractions.fm59ec96sb.wasm - null null -2026-01-28 14:10:56.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.269 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.269 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.269 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.269 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.269 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.269 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.269 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.269 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.269 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.269 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.269 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.269 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.269 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.270 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.282 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.Abstractions.fm59ec96sb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pw25ps676d-{0}-fm59ec96sb-fm59ec96sb.gz' -2026-01-28 14:10:56.282 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.282 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Abstractions.fm59ec96sb.wasm - 200 9014 application/wasm 13.8923ms -2026-01-28 14:10:56.286 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.JsonWebTokens.d706uu8nnf.wasm - null null -2026-01-28 14:10:56.287 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.287 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.287 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.287 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.287 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.287 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.287 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.287 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.287 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.287 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.287 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.287 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.287 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.287 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.287 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.287 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.287 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.287 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.287 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.288 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.288 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.288 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.302 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.JsonWebTokens.d706uu8nnf.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0ly9bxx2uc-{0}-d706uu8nnf-d706uu8nnf.gz' -2026-01-28 14:10:56.303 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.303 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.JsonWebTokens.d706uu8nnf.wasm - 200 161610 application/wasm 16.607ms -2026-01-28 14:10:56.307 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Logging.lzotatrep2.wasm - null null -2026-01-28 14:10:56.308 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.308 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.308 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.308 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.308 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.308 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.308 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.308 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.308 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.308 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.308 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.308 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.308 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.308 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.308 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.308 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.308 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.308 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.308 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.309 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.309 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.309 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.321 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.Logging.lzotatrep2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\az540fuh9f-{0}-lzotatrep2-lzotatrep2.gz' -2026-01-28 14:10:56.321 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.321 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Logging.lzotatrep2.wasm - 200 26422 application/wasm 14.2845ms -2026-01-28 14:10:56.326 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Tokens.zeqz59uvkx.wasm - null null -2026-01-28 14:10:56.326 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.326 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.326 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.327 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.327 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.327 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.327 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.327 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.327 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.327 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.327 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.327 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.327 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.327 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.327 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.342 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.Tokens.zeqz59uvkx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pe5jdgvqrx-{0}-zeqz59uvkx-zeqz59uvkx.gz' -2026-01-28 14:10:56.342 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.343 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Tokens.zeqz59uvkx.wasm - 200 374125 application/wasm 17.1994ms -2026-01-28 14:10:56.353 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.kksrzpvoig.wasm - null null -2026-01-28 14:10:56.353 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.353 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.354 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.354 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.354 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.354 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.354 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.354 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.354 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.354 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.354 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.354 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.354 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.354 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.354 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.365 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.JSInterop.kksrzpvoig.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fulott20a4-{0}-kksrzpvoig-kksrzpvoig.gz' -2026-01-28 14:10:56.365 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.365 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.kksrzpvoig.wasm - 200 64827 application/wasm 12.329ms -2026-01-28 14:10:56.369 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.WebAssembly.9udcqny0aq.wasm - null null -2026-01-28 14:10:56.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.370 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.370 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.370 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.370 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.370 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.370 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.371 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.371 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.371 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.371 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.371 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.371 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.371 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.371 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.384 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.JSInterop.WebAssembly.9udcqny0aq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9m4wklcqem-{0}-9udcqny0aq-9udcqny0aq.gz' -2026-01-28 14:10:56.384 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.384 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.WebAssembly.9udcqny0aq.wasm - 200 14646 application/wasm 14.5696ms -2026-01-28 14:10:56.387 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Net.Http.Headers.dqwvlhacs5.wasm - null null -2026-01-28 14:10:56.388 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.389 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.389 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.389 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.389 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.389 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.389 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.389 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.389 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.389 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.389 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.400 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Net.Http.Headers.dqwvlhacs5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\awoyestlxb-{0}-dqwvlhacs5-dqwvlhacs5.gz' -2026-01-28 14:10:56.400 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.400 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Net.Http.Headers.dqwvlhacs5.wasm - 200 75072 application/wasm 12.6086ms -2026-01-28 14:10:56.404 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MudBlazor.0eq8xpu5ec.wasm - null null -2026-01-28 14:10:56.405 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.405 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.405 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.405 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.405 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.405 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.405 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.405 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.405 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.405 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.405 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.405 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.405 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.405 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.405 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.405 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.405 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.405 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.405 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.405 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.405 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.405 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.477 +03:00 [INF] Sending file. Request path: '_framework/MudBlazor.0eq8xpu5ec.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c8dbqtqx23-{0}-0eq8xpu5ec-0eq8xpu5ec.gz' -2026-01-28 14:10:56.477 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.477 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MudBlazor.0eq8xpu5ec.wasm - 200 9246396 application/wasm 72.9947ms -2026-01-28 14:10:56.532 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Context.y5n2fi0oo0.wasm - null null -2026-01-28 14:10:56.533 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.533 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.533 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.533 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.533 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.534 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.534 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.534 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.534 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.534 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.534 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.534 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.534 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.534 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.535 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.550 +03:00 [INF] Sending file. Request path: '_framework/Nito.AsyncEx.Context.y5n2fi0oo0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6cfa8ozy3y-{0}-y5n2fi0oo0-y5n2fi0oo0.gz' -2026-01-28 14:10:56.550 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.550 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Context.y5n2fi0oo0.wasm - 200 13622 application/wasm 18.4474ms -2026-01-28 14:10:56.556 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Tasks.pmw3wnkbvb.wasm - null null -2026-01-28 14:10:56.557 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.557 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.557 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.557 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.557 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.557 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.558 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.558 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.558 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.558 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.558 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.558 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.558 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.558 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.558 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.558 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.558 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.558 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.558 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.558 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.558 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.558 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.573 +03:00 [INF] Sending file. Request path: '_framework/Nito.AsyncEx.Tasks.pmw3wnkbvb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pw3yczwgxh-{0}-pmw3wnkbvb-pmw3wnkbvb.gz' -2026-01-28 14:10:56.573 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.573 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Tasks.pmw3wnkbvb.wasm - 200 35643 application/wasm 17.2644ms -2026-01-28 14:10:56.578 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Nito.Disposables.86nxvj1yiv.wasm - null null -2026-01-28 14:10:56.579 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.579 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.579 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.579 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.579 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.579 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.579 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.579 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.579 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.579 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.579 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.579 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.579 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.579 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.579 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.579 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.579 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.579 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.579 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.579 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.579 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.580 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.593 +03:00 [INF] Sending file. Request path: '_framework/Nito.Disposables.86nxvj1yiv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4m6819m7ll-{0}-86nxvj1yiv-86nxvj1yiv.gz' -2026-01-28 14:10:56.593 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.593 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Nito.Disposables.86nxvj1yiv.wasm - 200 22326 application/wasm 14.8533ms -2026-01-28 14:10:56.597 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/NUglify.p1yxori32v.wasm - null null -2026-01-28 14:10:56.598 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.598 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.598 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.598 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.598 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.598 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.598 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.598 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.598 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.598 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.598 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.598 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.598 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.598 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.598 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.598 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.598 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.598 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.598 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.598 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.598 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.599 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.616 +03:00 [INF] Sending file. Request path: '_framework/NUglify.p1yxori32v.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2fi9048uqb-{0}-p1yxori32v-p1yxori32v.gz' -2026-01-28 14:10:56.616 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.616 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/NUglify.p1yxori32v.wasm - 200 637333 application/wasm 18.6892ms -2026-01-28 14:10:56.626 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/OpenIddict.Abstractions.xc5u4bcwuv.wasm - null null -2026-01-28 14:10:56.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.627 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.627 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.627 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.627 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.627 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.627 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.628 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.628 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.628 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.628 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.628 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.628 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.628 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.628 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.641 +03:00 [INF] Sending file. Request path: '_framework/OpenIddict.Abstractions.xc5u4bcwuv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\46s7kaf9kj-{0}-xc5u4bcwuv-xc5u4bcwuv.gz' -2026-01-28 14:10:56.642 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.642 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/OpenIddict.Abstractions.xc5u4bcwuv.wasm - 200 380269 application/wasm 15.9678ms -2026-01-28 14:10:56.646 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Riok.Mapperly.Abstractions.bgo5wowxjs.wasm - null null -2026-01-28 14:10:56.647 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.647 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.647 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.647 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.647 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.647 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.647 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.647 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.647 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.647 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.647 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.647 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.647 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.647 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.648 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.648 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.648 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.648 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.648 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.648 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.648 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.648 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.658 +03:00 [INF] Sending file. Request path: '_framework/Riok.Mapperly.Abstractions.bgo5wowxjs.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3d5qji182j-{0}-bgo5wowxjs-bgo5wowxjs.gz' -2026-01-28 14:10:56.658 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.658 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Riok.Mapperly.Abstractions.bgo5wowxjs.wasm - 200 33083 application/wasm 12.209ms -2026-01-28 14:10:56.663 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.CodeDom.fbxkfrockh.wasm - null null -2026-01-28 14:10:56.663 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.663 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.663 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.663 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.663 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.664 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.664 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.664 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.664 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.664 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.664 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.664 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.664 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.664 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.664 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.676 +03:00 [INF] Sending file. Request path: '_framework/System.CodeDom.fbxkfrockh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j53ve7gv1w-{0}-fbxkfrockh-fbxkfrockh.gz' -2026-01-28 14:10:56.676 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.676 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.CodeDom.fbxkfrockh.wasm - 200 174415 application/wasm 13.0759ms -2026-01-28 14:10:56.681 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.EventLog.x6zrz89c6o.wasm - null null -2026-01-28 14:10:56.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.681 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.681 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.681 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.681 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.682 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.682 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.682 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.682 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.682 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.682 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.682 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.682 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.682 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.682 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.695 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.EventLog.x6zrz89c6o.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j2puov35am-{0}-x6zrz89c6o-x6zrz89c6o.gz' -2026-01-28 14:10:56.695 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.696 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.EventLog.x6zrz89c6o.wasm - 200 41787 application/wasm 14.9454ms -2026-01-28 14:10:56.699 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IdentityModel.Tokens.Jwt.5tt1rwyygx.wasm - null null -2026-01-28 14:10:56.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.700 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.700 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.700 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.700 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.700 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.700 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.701 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.701 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.701 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.701 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.701 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.701 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.701 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.701 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.713 +03:00 [INF] Sending file. Request path: '_framework/System.IdentityModel.Tokens.Jwt.5tt1rwyygx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tr0pha0myb-{0}-5tt1rwyygx-5tt1rwyygx.gz' -2026-01-28 14:10:56.713 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.713 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IdentityModel.Tokens.Jwt.5tt1rwyygx.wasm - 200 81216 application/wasm 14.297ms -2026-01-28 14:10:56.717 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.Dynamic.Core.2czhr4esfi.wasm - null null -2026-01-28 14:10:56.717 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.717 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.717 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.718 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.718 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.718 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.718 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.718 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.718 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.718 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.718 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.718 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.718 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.718 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.718 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.718 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.718 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.718 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.718 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.718 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.718 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.718 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.733 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.Dynamic.Core.2czhr4esfi.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\i8w7eyc5en-{0}-2czhr4esfi-2czhr4esfi.gz' -2026-01-28 14:10:56.733 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.733 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.Dynamic.Core.2czhr4esfi.wasm - 200 240985 application/wasm 15.9903ms -2026-01-28 14:10:56.745 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Management.ot1u48wl1s.wasm - null null -2026-01-28 14:10:56.746 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.746 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.746 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.746 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.746 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.746 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.746 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.746 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.746 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.746 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.746 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.746 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.746 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.746 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.747 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.747 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.747 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.747 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.747 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.747 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.747 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.747 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.759 +03:00 [INF] Sending file. Request path: '_framework/System.Management.ot1u48wl1s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\evjyfukwb1-{0}-ot1u48wl1s-ot1u48wl1s.gz' -2026-01-28 14:10:56.760 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.760 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Management.ot1u48wl1s.wasm - 200 63803 application/wasm 14.1802ms -2026-01-28 14:10:56.764 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/TimeZoneConverter.halbc9brmz.wasm - null null -2026-01-28 14:10:56.764 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.764 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.765 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.765 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.765 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.765 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.765 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.765 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.765 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.765 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.765 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.765 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.765 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.765 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.765 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.765 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.765 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.765 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.765 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.765 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.765 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.765 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.776 +03:00 [INF] Sending file. Request path: '_framework/TimeZoneConverter.halbc9brmz.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xqev0b9yez-{0}-halbc9brmz-halbc9brmz.gz' -2026-01-28 14:10:56.776 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.776 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/TimeZoneConverter.halbc9brmz.wasm - 200 63803 application/wasm 12.0193ms -2026-01-28 14:10:56.780 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.CSharp.aars8n89vy.wasm - null null -2026-01-28 14:10:56.781 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.781 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.781 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.781 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.781 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.781 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.781 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.781 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.781 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.781 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.781 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.781 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.781 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.781 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.781 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.781 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.781 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.781 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.781 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.781 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.781 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.782 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.798 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.CSharp.aars8n89vy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\esvbxkosdi-{0}-aars8n89vy-aars8n89vy.gz' -2026-01-28 14:10:56.798 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.798 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.CSharp.aars8n89vy.wasm - 200 301411 application/wasm 18.0128ms -2026-01-28 14:10:56.802 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.Core.upxd87cdr1.wasm - null null -2026-01-28 14:10:56.803 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.803 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.803 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.803 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.803 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.803 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.803 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.803 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.803 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.803 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.803 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.803 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.803 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.803 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.803 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.803 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.803 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.803 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.803 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.803 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.803 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.804 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.821 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.VisualBasic.Core.upxd87cdr1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jc5kei53j8-{0}-upxd87cdr1-upxd87cdr1.gz' -2026-01-28 14:10:56.821 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.821 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.Core.upxd87cdr1.wasm - 200 418674 application/wasm 19.0242ms -2026-01-28 14:10:56.826 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.lo3va0ewdb.wasm - null null -2026-01-28 14:10:56.827 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.827 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.827 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.827 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.827 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.827 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.827 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.827 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.827 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.827 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.827 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.827 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.827 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.827 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.828 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.828 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.828 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.828 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.828 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.828 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.828 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.828 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.830 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.VisualBasic.lo3va0ewdb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\57p19o16fi-{0}-lo3va0ewdb-lo3va0ewdb.gz' -2026-01-28 14:10:56.830 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.830 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.lo3va0ewdb.wasm - 200 6966 application/wasm 4.6469ms -2026-01-28 14:10:56.835 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Primitives.xf0i7ifc2c.wasm - null null -2026-01-28 14:10:56.835 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.835 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.835 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.835 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.836 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.836 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.836 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.836 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.836 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.836 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.836 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.836 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.836 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.836 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.836 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.849 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Win32.Primitives.xf0i7ifc2c.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\p8pizku5xb-{0}-xf0i7ifc2c-xf0i7ifc2c.gz' -2026-01-28 14:10:56.849 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.849 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Primitives.xf0i7ifc2c.wasm - 200 5430 application/wasm 14.1273ms -2026-01-28 14:10:56.857 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Registry.egcs66c38p.wasm - null null -2026-01-28 14:10:56.858 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.858 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.858 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.858 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.858 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.858 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.858 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.858 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.858 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.858 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.858 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.858 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.858 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.858 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.858 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.858 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.858 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.858 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.858 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.858 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.858 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.859 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.870 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Win32.Registry.egcs66c38p.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ouubhvk51-{0}-egcs66c38p-egcs66c38p.gz' -2026-01-28 14:10:56.870 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.870 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Registry.egcs66c38p.wasm - 200 22838 application/wasm 12.9207ms -2026-01-28 14:10:56.873 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.AppContext.229uy454et.wasm - null null -2026-01-28 14:10:56.874 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.874 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.874 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.874 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.874 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.874 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.875 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.875 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.875 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.875 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.875 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.875 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.875 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.875 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.875 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.877 +03:00 [INF] Sending file. Request path: '_framework/System.AppContext.229uy454et.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vtyu92lgvy-{0}-229uy454et-229uy454et.gz' -2026-01-28 14:10:56.877 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.877 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.AppContext.229uy454et.wasm - 200 4918 application/wasm 4.205ms -2026-01-28 14:10:56.881 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Buffers.ffy4vk49sl.wasm - null null -2026-01-28 14:10:56.882 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.882 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.882 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.882 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.882 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.882 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.882 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.882 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.882 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.882 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.882 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.882 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.882 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.882 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.882 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.882 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.882 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.882 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.882 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.882 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.882 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.883 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.885 +03:00 [INF] Sending file. Request path: '_framework/System.Buffers.ffy4vk49sl.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\abrvn071f9-{0}-ffy4vk49sl-ffy4vk49sl.gz' -2026-01-28 14:10:56.885 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.885 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Buffers.ffy4vk49sl.wasm - 200 4918 application/wasm 3.6839ms -2026-01-28 14:10:56.888 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.Concurrent.vwjty21qm0.wasm - null null -2026-01-28 14:10:56.904 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.904 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.904 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.904 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.904 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.905 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.905 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.905 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.905 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.905 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.905 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.905 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.905 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.905 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.905 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.905 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.905 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.905 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.905 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.905 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.905 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.905 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.918 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.Concurrent.vwjty21qm0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5kmfc755lz-{0}-vwjty21qm0-vwjty21qm0.gz' -2026-01-28 14:10:56.918 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.918 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.Concurrent.vwjty21qm0.wasm - 200 78656 application/wasm 29.7798ms -2026-01-28 14:10:56.922 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.Immutable.62ow9webvq.wasm - null null -2026-01-28 14:10:56.922 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.922 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.923 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.923 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.923 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.923 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.923 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.923 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.923 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.923 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.923 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.923 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.923 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.923 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.924 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.937 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.Immutable.62ow9webvq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\y8eoflnwlp-{0}-62ow9webvq-62ow9webvq.gz' -2026-01-28 14:10:56.937 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.937 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.Immutable.62ow9webvq.wasm - 200 240985 application/wasm 15.4985ms -2026-01-28 14:10:56.943 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.NonGeneric.8znze2bng9.wasm - null null -2026-01-28 14:10:56.943 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.943 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.943 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.944 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.944 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.944 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.944 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.944 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.944 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.944 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.944 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.944 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.944 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.944 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.944 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.944 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.944 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.944 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.944 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.944 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.944 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.944 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.968 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.NonGeneric.8znze2bng9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\iq26svu8f5-{0}-8znze2bng9-8znze2bng9.gz' -2026-01-28 14:10:56.968 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.968 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.NonGeneric.8znze2bng9.wasm - 200 37691 application/wasm 25.0474ms -2026-01-28 14:10:56.973 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.Specialized.xek5hgzu5v.wasm - null null -2026-01-28 14:10:56.973 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.973 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.974 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.974 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.974 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.974 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.974 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.974 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.974 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.974 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.974 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.974 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.974 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.974 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.974 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.974 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.974 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.974 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.974 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.974 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.974 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.974 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.987 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.Specialized.xek5hgzu5v.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4cpzjuj3r0-{0}-xek5hgzu5v-xek5hgzu5v.gz' -2026-01-28 14:10:56.987 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:56.987 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.Specialized.xek5hgzu5v.wasm - 200 37691 application/wasm 14.6724ms -2026-01-28 14:10:56.992 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.0nghqyig8i.wasm - null null -2026-01-28 14:10:56.993 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.993 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:56.993 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:56.993 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:56.993 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.994 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:56.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:56.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:56.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:56.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:56.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:56.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:56.994 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:56.994 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:56.994 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:56.994 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:56.994 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:56.994 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:56.994 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:56.994 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:56.994 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.007 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.0nghqyig8i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rssb0afnfp-{0}-0nghqyig8i-0nghqyig8i.gz' -2026-01-28 14:10:57.007 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.007 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.0nghqyig8i.wasm - 200 102725 application/wasm 14.7251ms -2026-01-28 14:10:57.012 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Annotations.x5puxnf36m.wasm - null null -2026-01-28 14:10:57.013 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.013 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.013 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.013 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.013 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.013 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.013 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.013 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.013 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.013 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.013 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.013 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.013 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.013 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.013 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.013 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.014 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.014 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.014 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.014 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.014 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.014 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.027 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.Annotations.x5puxnf36m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sxzb8xtw7k-{0}-x5puxnf36m-x5puxnf36m.gz' -2026-01-28 14:10:57.027 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.027 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Annotations.x5puxnf36m.wasm - 200 92480 application/wasm 15.1942ms -2026-01-28 14:10:57.031 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.DataAnnotations.w951woxztj.wasm - null null -2026-01-28 14:10:57.031 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.032 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.032 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.032 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.032 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.032 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.032 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.032 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.032 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.032 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.032 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.035 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.DataAnnotations.w951woxztj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\koqxcel3zt-{0}-w951woxztj-w951woxztj.gz' -2026-01-28 14:10:57.035 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.035 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.DataAnnotations.w951woxztj.wasm - 200 6454 application/wasm 4.2049ms -2026-01-28 14:10:57.039 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.EventBasedAsync.xxfp6nuzvv.wasm - null null -2026-01-28 14:10:57.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.039 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.040 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.040 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.040 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.040 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.040 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.040 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.040 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.040 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.040 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.040 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.040 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.040 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.040 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.053 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.EventBasedAsync.xxfp6nuzvv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vq3ormnt3h-{0}-xxfp6nuzvv-xxfp6nuzvv.gz' -2026-01-28 14:10:57.053 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.053 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.EventBasedAsync.xxfp6nuzvv.wasm - 200 16182 application/wasm 14.6418ms -2026-01-28 14:10:57.058 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Primitives.lfp6xvb2nc.wasm - null null -2026-01-28 14:10:57.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.059 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.059 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.059 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.059 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.059 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.059 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.059 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.060 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.060 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.060 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.073 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.Primitives.lfp6xvb2nc.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\f7c6808jvl-{0}-lfp6xvb2nc-lfp6xvb2nc.gz' -2026-01-28 14:10:57.073 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.073 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Primitives.lfp6xvb2nc.wasm - 200 32054 application/wasm 14.97ms -2026-01-28 14:10:57.078 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.TypeConverter.b6pminnty5.wasm - null null -2026-01-28 14:10:57.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.079 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.079 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.079 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.079 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.079 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.079 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.080 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.080 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.080 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.080 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.080 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.080 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.080 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.080 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.098 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.TypeConverter.b6pminnty5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lj5t7hnftt-{0}-b6pminnty5-b6pminnty5.gz' -2026-01-28 14:10:57.098 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.098 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.TypeConverter.b6pminnty5.wasm - 200 306531 application/wasm 20.5015ms -2026-01-28 14:10:57.102 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.1kxs5658en.wasm - null null -2026-01-28 14:10:57.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.103 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.103 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.103 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.103 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.103 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.104 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.104 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.104 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.104 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.104 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.104 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.104 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.104 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.104 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.104 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.104 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.104 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.104 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.106 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.1kxs5658en.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3bfqm2cg1o-{0}-1kxs5658en-1kxs5658en.gz' -2026-01-28 14:10:57.106 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.107 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.1kxs5658en.wasm - 200 5942 application/wasm 4.469ms -2026-01-28 14:10:57.111 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Configuration.dfuzh9rwie.wasm - null null -2026-01-28 14:10:57.112 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.112 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.112 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.112 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.112 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.112 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.112 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.112 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.112 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.112 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.112 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.112 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.112 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.112 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.113 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.113 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.113 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.113 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.113 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.113 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.113 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.113 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.123 +03:00 [INF] Sending file. Request path: '_framework/System.Configuration.dfuzh9rwie.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xe6xuwrov9-{0}-dfuzh9rwie-dfuzh9rwie.gz' -2026-01-28 14:10:57.123 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.123 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Configuration.dfuzh9rwie.wasm - 200 9014 application/wasm 11.8382ms -2026-01-28 14:10:57.140 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/ - null null -2026-01-28 14:10:57.140 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Console.5bpbf67g8o.wasm - null null -2026-01-28 14:10:57.140 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.140 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.140 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.140 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.140 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.141 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.141 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.141 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.141 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.141 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.141 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.141 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.141 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.141 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.141 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.141 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.141 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.141 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.141 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.141 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.141 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.141 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.141 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.141 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.141 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.141 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.141 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.141 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.141 +03:00 [INF] Executing endpoint '/ (/)' -2026-01-28 14:10:57.147 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2026-01-28 14:10:57.147 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2026-01-28 14:10:57.149 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2026-01-28 14:10:57.152 +03:00 [INF] Executed endpoint '/ (/)' -2026-01-28 14:10:57.153 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/ - 200 null text/html; charset=utf-8 12.5315ms -2026-01-28 14:10:57.155 +03:00 [INF] Sending file. Request path: '_framework/System.Console.5bpbf67g8o.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6mvz9phqs1-{0}-5bpbf67g8o-5bpbf67g8o.gz' -2026-01-28 14:10:57.155 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.155 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Console.5bpbf67g8o.wasm - 200 43835 application/wasm 14.8016ms -2026-01-28 14:10:57.161 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Core.zxsh7ohdyg.wasm - null null -2026-01-28 14:10:57.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.162 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.162 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.162 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.163 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.163 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.163 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.163 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.163 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.163 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.163 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.163 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.163 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.163 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.163 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.163 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.163 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.163 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.163 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.163 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.163 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.163 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.181 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44308/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundaryvdWj3dztJOIfBDyI 359 -2026-01-28 14:10:57.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.182 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.182 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.183 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.183 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.183 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.183 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.183 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.183 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.183 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.183 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.183 +03:00 [INF] Sending file. Request path: '_framework/System.Core.zxsh7ohdyg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\cubawh6yyf-{0}-zxsh7ohdyg-zxsh7ohdyg.gz' -2026-01-28 14:10:57.183 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.183 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Core.zxsh7ohdyg.wasm - 499 13110 application/wasm 21.9446ms -2026-01-28 14:10:57.196 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.196 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44308/_blazor?id=R3QMQ6fEvg3YeCBe14tVZQ - 200 null null 4112.7377ms -2026-01-28 14:10:57.214 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/.well-known/appspecific/com.chrome.devtools.json - null null -2026-01-28 14:10:57.216 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.216 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.216 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.216 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.216 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.216 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.217 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.217 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.217 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.217 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.217 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.217 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.217 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.217 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.217 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.217 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.217 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.217 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.217 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.217 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.217 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.217 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/.well-known/appspecific/com.chrome.devtools.json - 404 0 null 3.207ms -2026-01-28 14:10:57.218 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44308/.well-known/appspecific/com.chrome.devtools.json, Response status code: 404 -2026-01-28 14:10:57.220 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.220 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44308/_blazor/disconnect - 200 0 null 39.2195ms -2026-01-28 14:10:57.222 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2026-01-28 14:10:57.222 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/MudBlazor/MudBlazor.min.css - null null -2026-01-28 14:10:57.222 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.MudBlazorUI/volo.abp.mudblazorui.css - null null -2026-01-28 14:10:57.222 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/themes/basic/main.css - null null -2026-01-28 14:10:57.222 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/blazor-global-styles.css - null null -2026-01-28 14:10:57.222 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css - null null -2026-01-28 14:10:57.223 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.223 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.223 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.223 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.223 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.224 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.224 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.224 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.224 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.224 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.224 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.224 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.224 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.224 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.224 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.224 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.224 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.224 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.224 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.224 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.224 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.224 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.224 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.224 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.225 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.225 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.225 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.225 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.225 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.225 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.225 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.225 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.225 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.225 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.225 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.225 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.225 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.225 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.225 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.225 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.225 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.225 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.225 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.226 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.226 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.MudBlazorUI/volo.abp.mudblazorui.css'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.MudBlazorUI\obj\Debug\net10.0\compressed\giyoea8shq-{0}-8qeawnrprb-8qeawnrprb.gz' -2026-01-28 14:10:57.226 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/themes/basic/main.css'. Physical path: 'D:\GitHub\abp\modules\basic-theme\src\Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme\obj\Debug\net10.0\compressed\fqd2rlnqku-{0}-tyyka3g39l-tyyka3g39l.gz' -2026-01-28 14:10:57.226 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.226 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.227 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.MudBlazorUI/volo.abp.mudblazorui.css - 200 1120 text/css 4.1761ms -2026-01-28 14:10:57.227 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/themes/basic/main.css - 200 120 text/css 4.1541ms -2026-01-28 14:10:57.227 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/MudBlazor/MudBlazor.min.js - null null -2026-01-28 14:10:57.227 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/bg-01.png - null null -2026-01-28 14:10:57.227 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/img-support.png - null null -2026-01-28 14:10:57.227 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/img-blog.png - null null -2026-01-28 14:10:57.228 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2026-01-28 14:10:57.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.228 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.228 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.228 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.228 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.229 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2026-01-28 14:10:57.229 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.229 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.229 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.229 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.229 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.229 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.229 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.229 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.229 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.229 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.229 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.229 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.229 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.229 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.229 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.229 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.229 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.229 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.229 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.229 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.229 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.229 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.229 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/blazor.web.js - null null -2026-01-28 14:10:57.229 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.229 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.229 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.229 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.229 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.229 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.229 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.229 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.229 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.229 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.229 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.229 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.229 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.229 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.229 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.229 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.230 +03:00 [INF] Sending file. Request path: 'MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s4s6fpr8ex-{0}-oa8u55zyfs-oa8u55zyfs.gz' -2026-01-28 14:10:57.230 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.230 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css - 200 317 text/css 7.495ms -2026-01-28 14:10:57.230 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.230 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.230 +03:00 [INF] Sending file. Request path: 'images/getting-started/bg-01.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\bg-01.png' -2026-01-28 14:10:57.230 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.230 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.230 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.230 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/bg-01.png - 200 22111 image/png 3.2866ms -2026-01-28 14:10:57.230 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.230 +03:00 [INF] Sending file. Request path: 'images/getting-started/img-blog.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\img-blog.png' -2026-01-28 14:10:57.230 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.230 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/img-blog.png - 200 30220 image/png 2.9045ms -2026-01-28 14:10:57.231 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.231 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.231 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.231 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.231 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.231 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.231 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.231 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.231 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.231 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.231 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.231 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.231 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.231 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.231 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.231 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.231 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.231 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.231 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.231 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.231 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.231 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.231 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.231 +03:00 [INF] Sending file. Request path: 'blazor-global-styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\smexgl05zq-{0}-y3n6denrdr-y3n6denrdr.gz' -2026-01-28 14:10:57.231 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.231 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.231 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.231 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.231 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.231 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.231 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.231 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.231 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.231 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/blazor-global-styles.css - 200 641 text/css 9.0231ms -2026-01-28 14:10:57.231 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.231 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.231 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.231 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.231 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.231 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.231 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.231 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.231 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.232 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.232 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.232 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.232 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.232 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.232 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.232 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.232 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.232 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.232 +03:00 [INF] Sending file. Request path: '_framework/blazor.web.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\ocy8dvewdt-{0}-2i0r6wwb69-2i0r6wwb69.gz' -2026-01-28 14:10:57.232 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.232 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/blazor.web.js - 200 55628 text/javascript 3.0217ms -2026-01-28 14:10:57.232 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\obj\Debug\net10.0\compressed\p1g0cu86en-{0}-c25c931rn9-c25c931rn9.gz' -2026-01-28 14:10:57.232 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.232 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1375 text/css 10.1816ms -2026-01-28 14:10:57.232 +03:00 [INF] Sending file. Request path: 'images/getting-started/img-support.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\img-support.png' -2026-01-28 14:10:57.232 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.233 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/img-support.png - 200 23461 image/png 5.3354ms -2026-01-28 14:10:57.233 +03:00 [INF] Sending file. Request path: '_content/MudBlazor/MudBlazor.min.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\tzxjg6is5z-{0}-du7z45fy1o-du7z45fy1o.gz' -2026-01-28 14:10:57.233 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.233 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/MudBlazor/MudBlazor.min.css - 200 64451 text/css 10.6405ms -2026-01-28 14:10:57.233 +03:00 [INF] Sending file. Request path: '_content/MudBlazor/MudBlazor.min.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\0wz98yz2xy-{0}-u9015k2po7-u9015k2po7.gz' -2026-01-28 14:10:57.233 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.233 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/MudBlazor/MudBlazor.min.js - 200 11465 text/javascript 6.1457ms -2026-01-28 14:10:57.234 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.234 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.234 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.234 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.235 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.235 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.235 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.235 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.235 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.235 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.235 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.235 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.235 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.235 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.235 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.235 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.235 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.235 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.235 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.235 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.235 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.235 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.235 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.235 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.235 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.235 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.235 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.235 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.235 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.235 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.235 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.235 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.235 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.235 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.235 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.235 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.235 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.235 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.235 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.235 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.236 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.236 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.236 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.236 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.236 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\obj\Debug\net10.0\compressed\2mj6s76mwx-{0}-qb38od44a4-qb38od44a4.gz' -2026-01-28 14:10:57.236 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.236 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 486 text/javascript 7.768ms -2026-01-28 14:10:57.237 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\obj\Debug\net10.0\compressed\rhkuekteef-{0}-cowusv9rvg-cowusv9rvg.gz' -2026-01-28 14:10:57.237 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.237 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8981 text/javascript 9.1939ms -2026-01-28 14:10:57.358 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js - null null -2026-01-28 14:10:57.361 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.361 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.361 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.361 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.361 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.362 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.362 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.362 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.362 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.362 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.362 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.362 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.362 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.362 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.362 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.363 +03:00 [INF] Sending file. Request path: '_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js'. Physical path: 'C:\Users\ismai\.nuget\packages\microsoft.dotnet.hotreload.webassembly.browser\10.0.102\staticwebassets\Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js' -2026-01-28 14:10:57.363 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.363 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js - 200 1862 text/javascript 5.4521ms -2026-01-28 14:10:57.368 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.js - null null -2026-01-28 14:10:57.369 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.369 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.369 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.369 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.369 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.369 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.369 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.369 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.369 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.369 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.369 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.369 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.369 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.369 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.370 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.370 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.370 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.370 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.370 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.370 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.370 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.370 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.371 +03:00 [INF] Sending file. Request path: '_framework/dotnet.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uxk8is50o9-{0}-aooho9t0gv-aooho9t0gv.gz' -2026-01-28 14:10:57.371 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.371 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.js - 200 138290 text/javascript 3.2531ms -2026-01-28 14:10:57.389 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.0j6ezsi0n0.js - null null -2026-01-28 14:10:57.389 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.native.cs8mcre4gh.js - null null -2026-01-28 14:10:57.389 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.native.muve7a13r4.wasm - null null -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.390 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.390 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.390 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.390 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.390 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.390 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.391 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.391 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.391 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.391 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.391 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.391 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.391 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.391 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.391 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.391 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.391 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.391 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.391 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.391 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.391 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.391 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.391 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.391 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.391 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.391 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.391 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.391 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.391 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.391 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.392 +03:00 [INF] Sending file. Request path: '_framework/dotnet.native.cs8mcre4gh.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\k6ua61tyqb-{0}-cs8mcre4gh-cs8mcre4gh.gz' -2026-01-28 14:10:57.392 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.392 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.native.cs8mcre4gh.js - 200 34952 text/javascript 3.262ms -2026-01-28 14:10:57.392 +03:00 [INF] Sending file. Request path: '_framework/dotnet.runtime.0j6ezsi0n0.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ilxt1pu9fi-{0}-0j6ezsi0n0-0j6ezsi0n0.gz' -2026-01-28 14:10:57.392 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.393 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.0j6ezsi0n0.js - 200 57287 text/javascript 3.7159ms -2026-01-28 14:10:57.393 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44308/_blazor/negotiate?negotiateVersion=1 - null 0 -2026-01-28 14:10:57.393 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.394 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.394 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.394 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.394 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.394 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.394 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.394 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.394 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.394 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.394 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.394 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.394 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.394 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.395 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.395 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.395 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.395 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.395 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.395 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.395 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.395 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.396 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.396 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44308/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 2.6812ms -2026-01-28 14:10:57.401 +03:00 [INF] Sending file. Request path: '_framework/dotnet.native.muve7a13r4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uv3ayj7441-{0}-muve7a13r4-muve7a13r4.gz' -2026-01-28 14:10:57.401 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.401 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.native.muve7a13r4.wasm - 200 1207839 application/wasm 11.79ms -2026-01-28 14:10:57.408 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.JavaScript.flbdejno7d.wasm - null null -2026-01-28 14:10:57.409 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.409 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.409 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.409 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.409 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.409 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.409 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.409 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.409 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.409 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.409 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.409 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.409 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.409 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.410 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.410 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.410 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.410 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.410 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.410 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.410 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.410 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.411 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.InteropServices.JavaScript.flbdejno7d.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s7btk1c9a3-{0}-flbdejno7d-flbdejno7d.gz' -2026-01-28 14:10:57.411 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.411 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.JavaScript.flbdejno7d.wasm - 200 79680 application/wasm 3.6486ms -2026-01-28 14:10:57.447 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44308/_blazor?id=WecghhXo8cM87GoJgweWzQ - null null -2026-01-28 14:10:57.447 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.447 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.448 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.448 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.448 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.448 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.448 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.448 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.448 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.448 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.448 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.448 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.448 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.448 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.448 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.453 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.CoreLib.zjh2w4p93l.wasm - null null -2026-01-28 14:10:57.454 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.454 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.454 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.454 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.454 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.454 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.455 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.455 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.455 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.455 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.455 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.455 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.455 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.455 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.455 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.455 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.455 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.455 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.455 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.455 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.455 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.455 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.502 +03:00 [INF] Sending file. Request path: '_framework/System.Private.CoreLib.zjh2w4p93l.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6as1brjopk-{0}-zjh2w4p93l-zjh2w4p93l.gz' -2026-01-28 14:10:57.502 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.502 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.CoreLib.zjh2w4p93l.wasm - 200 4870686 application/wasm 49.1989ms -2026-01-28 14:10:57.535 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.js.map - null null -2026-01-28 14:10:57.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.536 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.536 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.536 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.536 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.536 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.536 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.536 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.536 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.536 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.536 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.537 +03:00 [INF] Sending file. Request path: '_framework/dotnet.runtime.js.map'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xqmdb6twc8-{0}-efgkpxn596-efgkpxn596.gz' -2026-01-28 14:10:57.537 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.537 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.js.map - 200 89353 text/plain 2.6803ms -2026-01-28 14:10:57.712 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2026-01-28 14:10:57.713 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2026-01-28 14:10:57.714 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2026-01-28 14:10:57.747 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/favicon.ico - null null -2026-01-28 14:10:57.748 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'N/A' -2026-01-28 14:10:57.748 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/favicon.ico - 200 38078 image/x-icon 1.1904ms -2026-01-28 14:10:57.758 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/bg-01.png - null null -2026-01-28 14:10:57.758 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/img-support.png - null null -2026-01-28 14:10:57.758 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/img-blog.png - null null -2026-01-28 14:10:57.758 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.758 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.758 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.758 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.758 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.758 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.759 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.759 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.759 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.759 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.759 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.759 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.759 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.759 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.759 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.759 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.759 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.759 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.759 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.759 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.759 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.759 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.759 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.759 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.759 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.759 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.759 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.759 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.759 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.759 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.759 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.759 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.759 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.759 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.759 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.759 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.759 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.759 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.759 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.759 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.759 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.759 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.760 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.760 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.760 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.761 +03:00 [INF] Sending file. Request path: 'images/getting-started/bg-01.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\bg-01.png' -2026-01-28 14:10:57.761 +03:00 [INF] Sending file. Request path: 'images/getting-started/img-support.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\img-support.png' -2026-01-28 14:10:57.761 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.761 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.761 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/img-support.png - 200 23461 image/png 3.2237ms -2026-01-28 14:10:57.761 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/bg-01.png - 200 22111 image/png 3.3029ms -2026-01-28 14:10:57.761 +03:00 [INF] Sending file. Request path: 'images/getting-started/img-blog.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\img-blog.png' -2026-01-28 14:10:57.761 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.761 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/img-blog.png - 200 30220 image/png 3.3474ms -2026-01-28 14:10:57.775 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.rgbxj6i45y.pdb - null null -2026-01-28 14:10:57.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.776 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.776 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.776 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.776 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.776 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.777 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.777 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.777 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.777 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.777 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.777 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.777 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.777 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.777 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.777 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.777 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.777 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.778 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.rgbxj6i45y.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vzc2x4ap4x-{0}-rgbxj6i45y-rgbxj6i45y.gz' -2026-01-28 14:10:57.778 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.778 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.rgbxj6i45y.pdb - 200 19065 application/octet-stream 2.3383ms -2026-01-28 14:10:57.784 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.3ihkiqtul0.pdb - null null -2026-01-28 14:10:57.784 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.784 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.784 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.784 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.784 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.785 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.785 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.785 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.785 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.785 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.785 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.785 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.785 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.785 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.785 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.785 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.785 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.785 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.785 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.785 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.785 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.785 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.786 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.3ihkiqtul0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6vzgo2e02t-{0}-3ihkiqtul0-3ihkiqtul0.gz' -2026-01-28 14:10:57.786 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.786 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.3ihkiqtul0.pdb - 200 18845 application/octet-stream 2.3578ms -2026-01-28 14:10:57.804 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.q12kofv66i.pdb - null null -2026-01-28 14:10:57.804 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.805 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.805 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.805 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.805 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.805 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.805 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.805 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.805 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.805 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.805 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.805 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.805 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.805 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.805 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.805 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.805 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.805 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.805 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.805 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.805 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.806 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.807 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.q12kofv66i.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tiqjr11wdr-{0}-q12kofv66i-q12kofv66i.gz' -2026-01-28 14:10:57.807 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.807 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.q12kofv66i.pdb - 200 40486 application/octet-stream 2.8522ms -2026-01-28 14:10:57.824 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.ugoz0mgqgy.pdb - null null -2026-01-28 14:10:57.824 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.824 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.824 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.824 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.824 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.825 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.825 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.825 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.825 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.825 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.825 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.825 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.825 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.825 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.826 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.826 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.826 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.826 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.826 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.826 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.826 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.826 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.828 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.ugoz0mgqgy.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3z9ena93oc-{0}-ugoz0mgqgy-ugoz0mgqgy.gz' -2026-01-28 14:10:57.828 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.828 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.ugoz0mgqgy.pdb - 200 31293 application/octet-stream 4.2308ms -2026-01-28 14:10:57.836 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.WebAssembly.imimiyzcuo.pdb - null null -2026-01-28 14:10:57.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.837 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.838 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.838 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.838 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.838 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.838 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.838 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.838 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.838 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.838 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.839 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Autofac.WebAssembly.imimiyzcuo.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\46uzmq97el-{0}-imimiyzcuo-imimiyzcuo.gz' -2026-01-28 14:10:57.839 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.839 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.WebAssembly.imimiyzcuo.pdb - 200 17837 application/octet-stream 2.5243ms -2026-01-28 14:10:57.846 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.xhf7sa1p5x.pdb - null null -2026-01-28 14:10:57.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.847 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.847 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.847 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.847 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.847 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.847 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.848 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.848 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.848 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.848 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.848 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.848 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.848 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.848 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.849 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.xhf7sa1p5x.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nvmr6rtxm8-{0}-xhf7sa1p5x-xhf7sa1p5x.gz' -2026-01-28 14:10:57.849 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.849 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.xhf7sa1p5x.pdb - 200 18717 application/octet-stream 2.5499ms -2026-01-28 14:10:57.856 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.aauy841uql.pdb - null null -2026-01-28 14:10:57.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.856 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.856 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.856 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.856 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.856 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.857 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.857 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.857 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.857 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.857 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.857 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.857 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.857 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.857 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.858 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.aauy841uql.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2jefoohlw9-{0}-aauy841uql-aauy841uql.gz' -2026-01-28 14:10:57.858 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.858 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.aauy841uql.pdb - 200 18717 application/octet-stream 2.3187ms -2026-01-28 14:10:57.865 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.gbnu5lon3p.pdb - null null -2026-01-28 14:10:57.865 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.865 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.865 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.865 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.866 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.866 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.867 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.867 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.867 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.867 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.867 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.867 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.867 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.867 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.868 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.gbnu5lon3p.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\yqm8xk8yh0-{0}-gbnu5lon3p-gbnu5lon3p.gz' -2026-01-28 14:10:57.868 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.868 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.gbnu5lon3p.pdb - 200 18277 application/octet-stream 3.5274ms -2026-01-28 14:10:57.873 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.HttpApi.Client.puryd8tfts.pdb - null null -2026-01-28 14:10:57.874 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.874 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.874 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.874 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.874 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.874 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.874 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.874 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.874 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.874 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.874 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.874 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.874 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.874 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.875 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.875 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.875 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.875 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.875 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.875 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.875 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.875 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.876 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.HttpApi.Client.puryd8tfts.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wa1oh5lir8-{0}-puryd8tfts-puryd8tfts.gz' -2026-01-28 14:10:57.876 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.876 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.HttpApi.Client.puryd8tfts.pdb - 200 18313 application/octet-stream 2.3569ms -2026-01-28 14:10:57.880 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Application.Contracts.q930c1xwd6.pdb - null null -2026-01-28 14:10:57.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.881 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.881 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.881 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.881 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.881 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.881 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.881 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.881 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.881 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.881 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.881 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.881 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.881 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.882 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.882 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Application.Contracts.q930c1xwd6.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7jvwr8mtd4-{0}-q930c1xwd6-q930c1xwd6.gz' -2026-01-28 14:10:57.882 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.882 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Application.Contracts.q930c1xwd6.pdb - 200 17845 application/octet-stream 1.9327ms -2026-01-28 14:10:57.887 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Domain.Shared.bmn2636ymj.pdb - null null -2026-01-28 14:10:57.887 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.887 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.887 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.888 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.888 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.888 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.888 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.888 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.888 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.888 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.888 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.888 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.888 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.888 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.888 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.889 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Domain.Shared.bmn2636ymj.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rlbmklp40g-{0}-bmn2636ymj-bmn2636ymj.gz' -2026-01-28 14:10:57.889 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.889 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Domain.Shared.bmn2636ymj.pdb - 200 17373 application/octet-stream 1.891ms -2026-01-28 14:10:57.894 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.tv5yl1psyg.pdb - null null -2026-01-28 14:10:57.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.895 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.895 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.895 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.895 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.895 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.896 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.896 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.896 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.896 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.896 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.896 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.896 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.896 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.896 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.896 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.896 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.896 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.896 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.896 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.896 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.896 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.897 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.tv5yl1psyg.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kaxpuw2pqs-{0}-tv5yl1psyg-tv5yl1psyg.gz' -2026-01-28 14:10:57.897 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.897 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.tv5yl1psyg.pdb - 200 21877 application/octet-stream 3.203ms -2026-01-28 14:10:57.903 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.i3kyf3e5w5.pdb - null null -2026-01-28 14:10:57.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.903 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.903 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.903 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.903 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.904 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.904 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.904 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.904 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.904 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.904 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.904 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.904 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.904 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.904 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.904 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.904 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.904 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.904 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.904 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.904 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.905 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.905 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.i3kyf3e5w5.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3g4acw7rc0-{0}-i3kyf3e5w5-i3kyf3e5w5.gz' -2026-01-28 14:10:57.905 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.905 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.i3kyf3e5w5.pdb - 200 28037 application/octet-stream 2.5649ms -2026-01-28 14:10:57.912 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.hcs1zisgxl.pdb - null null -2026-01-28 14:10:57.912 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.912 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.912 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.912 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.912 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.913 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.913 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.913 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.913 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.913 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.913 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.913 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.913 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.913 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.913 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.913 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.913 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.913 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.913 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.913 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.913 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.913 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.914 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.hcs1zisgxl.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\iqrjqm25rb-{0}-hcs1zisgxl-hcs1zisgxl.gz' -2026-01-28 14:10:57.914 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.914 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.hcs1zisgxl.pdb - 200 41586 application/octet-stream 2.2386ms -2026-01-28 14:10:57.920 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.w6zddju3kj.pdb - null null -2026-01-28 14:10:57.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.921 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.921 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.921 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.921 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.921 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.921 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.921 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.921 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.921 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.921 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.921 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.921 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.921 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.921 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.921 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.921 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.921 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.921 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.921 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.922 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.w6zddju3kj.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wynnfd4qyp-{0}-w6zddju3kj-w6zddju3kj.gz' -2026-01-28 14:10:57.922 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.922 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.w6zddju3kj.pdb - 200 31269 application/octet-stream 2.1565ms -2026-01-28 14:10:57.927 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.kgrhtsi4hq.pdb - null null -2026-01-28 14:10:57.927 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.927 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.928 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.928 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.928 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.928 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.928 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.928 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.928 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.928 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.928 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.928 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.928 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.928 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.928 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.928 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.928 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.928 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.928 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.928 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.928 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.928 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.929 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.kgrhtsi4hq.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\htac70xodz-{0}-kgrhtsi4hq-kgrhtsi4hq.gz' -2026-01-28 14:10:57.929 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.929 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.kgrhtsi4hq.pdb - 200 18517 application/octet-stream 2.0809ms -2026-01-28 14:10:57.933 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.mqramojkbo.pdb - null null -2026-01-28 14:10:57.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.933 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.934 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.934 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.934 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.934 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.934 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.934 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.934 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.934 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.934 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.934 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.934 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.934 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.934 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.934 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.934 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.934 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.934 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.934 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.934 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.935 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.935 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.mqramojkbo.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mf8v92gj25-{0}-mqramojkbo-mqramojkbo.gz' -2026-01-28 14:10:57.935 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.935 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.mqramojkbo.pdb - 200 13921 application/octet-stream 2.4695ms -2026-01-28 14:10:57.942 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.kbf4e1o5yq.pdb - null null -2026-01-28 14:10:57.942 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.942 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.942 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.942 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.942 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.942 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.942 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.942 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.942 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.943 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.943 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.943 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.943 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.943 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.943 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.943 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.943 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.943 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.943 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.943 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.943 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.943 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.944 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.kbf4e1o5yq.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\075clw76hm-{0}-kbf4e1o5yq-kbf4e1o5yq.gz' -2026-01-28 14:10:57.944 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.944 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.kbf4e1o5yq.pdb - 200 21557 application/octet-stream 2.1491ms -2026-01-28 14:10:57.949 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.j3nmt0rh5o.pdb - null null -2026-01-28 14:10:57.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.949 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.949 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.949 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.949 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.949 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.950 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.950 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.950 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.950 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.950 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.950 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.950 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.950 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.950 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.951 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.j3nmt0rh5o.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gbgteom76y-{0}-j3nmt0rh5o-j3nmt0rh5o.gz' -2026-01-28 14:10:57.951 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.951 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.j3nmt0rh5o.pdb - 200 31349 application/octet-stream 2.4299ms -2026-01-28 14:10:57.956 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.ej4nfwopnt.pdb - null null -2026-01-28 14:10:57.956 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.956 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.956 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.956 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.956 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.956 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.956 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.956 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.956 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.956 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.956 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.956 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.956 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.956 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.957 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.957 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.957 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.957 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.957 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.957 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.957 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.957 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.958 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Blazor.MudBlazor.ej4nfwopnt.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8c1zm5wt8e-{0}-ej4nfwopnt-ej4nfwopnt.gz' -2026-01-28 14:10:57.958 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.958 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.ej4nfwopnt.pdb - 200 45622 application/octet-stream 2.0763ms -2026-01-28 14:10:57.963 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MudBlazorUI.kagx9siw5c.pdb - null null -2026-01-28 14:10:57.963 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.964 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.964 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.964 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.964 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.964 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.964 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.964 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.964 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.964 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.964 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.964 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.964 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.964 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.965 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.965 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.965 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.965 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.965 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.965 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.965 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.965 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.967 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MudBlazorUI.kagx9siw5c.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fb4n2yszse-{0}-kagx9siw5c-kagx9siw5c.gz' -2026-01-28 14:10:57.967 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.967 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MudBlazorUI.kagx9siw5c.pdb - 200 75523 application/octet-stream 4.5966ms -2026-01-28 14:10:57.973 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.h9wobfk88b.pdb - null null -2026-01-28 14:10:57.974 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.974 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.974 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.974 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.974 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.974 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.974 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.974 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.974 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.974 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.974 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.974 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.974 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.974 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.975 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.975 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.975 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.975 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.975 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.975 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.975 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.975 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.976 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.h9wobfk88b.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ouhgkzthum-{0}-h9wobfk88b-h9wobfk88b.gz' -2026-01-28 14:10:57.976 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.976 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.h9wobfk88b.pdb - 200 42806 application/octet-stream 2.4646ms -2026-01-28 14:10:57.981 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.sff8ai0aia.pdb - null null -2026-01-28 14:10:57.982 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.982 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.983 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.983 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.983 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.984 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.984 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.984 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.984 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.984 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.984 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.984 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.985 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.sff8ai0aia.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xdm6fxeedd-{0}-sff8ai0aia-sff8ai0aia.gz' -2026-01-28 14:10:57.985 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.985 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.sff8ai0aia.pdb - 200 18145 application/octet-stream 3.8288ms -2026-01-28 14:10:57.996 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.6hy2xofs6k.pdb - null null -2026-01-28 14:10:57.997 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.997 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:57.997 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:57.997 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:57.997 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.997 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:57.997 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:57.997 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:57.997 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:57.997 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:57.997 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:57.997 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.997 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:57.997 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:57.998 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:57.998 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:57.998 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:57.998 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:57.998 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:57.998 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:57.998 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:57.998 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.999 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.6hy2xofs6k.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wvossyu6ah-{0}-6hy2xofs6k-6hy2xofs6k.gz' -2026-01-28 14:10:57.999 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:57.999 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.6hy2xofs6k.pdb - 200 41322 application/octet-stream 2.7019ms -2026-01-28 14:10:58.006 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.phiqfrt9c2.pdb - null null -2026-01-28 14:10:58.006 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.006 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.006 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.007 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.007 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.007 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.007 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.007 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.007 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.007 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.007 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.007 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.007 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.007 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.007 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.007 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.007 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.007 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.007 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.007 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.007 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.007 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.008 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.phiqfrt9c2.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mq253tbkc6-{0}-phiqfrt9c2-phiqfrt9c2.gz' -2026-01-28 14:10:58.008 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.008 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.phiqfrt9c2.pdb - 200 28197 application/octet-stream 2.6083ms -2026-01-28 14:10:58.015 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.Application.Contracts.lnhr5y4bfl.pdb - null null -2026-01-28 14:10:58.016 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.016 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.016 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.016 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.016 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.016 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.016 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.016 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.016 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.016 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.016 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.016 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.016 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.016 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.016 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.016 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.016 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.016 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.016 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.016 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.016 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.017 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.017 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Account.Application.Contracts.lnhr5y4bfl.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uzxye9p8cy-{0}-lnhr5y4bfl-lnhr5y4bfl.gz' -2026-01-28 14:10:58.017 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.017 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.Application.Contracts.lnhr5y4bfl.pdb - 200 19021 application/octet-stream 2.1718ms -2026-01-28 14:10:58.023 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.HttpApi.Client.vbwanrrdq2.pdb - null null -2026-01-28 14:10:58.023 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.024 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.024 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.024 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.024 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.024 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.024 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.024 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.024 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.024 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.024 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.024 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.024 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.024 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.024 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.024 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.024 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.024 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.024 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.024 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.024 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.025 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.025 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Account.HttpApi.Client.vbwanrrdq2.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ntmq6e7ewr-{0}-vbwanrrdq2-vbwanrrdq2.gz' -2026-01-28 14:10:58.026 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.026 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.HttpApi.Client.vbwanrrdq2.pdb - 200 18073 application/octet-stream 2.5858ms -2026-01-28 14:10:58.032 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.hpzdukhxsy.pdb - null null -2026-01-28 14:10:58.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.032 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.032 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.033 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.033 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.033 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.033 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.033 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.033 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.033 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.033 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.033 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.hpzdukhxsy.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\eoau05i0af-{0}-hpzdukhxsy-hpzdukhxsy.gz' -2026-01-28 14:10:58.033 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.034 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.hpzdukhxsy.pdb - 200 25305 application/octet-stream 2.0139ms -2026-01-28 14:10:58.039 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Contracts.4guztbzukr.pdb - null null -2026-01-28 14:10:58.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.039 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.039 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.039 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.039 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.040 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.040 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.043 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.043 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.043 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.043 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.043 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.043 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.043 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.043 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.045 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.Contracts.4guztbzukr.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ur1wb3r0pv-{0}-4guztbzukr-4guztbzukr.gz' -2026-01-28 14:10:58.045 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.045 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Contracts.4guztbzukr.pdb - 200 26921 application/octet-stream 5.9462ms -2026-01-28 14:10:58.050 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.3fgrvz25ex.pdb - null null -2026-01-28 14:10:58.050 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.050 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.050 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.050 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.050 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.050 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.050 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.051 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.051 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.051 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.051 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.051 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.051 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.051 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.051 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.051 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.051 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.051 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.051 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.051 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.051 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.051 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.052 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Auditing.3fgrvz25ex.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\o0dl3ao57v-{0}-3fgrvz25ex-3fgrvz25ex.gz' -2026-01-28 14:10:58.052 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.052 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.3fgrvz25ex.pdb - 200 29913 application/octet-stream 2.3316ms -2026-01-28 14:10:58.057 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.Contracts.ad5k0tpyib.pdb - null null -2026-01-28 14:10:58.058 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.058 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.058 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.058 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.059 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.059 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.059 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.059 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.059 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.059 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.059 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.059 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.059 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.060 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Auditing.Contracts.ad5k0tpyib.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wqxp9ykz4o-{0}-ad5k0tpyib-ad5k0tpyib.gz' -2026-01-28 14:10:58.060 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.060 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.Contracts.ad5k0tpyib.pdb - 200 14417 application/octet-stream 2.8756ms -2026-01-28 14:10:58.065 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AuditLogging.Domain.Shared.er7pf6ix9i.pdb - null null -2026-01-28 14:10:58.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.066 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.066 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.066 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.066 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.066 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.066 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.067 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.067 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.067 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.067 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.067 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.067 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.067 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.067 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.067 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AuditLogging.Domain.Shared.er7pf6ix9i.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5199po5zxq-{0}-er7pf6ix9i-er7pf6ix9i.gz' -2026-01-28 14:10:58.067 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.068 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AuditLogging.Domain.Shared.er7pf6ix9i.pdb - 200 16493 application/octet-stream 2.1784ms -2026-01-28 14:10:58.074 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.c2wpqbl74n.pdb - null null -2026-01-28 14:10:58.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.074 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.074 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.074 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.074 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.074 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.074 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.075 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.075 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.075 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.075 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.075 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.075 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.075 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.075 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.076 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Authorization.c2wpqbl74n.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sb9kt3tht9-{0}-c2wpqbl74n-c2wpqbl74n.gz' -2026-01-28 14:10:58.076 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.076 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.c2wpqbl74n.pdb - 200 41330 application/octet-stream 2.6606ms -2026-01-28 14:10:58.082 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.Abstractions.njkrkpdqox.pdb - null null -2026-01-28 14:10:58.082 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.082 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.082 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.082 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.082 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.082 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.082 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.082 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.082 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.082 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.082 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.082 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.082 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.083 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.083 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.083 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.083 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.083 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.083 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.083 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.083 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.083 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.084 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Authorization.Abstractions.njkrkpdqox.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\09yc6y4n5e-{0}-njkrkpdqox-njkrkpdqox.gz' -2026-01-28 14:10:58.084 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.084 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.Abstractions.njkrkpdqox.pdb - 200 27181 application/octet-stream 2.2153ms -2026-01-28 14:10:58.089 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.gjl6v1jjym.pdb - null null -2026-01-28 14:10:58.090 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.090 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.090 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.090 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.090 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.090 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.090 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.090 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.090 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.090 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.090 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.090 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.090 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.090 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.091 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.091 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.091 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.091 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.091 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.091 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.091 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.091 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.092 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Autofac.gjl6v1jjym.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jpkrtenkjs-{0}-gjl6v1jjym-gjl6v1jjym.gz' -2026-01-28 14:10:58.092 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.092 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.gjl6v1jjym.pdb - 200 18693 application/octet-stream 2.8342ms -2026-01-28 14:10:58.098 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundJobs.Domain.Shared.5vpn00cswb.pdb - null null -2026-01-28 14:10:58.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.099 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.099 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.100 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.100 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.100 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.100 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.100 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.100 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.100 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.100 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.101 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BackgroundJobs.Domain.Shared.5vpn00cswb.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\htaazompkm-{0}-5vpn00cswb-5vpn00cswb.gz' -2026-01-28 14:10:58.101 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.101 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundJobs.Domain.Shared.5vpn00cswb.pdb - 200 13221 application/octet-stream 2.2038ms -2026-01-28 14:10:58.108 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundWorkers.huyj44uu0k.pdb - null null -2026-01-28 14:10:58.108 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.108 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.108 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.108 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.108 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.109 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.109 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.109 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.109 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.109 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.109 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.109 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.109 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.109 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.110 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.110 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BackgroundWorkers.huyj44uu0k.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ei0v3zqng-{0}-huyj44uu0k-huyj44uu0k.gz' -2026-01-28 14:10:58.111 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.111 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundWorkers.huyj44uu0k.pdb - 200 19469 application/octet-stream 3.0696ms -2026-01-28 14:10:58.119 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Caching.x1qmvuwbas.pdb - null null -2026-01-28 14:10:58.120 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.120 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.120 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.120 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.120 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.120 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.120 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.120 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.120 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.120 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.120 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.120 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.120 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.120 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.121 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.121 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.121 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.121 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.121 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.121 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.121 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.121 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.122 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Caching.x1qmvuwbas.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wokijgaifq-{0}-x1qmvuwbas-x1qmvuwbas.gz' -2026-01-28 14:10:58.122 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.122 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Caching.x1qmvuwbas.pdb - 200 37286 application/octet-stream 2.5876ms -2026-01-28 14:10:58.129 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Castle.Core.b02it10il0.pdb - null null -2026-01-28 14:10:58.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.130 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.130 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.130 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.130 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.130 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.130 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.130 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.130 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.130 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.130 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.130 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.130 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.130 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.131 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.131 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Castle.Core.b02it10il0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dte7v0ocsr-{0}-b02it10il0-b02it10il0.gz' -2026-01-28 14:10:58.131 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.131 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Castle.Core.b02it10il0.pdb - 200 15221 application/octet-stream 2.3117ms -2026-01-28 14:10:58.137 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Core.t1nnzj3qxb.pdb - null null -2026-01-28 14:10:58.137 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.138 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.138 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.138 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.138 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.138 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.138 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.138 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.138 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.138 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.138 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.138 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.138 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.138 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.138 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.138 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.138 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.138 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.138 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.138 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.138 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.139 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.140 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Core.t1nnzj3qxb.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c42x4ftr8l-{0}-t1nnzj3qxb-t1nnzj3qxb.gz' -2026-01-28 14:10:58.140 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.140 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Core.t1nnzj3qxb.pdb - 200 148177 application/octet-stream 3.4871ms -2026-01-28 14:10:58.151 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Data.9rv6w6qyku.pdb - null null -2026-01-28 14:10:58.151 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.151 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.151 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.151 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.151 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.152 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.152 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.152 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.152 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.152 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.152 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.152 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.152 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.152 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.152 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.152 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.152 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.152 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.152 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.152 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.152 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.152 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.153 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Data.9rv6w6qyku.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ze3wjukds-{0}-9rv6w6qyku-9rv6w6qyku.gz' -2026-01-28 14:10:58.153 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.153 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Data.9rv6w6qyku.pdb - 200 21821 application/octet-stream 2.3791ms -2026-01-28 14:10:58.163 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Ddd.Application.Contracts.giee71sla7.pdb - null null -2026-01-28 14:10:58.163 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.164 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.164 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.164 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.164 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.164 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.164 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.164 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.164 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.164 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.164 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.164 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.164 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.164 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.164 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.165 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Ddd.Application.Contracts.giee71sla7.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5aiafzhp1m-{0}-giee71sla7-giee71sla7.gz' -2026-01-28 14:10:58.165 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.165 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Ddd.Application.Contracts.giee71sla7.pdb - 200 23417 application/octet-stream 2.0444ms -2026-01-28 14:10:58.169 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.DistributedLocking.Abstractions.65nua6uxpe.pdb - null null -2026-01-28 14:10:58.170 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.170 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.170 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.170 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.170 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.170 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.170 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.170 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.170 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.170 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.170 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.170 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.170 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.170 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.170 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.171 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.171 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.171 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.171 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.171 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.171 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.171 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.171 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.DistributedLocking.Abstractions.65nua6uxpe.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\a8j0sb24cp-{0}-65nua6uxpe-65nua6uxpe.gz' -2026-01-28 14:10:58.172 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.172 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.DistributedLocking.Abstractions.65nua6uxpe.pdb - 200 14657 application/octet-stream 2.2185ms -2026-01-28 14:10:58.177 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.iceog8f4b1.pdb - null null -2026-01-28 14:10:58.177 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.177 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.177 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.177 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.177 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.178 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.178 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.178 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.178 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.178 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.178 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.178 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.178 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.178 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.178 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.178 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.178 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.178 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.178 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.178 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.179 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.179 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.180 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.EventBus.iceog8f4b1.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c7ycdiyl76-{0}-iceog8f4b1-iceog8f4b1.gz' -2026-01-28 14:10:58.180 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.180 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.iceog8f4b1.pdb - 200 37630 application/octet-stream 3.1296ms -2026-01-28 14:10:58.188 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.Abstractions.xi5e4z12z9.pdb - null null -2026-01-28 14:10:58.189 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.189 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.189 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.189 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.189 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.189 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.189 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.189 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.189 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.189 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.189 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.189 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.189 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.189 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.190 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.190 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.190 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.190 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.190 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.190 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.190 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.190 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.191 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.EventBus.Abstractions.xi5e4z12z9.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\w7l86von3o-{0}-xi5e4z12z9-xi5e4z12z9.gz' -2026-01-28 14:10:58.191 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.191 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.Abstractions.xi5e4z12z9.pdb - 200 20237 application/octet-stream 3.1656ms -2026-01-28 14:10:58.197 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ExceptionHandling.25h2gy8c5p.pdb - null null -2026-01-28 14:10:58.198 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.198 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.198 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.198 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.198 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.198 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.198 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.198 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.198 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.198 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.198 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.198 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.198 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.198 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.199 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.199 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.199 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.199 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.199 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.199 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.199 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.199 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.200 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ExceptionHandling.25h2gy8c5p.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\m6s0vb39gb-{0}-25h2gy8c5p-25h2gy8c5p.gz' -2026-01-28 14:10:58.200 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.200 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ExceptionHandling.25h2gy8c5p.pdb - 200 20157 application/octet-stream 3.4359ms -2026-01-28 14:10:58.205 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Application.Contracts.0urd6kcrgp.pdb - null null -2026-01-28 14:10:58.205 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.205 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.205 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.205 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.205 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.206 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.206 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.206 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.206 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.206 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.206 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.206 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.206 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.206 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.206 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.207 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Application.Contracts.0urd6kcrgp.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0ru1qvb3x4-{0}-0urd6kcrgp-0urd6kcrgp.gz' -2026-01-28 14:10:58.207 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.207 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Application.Contracts.0urd6kcrgp.pdb - 200 16981 application/octet-stream 2.6406ms -2026-01-28 14:10:58.213 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Domain.Shared.4mozmqu5fv.pdb - null null -2026-01-28 14:10:58.213 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.213 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.214 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.214 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.214 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.214 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.214 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.214 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.214 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.214 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.214 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.214 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.214 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.214 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.214 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.214 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.214 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.214 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.214 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.214 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.214 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.214 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.215 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Domain.Shared.4mozmqu5fv.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dnjx07a9gy-{0}-4mozmqu5fv-4mozmqu5fv.gz' -2026-01-28 14:10:58.215 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.215 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Domain.Shared.4mozmqu5fv.pdb - 200 18405 application/octet-stream 2.0335ms -2026-01-28 14:10:58.220 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.HttpApi.Client.3n7n0nm412.pdb - null null -2026-01-28 14:10:58.221 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.221 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.221 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.221 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.221 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.221 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.221 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.221 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.221 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.221 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.221 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.221 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.221 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.221 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.222 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.222 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.222 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.222 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.222 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.222 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.222 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.222 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.223 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.HttpApi.Client.3n7n0nm412.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xephdxvmqy-{0}-3n7n0nm412-3n7n0nm412.gz' -2026-01-28 14:10:58.223 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.223 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.HttpApi.Client.3n7n0nm412.pdb - 200 16661 application/octet-stream 3.032ms -2026-01-28 14:10:58.228 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Features.e0wztgo5kc.pdb - null null -2026-01-28 14:10:58.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.229 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.229 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.229 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.229 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.229 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.229 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.230 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.230 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.230 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.230 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.230 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.230 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.230 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.230 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.230 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Features.e0wztgo5kc.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lwwrm2rnuk-{0}-e0wztgo5kc-e0wztgo5kc.gz' -2026-01-28 14:10:58.230 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.231 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Features.e0wztgo5kc.pdb - 200 31093 application/octet-stream 2.3527ms -2026-01-28 14:10:58.235 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.GlobalFeatures.i3mx9avsa1.pdb - null null -2026-01-28 14:10:58.235 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.235 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.236 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.236 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.236 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.236 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.236 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.236 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.236 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.236 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.236 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.236 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.236 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.236 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.236 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.237 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.GlobalFeatures.i3mx9avsa1.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8hrz94lbbq-{0}-i3mx9avsa1-i3mx9avsa1.gz' -2026-01-28 14:10:58.237 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.237 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.GlobalFeatures.i3mx9avsa1.pdb - 200 20401 application/octet-stream 2.2659ms -2026-01-28 14:10:58.242 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Guids.trl9ec6i34.pdb - null null -2026-01-28 14:10:58.242 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.242 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.242 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.242 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.242 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.243 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.243 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.243 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.243 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.243 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.243 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.243 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.243 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.243 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.243 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.244 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Guids.trl9ec6i34.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0qqhgjay94-{0}-trl9ec6i34-trl9ec6i34.gz' -2026-01-28 14:10:58.244 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.244 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Guids.trl9ec6i34.pdb - 200 14061 application/octet-stream 2.484ms -2026-01-28 14:10:58.265 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.e49tj9fcht.pdb - null null -2026-01-28 14:10:58.266 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.266 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.266 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.266 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.266 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.266 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.266 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.266 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.266 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.266 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.266 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.266 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.266 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.266 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.266 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.266 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.266 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.266 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.266 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.266 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.266 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.267 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.267 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.e49tj9fcht.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b3mu9af069-{0}-e49tj9fcht-e49tj9fcht.gz' -2026-01-28 14:10:58.268 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.268 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.e49tj9fcht.pdb - 200 31453 application/octet-stream 2.5175ms -2026-01-28 14:10:58.274 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Abstractions.k3c9afe7hi.pdb - null null -2026-01-28 14:10:58.274 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.274 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.274 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.274 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.274 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.275 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.275 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.275 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.275 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.275 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.275 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.275 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.275 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.275 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.275 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.275 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.275 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.275 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.275 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.275 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.275 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.276 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.277 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Abstractions.k3c9afe7hi.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j4y3kuv6se-{0}-k3c9afe7hi-k3c9afe7hi.gz' -2026-01-28 14:10:58.277 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.277 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Abstractions.k3c9afe7hi.pdb - 200 13525 application/octet-stream 2.9946ms -2026-01-28 14:10:58.283 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.yru01o8vkp.pdb - null null -2026-01-28 14:10:58.283 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.283 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.283 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.283 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.283 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.284 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.284 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.284 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.284 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.284 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.284 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.284 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.284 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.284 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.284 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.284 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.284 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.284 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.284 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.284 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.284 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.284 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.285 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.yru01o8vkp.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ttya30eyt8-{0}-yru01o8vkp-yru01o8vkp.gz' -2026-01-28 14:10:58.285 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.285 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.yru01o8vkp.pdb - 200 38918 application/octet-stream 2.4712ms -2026-01-28 14:10:58.291 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.3tflefedmx.pdb - null null -2026-01-28 14:10:58.292 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.292 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.292 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.292 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.292 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.292 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.293 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.293 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.293 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.293 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.293 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.293 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.293 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.293 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.293 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.293 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.293 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.293 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.293 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.293 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.293 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.293 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.295 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.IdentityModel.3tflefedmx.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\d3rz4s2afx-{0}-3tflefedmx-3tflefedmx.gz' -2026-01-28 14:10:58.295 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.295 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.3tflefedmx.pdb - 200 16433 application/octet-stream 3.2074ms -2026-01-28 14:10:58.301 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Application.Contracts.csmzqgy4d0.pdb - null null -2026-01-28 14:10:58.301 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.301 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.301 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.301 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.301 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.301 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.301 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.301 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.301 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.301 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.301 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.301 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.301 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.301 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.302 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.302 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.302 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.302 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.302 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.302 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.302 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.302 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.303 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Application.Contracts.csmzqgy4d0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\h1go2ee35q-{0}-csmzqgy4d0-csmzqgy4d0.gz' -2026-01-28 14:10:58.303 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.303 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Application.Contracts.csmzqgy4d0.pdb - 200 20665 application/octet-stream 2.4832ms -2026-01-28 14:10:58.309 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Domain.Shared.earp2x5g6u.pdb - null null -2026-01-28 14:10:58.310 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.310 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.310 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.310 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.310 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.310 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.310 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.310 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.310 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.310 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.310 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.310 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.310 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.310 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.311 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.311 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.311 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.311 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.311 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.311 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.311 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.311 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.312 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Domain.Shared.earp2x5g6u.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wq3qylwiyp-{0}-earp2x5g6u-earp2x5g6u.gz' -2026-01-28 14:10:58.312 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.312 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Domain.Shared.earp2x5g6u.pdb - 200 23785 application/octet-stream 3.2706ms -2026-01-28 14:10:58.317 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.HttpApi.Client.4ey4wjeneg.pdb - null null -2026-01-28 14:10:58.318 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.318 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.318 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.318 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.318 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.318 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.318 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.318 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.318 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.318 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.318 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.318 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.318 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.318 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.319 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.319 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.319 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.319 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.319 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.319 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.319 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.319 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.320 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.HttpApi.Client.4ey4wjeneg.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0u48eqlsj4-{0}-4ey4wjeneg-4ey4wjeneg.gz' -2026-01-28 14:10:58.320 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.320 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.HttpApi.Client.4ey4wjeneg.pdb - 200 23337 application/octet-stream 2.7902ms -2026-01-28 14:10:58.326 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.IdentityModel.biic7mtw2y.pdb - null null -2026-01-28 14:10:58.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.327 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.327 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.327 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.327 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.328 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.328 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.328 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.328 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.328 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.328 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.328 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.328 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.328 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.328 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.328 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.328 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.328 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.328 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.328 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.329 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.329 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.330 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.IdentityModel.biic7mtw2y.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\poi5v0je1c-{0}-biic7mtw2y-biic7mtw2y.gz' -2026-01-28 14:10:58.330 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.330 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.IdentityModel.biic7mtw2y.pdb - 200 20817 application/octet-stream 3.4673ms -2026-01-28 14:10:58.334 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.wxbyyf07mz.pdb - null null -2026-01-28 14:10:58.335 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.335 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.335 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.335 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.335 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.335 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.335 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.335 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.335 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.335 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.335 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.335 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.335 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.335 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.335 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.335 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.335 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.335 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.335 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.335 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.335 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.336 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.336 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.wxbyyf07mz.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rrchruuh0t-{0}-wxbyyf07mz-wxbyyf07mz.gz' -2026-01-28 14:10:58.336 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.336 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.wxbyyf07mz.pdb - 200 13757 application/octet-stream 2.1083ms -2026-01-28 14:10:58.342 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.Abstractions.b6z6t2mhzy.pdb - null null -2026-01-28 14:10:58.343 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.343 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.343 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.343 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.343 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.343 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.343 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.343 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.343 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.343 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.343 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.343 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.343 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.343 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.344 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.344 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.344 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.344 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.344 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.344 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.344 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.344 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.345 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.Abstractions.b6z6t2mhzy.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\u9w5uxptpu-{0}-b6z6t2mhzy-b6z6t2mhzy.gz' -2026-01-28 14:10:58.345 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.346 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.Abstractions.b6z6t2mhzy.pdb - 200 13249 application/octet-stream 3.6659ms -2026-01-28 14:10:58.351 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.SystemTextJson.rdlvucrzj7.pdb - null null -2026-01-28 14:10:58.351 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.351 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.351 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.351 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.351 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.352 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.352 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.352 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.352 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.352 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.352 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.352 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.352 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.352 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.352 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.352 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.352 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.352 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.352 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.352 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.352 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.352 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.353 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.SystemTextJson.rdlvucrzj7.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4rl2glc87e-{0}-rdlvucrzj7-rdlvucrzj7.gz' -2026-01-28 14:10:58.353 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.353 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.SystemTextJson.rdlvucrzj7.pdb - 200 21501 application/octet-stream 2.6814ms -2026-01-28 14:10:58.361 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.ellkzq2obz.pdb - null null -2026-01-28 14:10:58.361 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.361 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.362 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.362 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.362 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.362 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.362 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.362 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.362 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.362 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.362 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.362 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.362 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.362 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.362 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.363 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Localization.ellkzq2obz.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9jz0202bvx-{0}-ellkzq2obz-ellkzq2obz.gz' -2026-01-28 14:10:58.363 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.363 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.ellkzq2obz.pdb - 200 34682 application/octet-stream 2.5581ms -2026-01-28 14:10:58.368 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.Abstractions.e2czzeh6g0.pdb - null null -2026-01-28 14:10:58.368 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.368 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.368 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.369 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.369 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.369 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.369 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.369 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.369 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.369 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.369 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.369 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.369 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.369 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.369 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.369 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.369 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.369 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.369 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.369 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.369 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.370 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.371 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Localization.Abstractions.e2czzeh6g0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nql43ug6yv-{0}-e2czzeh6g0-e2czzeh6g0.gz' -2026-01-28 14:10:58.371 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.371 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.Abstractions.e2czzeh6g0.pdb - 200 16505 application/octet-stream 3.0246ms -2026-01-28 14:10:58.378 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Mapperly.xzmrwcbuer.pdb - null null -2026-01-28 14:10:58.379 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.379 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.379 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.379 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.379 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.379 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.379 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.379 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.379 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.379 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.379 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.379 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.379 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.379 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.380 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.380 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.380 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.380 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.380 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.380 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.380 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.380 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.381 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Mapperly.xzmrwcbuer.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ir90d0l0q4-{0}-xzmrwcbuer-xzmrwcbuer.gz' -2026-01-28 14:10:58.381 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.381 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Mapperly.xzmrwcbuer.pdb - 200 18489 application/octet-stream 2.606ms -2026-01-28 14:10:58.386 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Minify.jd3swzgz81.pdb - null null -2026-01-28 14:10:58.386 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.386 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.386 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.386 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.386 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.387 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.387 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.387 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.387 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.387 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.387 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.387 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.387 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.387 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.387 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.387 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.387 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.387 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.387 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.387 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.387 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.388 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.389 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Minify.jd3swzgz81.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6nicogsytc-{0}-jd3swzgz81-jd3swzgz81.gz' -2026-01-28 14:10:58.389 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.389 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Minify.jd3swzgz81.pdb - 200 14637 application/octet-stream 3.152ms -2026-01-28 14:10:58.395 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.m645p8frzn.pdb - null null -2026-01-28 14:10:58.395 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.395 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.395 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.395 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.395 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.395 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.396 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.396 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.396 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.396 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.396 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.396 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.396 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.396 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.396 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.397 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MultiTenancy.m645p8frzn.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xypgrhxtpa-{0}-m645p8frzn-m645p8frzn.gz' -2026-01-28 14:10:58.397 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.397 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.m645p8frzn.pdb - 200 21073 application/octet-stream 2.3811ms -2026-01-28 14:10:58.403 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.Abstractions.6usxju90tg.pdb - null null -2026-01-28 14:10:58.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.404 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.404 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.404 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.404 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.404 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.404 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.405 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.405 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.405 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.405 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.405 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.405 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.405 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.405 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.406 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MultiTenancy.Abstractions.6usxju90tg.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bwd6m19o6e-{0}-6usxju90tg-6usxju90tg.gz' -2026-01-28 14:10:58.406 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.406 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.Abstractions.6usxju90tg.pdb - 200 19661 application/octet-stream 3.3363ms -2026-01-28 14:10:58.413 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectExtending.vubnqxtt45.pdb - null null -2026-01-28 14:10:58.413 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.413 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.413 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.413 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.413 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.413 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.414 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.414 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.414 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.414 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.414 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.414 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.414 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.414 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.414 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.414 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.414 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.414 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.414 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.414 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.414 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.414 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.415 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ObjectExtending.vubnqxtt45.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wybocaa0up-{0}-vubnqxtt45-vubnqxtt45.gz' -2026-01-28 14:10:58.415 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.415 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectExtending.vubnqxtt45.pdb - 200 31977 application/octet-stream 2.6149ms -2026-01-28 14:10:58.422 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectMapping.5ggcg7w9e7.pdb - null null -2026-01-28 14:10:58.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.422 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.422 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.422 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.422 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.423 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.423 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.423 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.423 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.423 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.423 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.423 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.423 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.423 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.423 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.424 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ObjectMapping.5ggcg7w9e7.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fsnac4k4sd-{0}-5ggcg7w9e7-5ggcg7w9e7.gz' -2026-01-28 14:10:58.424 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.424 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectMapping.5ggcg7w9e7.pdb - 200 17133 application/octet-stream 2.2843ms -2026-01-28 14:10:58.431 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.OpenIddict.Domain.Shared.z584yb9x48.pdb - null null -2026-01-28 14:10:58.431 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.431 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.431 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.431 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.432 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.432 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.432 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.432 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.432 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.432 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.432 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.432 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.432 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.432 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.432 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.433 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.433 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.433 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.433 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.433 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.433 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.433 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.434 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.OpenIddict.Domain.Shared.z584yb9x48.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ofhohlcsdd-{0}-z584yb9x48-z584yb9x48.gz' -2026-01-28 14:10:58.434 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.434 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.OpenIddict.Domain.Shared.z584yb9x48.pdb - 200 17397 application/octet-stream 2.9852ms -2026-01-28 14:10:58.439 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Application.Contracts.yiquol1hlc.pdb - null null -2026-01-28 14:10:58.440 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.440 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.440 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.440 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.440 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.440 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.440 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.440 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.440 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.440 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.440 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.440 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.440 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.440 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.441 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.441 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.441 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.441 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.441 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.441 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.441 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.441 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.442 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Application.Contracts.yiquol1hlc.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0j5tpaf1fb-{0}-yiquol1hlc-yiquol1hlc.gz' -2026-01-28 14:10:58.442 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.442 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Application.Contracts.yiquol1hlc.pdb - 200 18373 application/octet-stream 2.7399ms -2026-01-28 14:10:58.449 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Domain.Shared.vduqctl6j9.pdb - null null -2026-01-28 14:10:58.449 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.449 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.449 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.449 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.449 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.449 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.449 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.449 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.449 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.449 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.449 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.449 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.449 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.449 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.450 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.450 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.450 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.450 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.450 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.450 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.450 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.450 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.451 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Domain.Shared.vduqctl6j9.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c9ti4wxngh-{0}-vduqctl6j9-vduqctl6j9.gz' -2026-01-28 14:10:58.451 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.451 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Domain.Shared.vduqctl6j9.pdb - 200 16501 application/octet-stream 2.1369ms -2026-01-28 14:10:58.456 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.HttpApi.Client.3dsrqtlur0.pdb - null null -2026-01-28 14:10:58.457 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.457 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.457 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.457 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.457 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.457 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.457 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.457 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.457 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.457 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.457 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.457 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.457 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.457 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.458 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.458 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.458 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.458 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.458 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.458 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.458 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.458 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.459 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.HttpApi.Client.3dsrqtlur0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7d7e24takc-{0}-3dsrqtlur0-3dsrqtlur0.gz' -2026-01-28 14:10:58.459 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.459 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.HttpApi.Client.3dsrqtlur0.pdb - 200 18361 application/octet-stream 2.7495ms -2026-01-28 14:10:58.465 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.RemoteServices.f0xptgiufw.pdb - null null -2026-01-28 14:10:58.466 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.466 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.466 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.466 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.466 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.466 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.466 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.466 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.466 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.466 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.466 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.466 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.466 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.467 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.467 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.467 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.467 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.467 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.467 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.467 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.467 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.467 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.468 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.RemoteServices.f0xptgiufw.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uib6a0l2w6-{0}-f0xptgiufw-f0xptgiufw.gz' -2026-01-28 14:10:58.468 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.468 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.RemoteServices.f0xptgiufw.pdb - 200 16053 application/octet-stream 2.6616ms -2026-01-28 14:10:58.473 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Security.zhp0sm48kb.pdb - null null -2026-01-28 14:10:58.474 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.474 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.474 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.474 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.474 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.474 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.474 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.474 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.474 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.474 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.474 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.474 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.474 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.474 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.475 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.475 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.475 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.475 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.475 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.475 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.475 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.475 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.476 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Security.zhp0sm48kb.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sx6n9iy4yj-{0}-zhp0sm48kb-zhp0sm48kb.gz' -2026-01-28 14:10:58.476 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.476 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Security.zhp0sm48kb.pdb - 200 29941 application/octet-stream 2.9091ms -2026-01-28 14:10:58.481 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Serialization.iselyci50i.pdb - null null -2026-01-28 14:10:58.482 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.482 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.482 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.482 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.482 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.482 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.482 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.482 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.482 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.482 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.482 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.482 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.482 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.482 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.483 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.483 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.483 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.483 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.483 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.483 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.483 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.483 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.484 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Serialization.iselyci50i.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ohz7m9cvuj-{0}-iselyci50i-iselyci50i.gz' -2026-01-28 14:10:58.484 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.484 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Serialization.iselyci50i.pdb - 200 13901 application/octet-stream 2.495ms -2026-01-28 14:10:58.489 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Application.Contracts.oa8ze5tkwx.pdb - null null -2026-01-28 14:10:58.489 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.489 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.490 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.490 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.490 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.490 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.490 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.490 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.490 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.490 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.490 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.490 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.490 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.490 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.490 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.490 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.490 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.490 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.490 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.490 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.490 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.490 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.491 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Application.Contracts.oa8ze5tkwx.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n5hx9tj0h8-{0}-oa8ze5tkwx-oa8ze5tkwx.gz' -2026-01-28 14:10:58.491 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.491 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Application.Contracts.oa8ze5tkwx.pdb - 200 17249 application/octet-stream 2.4305ms -2026-01-28 14:10:58.498 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Domain.Shared.rb0zy7dgue.pdb - null null -2026-01-28 14:10:58.499 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.499 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.499 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.499 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.499 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.499 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.499 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.499 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.499 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.499 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.499 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.499 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.499 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.499 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.499 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.499 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.500 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.500 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.500 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.500 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.500 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.500 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.500 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Domain.Shared.rb0zy7dgue.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gpxmodrted-{0}-rb0zy7dgue-rb0zy7dgue.gz' -2026-01-28 14:10:58.501 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.501 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Domain.Shared.rb0zy7dgue.pdb - 200 15881 application/octet-stream 2.4657ms -2026-01-28 14:10:58.550 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.HttpApi.Client.219qgzx23p.pdb - null null -2026-01-28 14:10:58.551 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.551 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.551 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.551 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.551 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.552 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.552 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.552 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.552 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.552 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.552 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.552 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.552 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.552 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.552 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.553 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.HttpApi.Client.219qgzx23p.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vwkga7y8v6-{0}-219qgzx23p-219qgzx23p.gz' -2026-01-28 14:10:58.553 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.553 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.HttpApi.Client.219qgzx23p.pdb - 200 17273 application/octet-stream 3.0518ms -2026-01-28 14:10:58.561 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Settings.zg210hgmt5.pdb - null null -2026-01-28 14:10:58.561 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.561 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.562 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.562 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.563 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.563 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.563 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.563 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.563 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.563 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.563 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.563 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.564 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Settings.zg210hgmt5.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\69ib14dhz4-{0}-zg210hgmt5-zg210hgmt5.gz' -2026-01-28 14:10:58.564 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.564 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Settings.zg210hgmt5.pdb - 200 24709 application/octet-stream 3.3217ms -2026-01-28 14:10:58.568 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Application.Contracts.2kqwaqfq07.pdb - null null -2026-01-28 14:10:58.569 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.569 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.569 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.569 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.569 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.569 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.569 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.569 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.569 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.569 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.569 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.569 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.569 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.569 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.569 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.570 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.570 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.570 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.570 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.570 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.570 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.570 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.570 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Application.Contracts.2kqwaqfq07.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\usk06ilw8g-{0}-2kqwaqfq07-2kqwaqfq07.gz' -2026-01-28 14:10:58.570 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.570 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Application.Contracts.2kqwaqfq07.pdb - 200 16305 application/octet-stream 2.2336ms -2026-01-28 14:10:58.576 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Domain.Shared.8e6fpjlw3z.pdb - null null -2026-01-28 14:10:58.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.577 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.577 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.577 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.577 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.577 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.577 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.578 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.578 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.578 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.578 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.578 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.578 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.578 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.578 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.579 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Domain.Shared.8e6fpjlw3z.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\byh2ge6bdr-{0}-8e6fpjlw3z-8e6fpjlw3z.gz' -2026-01-28 14:10:58.579 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.579 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Domain.Shared.8e6fpjlw3z.pdb - 200 15609 application/octet-stream 2.5464ms -2026-01-28 14:10:58.583 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.HttpApi.Client.0ep6vejlyv.pdb - null null -2026-01-28 14:10:58.584 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.584 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.584 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.584 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.584 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.584 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.584 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.584 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.584 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.584 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.584 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.584 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.584 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.584 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.585 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.585 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.585 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.585 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.585 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.585 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.585 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.585 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.586 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.HttpApi.Client.0ep6vejlyv.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b6ncobn1go-{0}-0ep6vejlyv-0ep6vejlyv.gz' -2026-01-28 14:10:58.586 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.586 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.HttpApi.Client.0ep6vejlyv.pdb - 200 17253 application/octet-stream 2.1896ms -2026-01-28 14:10:58.592 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Threading.ltl7sj60qd.pdb - null null -2026-01-28 14:10:58.593 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.593 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.593 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.593 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.593 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.593 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.593 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.593 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.593 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.593 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.593 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.593 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.593 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.593 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.594 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.594 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.594 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.594 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.594 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.594 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.594 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.594 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.595 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Threading.ltl7sj60qd.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\m4kji2jf2d-{0}-ltl7sj60qd-ltl7sj60qd.gz' -2026-01-28 14:10:58.595 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.595 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Threading.ltl7sj60qd.pdb - 200 22745 application/octet-stream 3.3348ms -2026-01-28 14:10:58.601 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Timing.4ite7giifl.pdb - null null -2026-01-28 14:10:58.601 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.601 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.602 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.602 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.602 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.602 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.602 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.602 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.602 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.602 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.603 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.603 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.604 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Timing.4ite7giifl.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ku2s5mtpx-{0}-4ite7giifl-4ite7giifl.gz' -2026-01-28 14:10:58.604 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.604 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Timing.4ite7giifl.pdb - 200 17233 application/octet-stream 2.9907ms -2026-01-28 14:10:58.611 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.hbvsia4uct.pdb - null null -2026-01-28 14:10:58.611 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.612 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.612 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.612 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.612 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.612 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.612 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.612 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.612 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.612 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.612 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.612 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.612 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.612 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.613 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.613 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.613 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.613 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.613 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.613 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.613 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.613 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.614 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.UI.hbvsia4uct.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ojvava7kjz-{0}-hbvsia4uct-hbvsia4uct.gz' -2026-01-28 14:10:58.614 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.614 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.hbvsia4uct.pdb - 200 15269 application/octet-stream 3.0547ms -2026-01-28 14:10:58.618 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.Navigation.xd013kg4jh.pdb - null null -2026-01-28 14:10:58.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.619 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.619 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.619 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.619 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.619 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.619 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.620 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.620 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.620 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.620 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.620 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.620 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.620 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.620 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.621 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.UI.Navigation.xd013kg4jh.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\opi85np659-{0}-xd013kg4jh-xd013kg4jh.gz' -2026-01-28 14:10:58.621 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.621 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.Navigation.xd013kg4jh.pdb - 200 25665 application/octet-stream 2.7162ms -2026-01-28 14:10:58.632 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Uow.re76cfcetz.pdb - null null -2026-01-28 14:10:58.632 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.632 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.633 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.633 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.633 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.633 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.633 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.633 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.633 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.633 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.633 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.633 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.633 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.633 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.633 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.633 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.633 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.633 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.633 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.633 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.633 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.634 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.634 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Uow.re76cfcetz.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\37xxpsk7fy-{0}-re76cfcetz-re76cfcetz.gz' -2026-01-28 14:10:58.634 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.635 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Uow.re76cfcetz.pdb - 200 26921 application/octet-stream 2.722ms -2026-01-28 14:10:58.650 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Abstractions.8nynefv6wf.pdb - null null -2026-01-28 14:10:58.650 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.650 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.650 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.650 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.651 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.651 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.651 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.651 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.651 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.651 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.651 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.651 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.651 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.651 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.651 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.651 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.651 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.651 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.651 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.651 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.651 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.652 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.653 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Users.Abstractions.8nynefv6wf.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\02tit97twy-{0}-8nynefv6wf-8nynefv6wf.gz' -2026-01-28 14:10:58.653 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.653 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Abstractions.8nynefv6wf.pdb - 200 16949 application/octet-stream 3.2408ms -2026-01-28 14:10:58.664 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Domain.Shared.l4ascx0wfo.pdb - null null -2026-01-28 14:10:58.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.664 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.664 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.664 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.664 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.665 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.665 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.665 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.665 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.665 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.665 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.665 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.665 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.665 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.665 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.665 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.665 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.665 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.665 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.665 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.665 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.665 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.666 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Users.Domain.Shared.l4ascx0wfo.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\i5q2ei5dis-{0}-l4ascx0wfo-l4ascx0wfo.gz' -2026-01-28 14:10:58.666 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.666 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Domain.Shared.l4ascx0wfo.pdb - 200 13285 application/octet-stream 2.3848ms -2026-01-28 14:10:58.672 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.ksfguea92v.pdb - null null -2026-01-28 14:10:58.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.673 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.673 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.673 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.673 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.673 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.673 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.673 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.673 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.673 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.673 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.673 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.674 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.674 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.674 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.675 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Validation.ksfguea92v.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wypl5pd007-{0}-ksfguea92v-ksfguea92v.gz' -2026-01-28 14:10:58.675 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.675 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.ksfguea92v.pdb - 200 24513 application/octet-stream 2.944ms -2026-01-28 14:10:58.680 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.Abstractions.zjvjxeb6lj.pdb - null null -2026-01-28 14:10:58.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.681 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.681 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.681 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.681 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.681 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.681 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.682 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.682 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.682 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.682 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.682 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.682 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.682 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.682 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.683 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Validation.Abstractions.zjvjxeb6lj.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mb6vj9j06o-{0}-zjvjxeb6lj-zjvjxeb6lj.gz' -2026-01-28 14:10:58.683 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.683 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.Abstractions.zjvjxeb6lj.pdb - 200 14137 application/octet-stream 2.3566ms -2026-01-28 14:10:58.688 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.VirtualFileSystem.kcqfs0t7tk.pdb - null null -2026-01-28 14:10:58.688 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.688 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.688 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.688 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.688 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.689 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.689 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.689 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.689 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.689 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.689 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.689 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.689 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.689 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.689 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.689 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.689 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.689 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.689 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.689 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.689 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.689 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.690 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.VirtualFileSystem.kcqfs0t7tk.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9vnkhoiruq-{0}-kcqfs0t7tk-kcqfs0t7tk.gz' -2026-01-28 14:10:58.690 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.690 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.VirtualFileSystem.kcqfs0t7tk.pdb - 200 21449 application/octet-stream 2.6389ms -2026-01-28 14:10:58.697 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.2ctxo9q0pu.pdb - null null -2026-01-28 14:10:58.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.697 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.697 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.697 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.697 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.698 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.698 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.698 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.698 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.698 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.698 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.698 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.698 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.698 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.698 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.698 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.698 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.698 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.698 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.698 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.698 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.698 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.699 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.2ctxo9q0pu.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\21kkcfw31s-{0}-2ctxo9q0pu-2ctxo9q0pu.gz' -2026-01-28 14:10:58.699 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.699 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.2ctxo9q0pu.pdb - 200 32145 application/octet-stream 2.3447ms -2026-01-28 14:10:58.705 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Autofac.le1wnuzdja.wasm - null null -2026-01-28 14:10:58.706 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.706 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.706 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.706 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.706 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.707 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.707 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.707 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.707 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.707 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.707 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.707 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.707 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.707 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.707 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.707 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.708 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.708 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.708 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.708 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.708 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.708 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.711 +03:00 [INF] Sending file. Request path: '_framework/Autofac.le1wnuzdja.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\le2bmj2hd0-{0}-le1wnuzdja-le1wnuzdja.gz' -2026-01-28 14:10:58.711 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.712 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Autofac.le1wnuzdja.wasm - 200 375661 application/wasm 6.7267ms -2026-01-28 14:10:58.740 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Autofac.Extensions.DependencyInjection.slmisa3m0h.wasm - null null -2026-01-28 14:10:58.741 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.741 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.741 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.741 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.741 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.741 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.741 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.741 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.741 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.741 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.741 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.741 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.741 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.741 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.742 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.742 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.742 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.742 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.742 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.742 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.742 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.742 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.743 +03:00 [INF] Sending file. Request path: '_framework/Autofac.Extensions.DependencyInjection.slmisa3m0h.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4h1lb8bivh-{0}-slmisa3m0h-slmisa3m0h.gz' -2026-01-28 14:10:58.743 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.743 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Autofac.Extensions.DependencyInjection.slmisa3m0h.wasm - 200 28470 application/wasm 2.9582ms -2026-01-28 14:10:58.748 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Autofac.Extras.DynamicProxy.tlrq82knod.wasm - null null -2026-01-28 14:10:58.748 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.748 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.749 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.749 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.749 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.749 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.749 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.749 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.749 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.749 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.749 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.749 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.749 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.749 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.749 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.749 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.749 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.749 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.749 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.749 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.749 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.749 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.750 +03:00 [INF] Sending file. Request path: '_framework/Autofac.Extras.DynamicProxy.tlrq82knod.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5nm56h6008-{0}-tlrq82knod-tlrq82knod.gz' -2026-01-28 14:10:58.750 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.750 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Autofac.Extras.DynamicProxy.tlrq82knod.wasm - 200 20278 application/wasm 2.3767ms -2026-01-28 14:10:58.755 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Castle.Core.dr7ya1fwgr.wasm - null null -2026-01-28 14:10:58.756 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.756 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.756 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.756 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.756 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.757 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.757 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.757 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.757 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.757 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.757 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.757 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.757 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.757 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.757 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.760 +03:00 [INF] Sending file. Request path: '_framework/Castle.Core.dr7ya1fwgr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mehy9ugib8-{0}-dr7ya1fwgr-dr7ya1fwgr.gz' -2026-01-28 14:10:58.760 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.760 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Castle.Core.dr7ya1fwgr.wasm - 200 388461 application/wasm 4.9457ms -2026-01-28 14:10:58.766 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Castle.Core.AsyncInterceptor.phbi0db4mk.wasm - null null -2026-01-28 14:10:58.767 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.767 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.767 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.767 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.767 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.767 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.768 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.768 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.768 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.768 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.768 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.768 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.768 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.768 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.768 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.768 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.768 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.768 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.768 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.768 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.768 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.768 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.769 +03:00 [INF] Sending file. Request path: '_framework/Castle.Core.AsyncInterceptor.phbi0db4mk.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dnds4j2x25-{0}-phbi0db4mk-phbi0db4mk.gz' -2026-01-28 14:10:58.769 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.769 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Castle.Core.AsyncInterceptor.phbi0db4mk.wasm - 200 19254 application/wasm 2.8427ms -2026-01-28 14:10:58.775 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Duende.IdentityModel.w8uizqq8rq.wasm - null null -2026-01-28 14:10:58.775 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.775 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.776 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.776 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.776 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.776 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.776 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.776 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.776 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.776 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.776 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.776 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.776 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.776 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.777 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.779 +03:00 [INF] Sending file. Request path: '_framework/Duende.IdentityModel.w8uizqq8rq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2h3cgpc6ac-{0}-w8uizqq8rq-w8uizqq8rq.gz' -2026-01-28 14:10:58.779 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.779 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Duende.IdentityModel.w8uizqq8rq.wasm - 200 202580 application/wasm 4.0782ms -2026-01-28 14:10:58.783 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/JetBrains.Annotations.30nyqsrum5.wasm - null null -2026-01-28 14:10:58.784 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.784 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.784 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.784 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.784 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.784 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.784 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.784 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.784 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.784 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.784 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.784 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.784 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.784 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.785 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.785 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.785 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.785 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.785 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.785 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.785 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.785 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.786 +03:00 [INF] Sending file. Request path: '_framework/JetBrains.Annotations.30nyqsrum5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6sdzj3kgop-{0}-30nyqsrum5-30nyqsrum5.gz' -2026-01-28 14:10:58.786 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.786 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/JetBrains.Annotations.30nyqsrum5.wasm - 200 122181 application/wasm 2.8194ms -2026-01-28 14:10:58.792 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Authorization.f7yamg8acn.wasm - null null -2026-01-28 14:10:58.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.793 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.793 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.793 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.793 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.793 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.793 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.793 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.793 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.793 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.793 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.793 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.793 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.793 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.794 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.795 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Authorization.f7yamg8acn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\y8t8qzdrbk-{0}-f7yamg8acn-f7yamg8acn.gz' -2026-01-28 14:10:58.795 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.795 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Authorization.f7yamg8acn.wasm - 200 45371 application/wasm 2.9682ms -2026-01-28 14:10:58.800 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.i180xx2qq9.wasm - null null -2026-01-28 14:10:58.800 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.801 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.801 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.801 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.801 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.801 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.801 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.801 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.801 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.801 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.801 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.801 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.801 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.801 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.802 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.804 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.i180xx2qq9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\00mrq6s2ss-{0}-i180xx2qq9-i180xx2qq9.gz' -2026-01-28 14:10:58.804 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.804 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.i180xx2qq9.wasm - 200 388973 application/wasm 4.1541ms -2026-01-28 14:10:58.812 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Authorization.8nosel0t6a.wasm - null null -2026-01-28 14:10:58.812 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.813 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.813 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.813 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.813 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.813 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.813 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.814 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.814 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.814 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.814 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.814 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.814 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.814 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.814 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.815 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.Authorization.8nosel0t6a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b9vfzkzuzt-{0}-8nosel0t6a-8nosel0t6a.gz' -2026-01-28 14:10:58.815 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.815 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Authorization.8nosel0t6a.wasm - 200 23862 application/wasm 3.2231ms -2026-01-28 14:10:58.821 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Forms.au92kshad9.wasm - null null -2026-01-28 14:10:58.822 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.823 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.823 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.823 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.823 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.823 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.823 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.823 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.823 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.823 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.823 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.823 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.823 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.823 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.824 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.824 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.824 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.824 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.824 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.824 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.824 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.824 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.825 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.Forms.au92kshad9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0l9h2m1r4h-{0}-au92kshad9-au92kshad9.gz' -2026-01-28 14:10:58.825 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.825 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Forms.au92kshad9.wasm - 200 37691 application/wasm 3.6946ms -2026-01-28 14:10:58.831 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Web.gl9seasc22.wasm - null null -2026-01-28 14:10:58.831 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.831 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.832 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.832 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.832 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.832 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.832 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.832 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.832 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.832 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.832 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.832 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.832 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.832 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.832 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.832 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.832 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.832 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.832 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.832 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.832 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.832 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.834 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.Web.gl9seasc22.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fqoi4if8m2-{0}-gl9seasc22-gl9seasc22.gz' -2026-01-28 14:10:58.834 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.834 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Web.gl9seasc22.wasm - 200 179023 application/wasm 3.1681ms -2026-01-28 14:10:58.839 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.9qaxkpf6y7.wasm - null null -2026-01-28 14:10:58.840 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.840 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.840 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.840 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.840 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.840 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.840 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.840 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.840 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.840 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.840 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.840 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.840 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.840 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.841 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.841 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.841 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.841 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.841 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.841 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.841 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.841 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.843 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.WebAssembly.9qaxkpf6y7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4vwfdqnp17-{0}-9qaxkpf6y7-9qaxkpf6y7.gz' -2026-01-28 14:10:58.843 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.843 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.9qaxkpf6y7.wasm - 200 155978 application/wasm 3.7597ms -2026-01-28 14:10:58.848 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.q8d1vzef3m.wasm - null null -2026-01-28 14:10:58.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.849 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.849 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.849 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.849 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.849 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.849 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.849 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.849 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.849 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.849 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.850 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.q8d1vzef3m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\19o2at4dip-{0}-q8d1vzef3m-q8d1vzef3m.gz' -2026-01-28 14:10:58.850 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.851 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.q8d1vzef3m.wasm - 200 96064 application/wasm 2.632ms -2026-01-28 14:10:58.855 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Metadata.begmnasal1.wasm - null null -2026-01-28 14:10:58.855 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.855 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.856 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.856 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.856 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.856 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.856 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.856 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.856 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.856 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.856 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.856 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.856 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.856 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.856 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.857 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Metadata.begmnasal1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\94aawuaijs-{0}-begmnasal1-begmnasal1.gz' -2026-01-28 14:10:58.857 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.857 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Metadata.begmnasal1.wasm - 200 5942 application/wasm 2.5041ms -2026-01-28 14:10:58.863 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.WebUtilities.6cgd80d0to.wasm - null null -2026-01-28 14:10:58.864 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.864 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.864 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.864 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.864 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.864 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.864 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.864 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.864 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.864 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.864 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.864 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.864 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.864 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.864 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.864 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.864 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.864 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.864 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.864 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.864 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.865 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.866 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.WebUtilities.6cgd80d0to.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sk2xioyf5m-{0}-6cgd80d0to-6cgd80d0to.gz' -2026-01-28 14:10:58.866 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.866 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.WebUtilities.6cgd80d0to.wasm - 200 97088 application/wasm 3.1624ms -2026-01-28 14:10:58.870 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Bcl.AsyncInterfaces.a6wsrpgfw5.wasm - null null -2026-01-28 14:10:58.871 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.871 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.871 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.871 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.871 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.871 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.871 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.871 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.871 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.872 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.872 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.872 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.872 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.872 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.872 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.872 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.872 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.872 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.872 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.872 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.872 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.872 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.873 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Bcl.AsyncInterfaces.a6wsrpgfw5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\efezora84v-{0}-a6wsrpgfw5-a6wsrpgfw5.gz' -2026-01-28 14:10:58.873 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.873 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Bcl.AsyncInterfaces.a6wsrpgfw5.wasm - 200 9526 application/wasm 2.2928ms -2026-01-28 14:10:58.877 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.u1l3a5juxx.wasm - null null -2026-01-28 14:10:58.878 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.878 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.878 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.878 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.878 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.878 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.879 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.879 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.879 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.879 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.879 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.879 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.879 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.879 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.879 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.879 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.879 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.879 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.879 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.879 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.879 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.879 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.880 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.u1l3a5juxx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wloi09r5kq-{0}-u1l3a5juxx-u1l3a5juxx.gz' -2026-01-28 14:10:58.880 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.880 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.u1l3a5juxx.wasm - 200 56123 application/wasm 2.4693ms -2026-01-28 14:10:58.884 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Abstractions.vvlexwbaez.wasm - null null -2026-01-28 14:10:58.885 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.885 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.885 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.885 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.885 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.885 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.885 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.885 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.885 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.885 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.885 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.885 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.885 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.885 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.886 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.886 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.886 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.886 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.886 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.886 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.886 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.886 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.887 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Caching.Abstractions.vvlexwbaez.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b1crvod4be-{0}-vvlexwbaez-vvlexwbaez.gz' -2026-01-28 14:10:58.887 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.887 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Abstractions.vvlexwbaez.wasm - 200 27446 application/wasm 2.4125ms -2026-01-28 14:10:58.891 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Hybrid.u0s8zqcpy7.wasm - null null -2026-01-28 14:10:58.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.892 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.892 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.892 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.892 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.892 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.892 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.893 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.893 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.893 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.893 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.893 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.893 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.893 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.893 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.895 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Caching.Hybrid.u0s8zqcpy7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\t7frkttiob-{0}-u0s8zqcpy7-u0s8zqcpy7.gz' -2026-01-28 14:10:58.895 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.895 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Hybrid.u0s8zqcpy7.wasm - 200 85824 application/wasm 3.8911ms -2026-01-28 14:10:58.900 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Memory.6z3ajjz4f1.wasm - null null -2026-01-28 14:10:58.901 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.901 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.901 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.901 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.901 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.901 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.901 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.901 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.901 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.901 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.902 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.902 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.902 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.902 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.902 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.902 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.902 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.902 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.903 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Caching.Memory.6z3ajjz4f1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6gi3ua4ioz-{0}-6z3ajjz4f1-6z3ajjz4f1.gz' -2026-01-28 14:10:58.903 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.903 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Memory.6z3ajjz4f1.wasm - 200 37691 application/wasm 2.6757ms -2026-01-28 14:10:58.908 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.x8wh4xd62i.wasm - null null -2026-01-28 14:10:58.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.910 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.910 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.911 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.911 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.911 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.911 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.911 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.911 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.911 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.911 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.912 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.x8wh4xd62i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\h1kacpcskm-{0}-x8wh4xd62i-x8wh4xd62i.gz' -2026-01-28 14:10:58.912 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.912 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.x8wh4xd62i.wasm - 200 34619 application/wasm 3.8546ms -2026-01-28 14:10:58.917 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Abstractions.sgloa63pwd.wasm - null null -2026-01-28 14:10:58.918 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.918 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.918 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.918 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.918 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.918 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.918 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.918 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.918 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.918 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.918 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.918 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.918 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.918 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.919 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.919 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.919 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.919 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.919 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.919 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.919 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.919 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.920 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.Abstractions.sgloa63pwd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\zxi0ykhieh-{0}-sgloa63pwd-sgloa63pwd.gz' -2026-01-28 14:10:58.920 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.920 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Abstractions.sgloa63pwd.wasm - 200 18230 application/wasm 2.8384ms -2026-01-28 14:10:58.924 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Binder.3jwzw3qxt4.wasm - null null -2026-01-28 14:10:58.925 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.925 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.925 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.925 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.925 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.925 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.925 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.925 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.925 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.925 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.925 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.926 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.926 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.926 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.926 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.926 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.926 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.926 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.926 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.926 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.926 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.926 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.927 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.Binder.3jwzw3qxt4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ko014cnbr7-{0}-3jwzw3qxt4-3jwzw3qxt4.gz' -2026-01-28 14:10:58.927 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.927 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Binder.3jwzw3qxt4.wasm - 200 33083 application/wasm 2.8735ms -2026-01-28 14:10:58.931 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.CommandLine.z1qo7xx5ru.wasm - null null -2026-01-28 14:10:58.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.932 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.932 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.932 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.932 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.932 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.932 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.932 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.932 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.932 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.932 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.932 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.932 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.932 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.932 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.932 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.932 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.932 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.932 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.932 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.932 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.932 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.933 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.CommandLine.z1qo7xx5ru.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0qcnzm5lmb-{0}-z1qo7xx5ru-z1qo7xx5ru.gz' -2026-01-28 14:10:58.933 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.933 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.CommandLine.z1qo7xx5ru.wasm - 200 15158 application/wasm 2.3726ms -2026-01-28 14:10:58.937 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.EnvironmentVariables.3gcxsk3zbu.wasm - null null -2026-01-28 14:10:58.938 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.938 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.938 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.938 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.938 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.938 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.938 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.938 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.938 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.938 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.938 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.938 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.938 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.938 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.938 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.938 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.938 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.938 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.938 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.938 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.938 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.939 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.939 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.EnvironmentVariables.3gcxsk3zbu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\urvjz3sczp-{0}-3gcxsk3zbu-3gcxsk3zbu.gz' -2026-01-28 14:10:58.939 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.939 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.EnvironmentVariables.3gcxsk3zbu.wasm - 200 11574 application/wasm 2.1985ms -2026-01-28 14:10:58.943 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.FileExtensions.phra2kqghi.wasm - null null -2026-01-28 14:10:58.944 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.944 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.944 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.944 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.944 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.944 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.944 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.944 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.944 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.944 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.944 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.944 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.944 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.944 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.945 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.945 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.945 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.945 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.945 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.945 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.945 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.945 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.946 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.FileExtensions.phra2kqghi.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6yhtz7i0uq-{0}-phra2kqghi-phra2kqghi.gz' -2026-01-28 14:10:58.946 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.946 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.FileExtensions.phra2kqghi.wasm - 200 18230 application/wasm 2.4292ms -2026-01-28 14:10:58.950 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Json.9udmvturlf.wasm - null null -2026-01-28 14:10:58.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.950 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.950 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.950 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.950 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.951 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.951 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.951 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.951 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.951 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.951 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.951 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.951 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.951 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.951 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.951 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.951 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.951 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.951 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.951 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.951 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.951 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.952 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.Json.9udmvturlf.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jn8nx9ltxb-{0}-9udmvturlf-9udmvturlf.gz' -2026-01-28 14:10:58.952 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.952 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Json.9udmvturlf.wasm - 200 17718 application/wasm 2.2317ms -2026-01-28 14:10:58.956 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.UserSecrets.86yue58ssu.wasm - null null -2026-01-28 14:10:58.956 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.956 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.957 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.957 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.957 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.957 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.957 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.957 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.957 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.957 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.957 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.957 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.957 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.957 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.957 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.958 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.UserSecrets.86yue58ssu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wlq0vssna7-{0}-86yue58ssu-86yue58ssu.gz' -2026-01-28 14:10:58.958 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.958 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.UserSecrets.86yue58ssu.wasm - 200 16182 application/wasm 2.2015ms -2026-01-28 14:10:58.963 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.92ulj88j6e.wasm - null null -2026-01-28 14:10:58.964 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.964 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.964 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.964 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.964 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.965 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.965 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.965 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.965 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.965 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.965 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.965 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.965 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.965 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.965 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.966 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.DependencyInjection.92ulj88j6e.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ap6jjl5cdc-{0}-92ulj88j6e-92ulj88j6e.gz' -2026-01-28 14:10:58.966 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.966 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.92ulj88j6e.wasm - 200 85312 application/wasm 3.0254ms -2026-01-28 14:10:58.971 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.qzg75988t9.wasm - null null -2026-01-28 14:10:58.972 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.972 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.972 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.972 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.972 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.973 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.973 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.973 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.973 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.973 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.973 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.973 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.973 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.973 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.973 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.973 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.973 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.973 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.973 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.973 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.973 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.973 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.974 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.DependencyInjection.Abstractions.qzg75988t9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2yinc5vl42-{0}-qzg75988t9-qzg75988t9.gz' -2026-01-28 14:10:58.974 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.974 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.qzg75988t9.wasm - 200 55611 application/wasm 2.9657ms -2026-01-28 14:10:58.981 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.tgzcelqpkb.wasm - null null -2026-01-28 14:10:58.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.982 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.982 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.982 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.982 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.982 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.982 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.982 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.982 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.982 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.982 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.982 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.982 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.982 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.982 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.982 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.982 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.982 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.982 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.982 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.982 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.982 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.983 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Diagnostics.tgzcelqpkb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\q77258df46-{0}-tgzcelqpkb-tgzcelqpkb.gz' -2026-01-28 14:10:58.983 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.983 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.tgzcelqpkb.wasm - 200 25910 application/wasm 2.5432ms -2026-01-28 14:10:58.988 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.Abstractions.hq61ozpvxa.wasm - null null -2026-01-28 14:10:58.989 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.989 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.989 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.989 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.989 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.990 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.990 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.990 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.990 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.990 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.990 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.990 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.990 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.990 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.990 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.992 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Diagnostics.Abstractions.hq61ozpvxa.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\hlwf1zkx1t-{0}-hq61ozpvxa-hq61ozpvxa.gz' -2026-01-28 14:10:58.992 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:58.992 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.Abstractions.hq61ozpvxa.wasm - 200 20790 application/wasm 3.5263ms -2026-01-28 14:10:58.997 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Abstractions.wbhloeatw3.wasm - null null -2026-01-28 14:10:58.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.998 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:58.998 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:58.998 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:58.998 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.998 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:58.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:58.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:58.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:58.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:58.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:58.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:58.998 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:58.999 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:58.999 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:58.999 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:58.999 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:58.999 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:58.999 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:58.999 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:58.999 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.000 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Abstractions.wbhloeatw3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\hwi4k0i86u-{0}-wbhloeatw3-wbhloeatw3.gz' -2026-01-28 14:10:59.000 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.000 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Abstractions.wbhloeatw3.wasm - 200 13110 application/wasm 2.5727ms -2026-01-28 14:10:59.004 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Composite.z8bwpsdnc0.wasm - null null -2026-01-28 14:10:59.005 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.006 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.006 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.006 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.006 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.006 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.006 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.006 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.006 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.006 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.006 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.006 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.006 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.006 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.006 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.006 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.006 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.006 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.007 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.007 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.007 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.007 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.008 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Composite.z8bwpsdnc0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9or5ity2wj-{0}-z8bwpsdnc0-z8bwpsdnc0.gz' -2026-01-28 14:10:59.008 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.008 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Composite.z8bwpsdnc0.wasm - 200 8502 application/wasm 3.5968ms -2026-01-28 14:10:59.015 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Embedded.ptqvg1m34t.wasm - null null -2026-01-28 14:10:59.016 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.016 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.016 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.016 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.016 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.016 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.016 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.042 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.042 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.042 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.042 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.042 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.042 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.042 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.043 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.043 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.043 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.043 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.043 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.043 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.043 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.043 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.044 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Embedded.ptqvg1m34t.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gud3t43je0-{0}-ptqvg1m34t-ptqvg1m34t.gz' -2026-01-28 14:10:59.044 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.044 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Embedded.ptqvg1m34t.wasm - 200 23350 application/wasm 29.356ms -2026-01-28 14:10:59.049 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Physical.y5k56zvg10.wasm - null null -2026-01-28 14:10:59.050 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.050 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.050 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.050 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.050 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.051 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.051 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.051 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.051 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.051 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.051 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.051 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.051 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.051 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.051 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.051 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.051 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.051 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.051 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.051 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.051 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.052 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.052 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Physical.y5k56zvg10.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\02df65jx0j-{0}-y5k56zvg10-y5k56zvg10.gz' -2026-01-28 14:10:59.052 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.053 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Physical.y5k56zvg10.wasm - 200 35131 application/wasm 3.0981ms -2026-01-28 14:10:59.058 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileSystemGlobbing.4cqycihgg0.wasm - null null -2026-01-28 14:10:59.058 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.059 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.059 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.059 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.059 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.059 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.059 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.059 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.059 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.059 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.060 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.061 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileSystemGlobbing.4cqycihgg0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4328gy858z-{0}-4cqycihgg0-4cqycihgg0.gz' -2026-01-28 14:10:59.061 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.061 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileSystemGlobbing.4cqycihgg0.wasm - 200 37691 application/wasm 3.5607ms -2026-01-28 14:10:59.066 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Hosting.Abstractions.5v78u2d057.wasm - null null -2026-01-28 14:10:59.067 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.067 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.068 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.068 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.068 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.068 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.068 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.068 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.068 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.068 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.068 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.068 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.068 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.068 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.069 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.069 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.069 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.069 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.069 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.069 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.069 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.069 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.070 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Hosting.Abstractions.5v78u2d057.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0bjpxbow7h-{0}-5v78u2d057-5v78u2d057.gz' -2026-01-28 14:10:59.070 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.070 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Hosting.Abstractions.5v78u2d057.wasm - 200 43835 application/wasm 3.6325ms -2026-01-28 14:10:59.076 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Http.apre2arxjd.wasm - null null -2026-01-28 14:10:59.077 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.077 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.078 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.078 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.078 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.078 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.078 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.078 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.078 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.078 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.078 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.078 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.078 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.078 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.078 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.078 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.079 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.079 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.079 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.079 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.079 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.079 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.080 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Http.apre2arxjd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ocorhjn9ks-{0}-apre2arxjd-apre2arxjd.gz' -2026-01-28 14:10:59.080 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.080 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Http.apre2arxjd.wasm - 200 82752 application/wasm 3.7371ms -2026-01-28 14:10:59.084 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.mml9tf1r1w.wasm - null null -2026-01-28 14:10:59.085 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.085 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.085 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.085 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.085 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.085 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.085 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.085 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.085 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.086 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.086 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.086 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.086 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.086 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.086 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.086 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.086 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.086 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.086 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.086 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.086 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.086 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.087 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Localization.mml9tf1r1w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uqdbs11skp-{0}-mml9tf1r1w-mml9tf1r1w.gz' -2026-01-28 14:10:59.087 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.087 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.mml9tf1r1w.wasm - 200 21302 application/wasm 2.7284ms -2026-01-28 14:10:59.093 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.Abstractions.80p7fyumuw.wasm - null null -2026-01-28 14:10:59.094 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.094 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.094 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.094 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.094 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.094 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.094 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.095 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.095 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.095 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.095 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.095 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.095 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.095 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.095 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.095 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.095 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.095 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.095 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.095 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.095 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.095 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.096 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Localization.Abstractions.80p7fyumuw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j8jaks8ba9-{0}-80p7fyumuw-80p7fyumuw.gz' -2026-01-28 14:10:59.096 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.096 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.Abstractions.80p7fyumuw.wasm - 200 9014 application/wasm 3.4217ms -2026-01-28 14:10:59.101 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.05o184w673.wasm - null null -2026-01-28 14:10:59.102 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.102 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.102 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.102 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.102 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.102 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.102 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.102 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.102 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.102 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.103 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.103 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.103 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.103 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.103 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.103 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.103 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.103 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.103 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.104 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Logging.05o184w673.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1cbwctdp50-{0}-05o184w673-05o184w673.gz' -2026-01-28 14:10:59.104 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.104 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.05o184w673.wasm - 200 41275 application/wasm 2.9503ms -2026-01-28 14:10:59.110 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.Abstractions.hwa38jh90v.wasm - null null -2026-01-28 14:10:59.111 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.111 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.111 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.111 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.111 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.112 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.112 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.112 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.112 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.112 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.112 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.112 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.112 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.112 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.112 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.112 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.112 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.112 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.112 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.112 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.112 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.112 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.113 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Logging.Abstractions.hwa38jh90v.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\zatd8kwe6z-{0}-hwa38jh90v-hwa38jh90v.gz' -2026-01-28 14:10:59.113 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.113 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.Abstractions.hwa38jh90v.wasm - 200 56635 application/wasm 3.1836ms -2026-01-28 14:10:59.117 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.zsk78mkyl2.wasm - null null -2026-01-28 14:10:59.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.118 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.118 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.118 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.118 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.119 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.119 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.119 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.119 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.119 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.119 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.119 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.119 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.119 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.119 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.119 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.119 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.119 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.119 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.119 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.119 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.120 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.121 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Options.zsk78mkyl2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nx5gv127wz-{0}-zsk78mkyl2-zsk78mkyl2.gz' -2026-01-28 14:10:59.121 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.121 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.zsk78mkyl2.wasm - 200 55099 application/wasm 3.4775ms -2026-01-28 14:10:59.126 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.ConfigurationExtensions.qltknulxmy.wasm - null null -2026-01-28 14:10:59.127 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.127 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.128 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.128 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.128 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.128 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.128 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.128 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.128 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.128 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.128 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.128 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.128 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.128 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.128 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.128 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.128 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.128 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.128 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.128 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.128 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.128 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.129 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Options.ConfigurationExtensions.qltknulxmy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\eycsz92dw7-{0}-qltknulxmy-qltknulxmy.gz' -2026-01-28 14:10:59.129 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.129 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.ConfigurationExtensions.qltknulxmy.wasm - 200 11574 application/wasm 3.0968ms -2026-01-28 14:10:59.134 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Primitives.51b5spqlwz.wasm - null null -2026-01-28 14:10:59.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.135 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.135 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.135 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.135 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.135 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.135 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.136 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.136 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.136 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.136 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.136 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.136 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.136 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.136 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.137 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Primitives.51b5spqlwz.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dtxltxy254-{0}-51b5spqlwz-51b5spqlwz.gz' -2026-01-28 14:10:59.137 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.137 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Primitives.51b5spqlwz.wasm - 200 34619 application/wasm 2.5407ms -2026-01-28 14:10:59.141 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Validation.vibclmvzbq.wasm - null null -2026-01-28 14:10:59.142 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.142 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.142 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.142 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.142 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.143 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.143 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.143 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.143 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.143 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.143 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.143 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.143 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.143 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.143 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.143 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.143 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.143 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.143 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.143 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.143 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.144 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.145 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Validation.vibclmvzbq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wxjaiwsnh4-{0}-vibclmvzbq-vibclmvzbq.gz' -2026-01-28 14:10:59.145 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.145 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Validation.vibclmvzbq.wasm - 200 33083 application/wasm 3.3723ms -2026-01-28 14:10:59.149 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Abstractions.fm59ec96sb.wasm - null null -2026-01-28 14:10:59.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.150 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.150 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.150 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.150 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.150 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.150 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.150 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.150 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.150 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.151 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.151 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.Abstractions.fm59ec96sb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pw25ps676d-{0}-fm59ec96sb-fm59ec96sb.gz' -2026-01-28 14:10:59.151 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.151 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Abstractions.fm59ec96sb.wasm - 200 9014 application/wasm 2.5533ms -2026-01-28 14:10:59.157 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.JsonWebTokens.d706uu8nnf.wasm - null null -2026-01-28 14:10:59.157 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.157 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.157 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.157 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.157 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.158 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.158 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.158 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.158 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.158 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.158 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.158 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.158 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.158 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.158 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.158 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.158 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.158 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.158 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.158 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.158 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.159 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.161 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.JsonWebTokens.d706uu8nnf.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0ly9bxx2uc-{0}-d706uu8nnf-d706uu8nnf.gz' -2026-01-28 14:10:59.161 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.161 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.JsonWebTokens.d706uu8nnf.wasm - 200 161610 application/wasm 4.4501ms -2026-01-28 14:10:59.166 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Logging.lzotatrep2.wasm - null null -2026-01-28 14:10:59.166 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.166 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.166 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.166 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.166 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.167 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.167 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.167 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.167 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.167 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.167 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.167 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.167 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.167 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.167 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.167 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.167 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.167 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.167 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.167 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.167 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.167 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.168 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.Logging.lzotatrep2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\az540fuh9f-{0}-lzotatrep2-lzotatrep2.gz' -2026-01-28 14:10:59.168 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.168 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Logging.lzotatrep2.wasm - 200 26422 application/wasm 2.2544ms -2026-01-28 14:10:59.173 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Tokens.zeqz59uvkx.wasm - null null -2026-01-28 14:10:59.174 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.174 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.174 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.174 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.174 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.174 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.174 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.174 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.174 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.174 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.174 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.174 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.174 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.174 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.175 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.175 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.175 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.175 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.175 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.175 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.175 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.175 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.178 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.Tokens.zeqz59uvkx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pe5jdgvqrx-{0}-zeqz59uvkx-zeqz59uvkx.gz' -2026-01-28 14:10:59.178 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.178 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Tokens.zeqz59uvkx.wasm - 200 374125 application/wasm 5.4869ms -2026-01-28 14:10:59.184 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.kksrzpvoig.wasm - null null -2026-01-28 14:10:59.184 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.184 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.184 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.185 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.185 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.185 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.185 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.185 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.185 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.185 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.185 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.185 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.185 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.185 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.185 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.185 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.185 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.185 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.185 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.185 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.185 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.185 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.186 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.JSInterop.kksrzpvoig.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fulott20a4-{0}-kksrzpvoig-kksrzpvoig.gz' -2026-01-28 14:10:59.186 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.186 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.kksrzpvoig.wasm - 200 64827 application/wasm 2.7182ms -2026-01-28 14:10:59.191 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.WebAssembly.9udcqny0aq.wasm - null null -2026-01-28 14:10:59.192 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.192 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.192 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.192 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.192 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.192 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.193 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.193 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.193 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.193 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.193 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.193 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.193 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.193 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.193 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.194 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.JSInterop.WebAssembly.9udcqny0aq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9m4wklcqem-{0}-9udcqny0aq-9udcqny0aq.gz' -2026-01-28 14:10:59.194 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.194 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.WebAssembly.9udcqny0aq.wasm - 200 14646 application/wasm 3.3136ms -2026-01-28 14:10:59.199 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Net.Http.Headers.dqwvlhacs5.wasm - null null -2026-01-28 14:10:59.199 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.199 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.200 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.200 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.200 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.200 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.200 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.200 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.200 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.200 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.200 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.200 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.200 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.200 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.200 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.200 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.200 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.200 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.200 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.200 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.200 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.200 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.202 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Net.Http.Headers.dqwvlhacs5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\awoyestlxb-{0}-dqwvlhacs5-dqwvlhacs5.gz' -2026-01-28 14:10:59.202 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.202 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Net.Http.Headers.dqwvlhacs5.wasm - 200 75072 application/wasm 3.0717ms -2026-01-28 14:10:59.209 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MudBlazor.0eq8xpu5ec.wasm - null null -2026-01-28 14:10:59.209 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.209 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.209 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.209 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.209 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.210 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.210 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.210 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.210 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.210 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.210 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.210 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.210 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.210 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.211 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.274 +03:00 [INF] Sending file. Request path: '_framework/MudBlazor.0eq8xpu5ec.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c8dbqtqx23-{0}-0eq8xpu5ec-0eq8xpu5ec.gz' -2026-01-28 14:10:59.274 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.274 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MudBlazor.0eq8xpu5ec.wasm - 200 9246396 application/wasm 65.8064ms -2026-01-28 14:10:59.297 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Context.y5n2fi0oo0.wasm - null null -2026-01-28 14:10:59.298 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.298 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.298 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.298 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.298 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.298 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.298 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.298 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.298 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.298 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.298 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.298 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.298 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.298 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.299 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.299 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.299 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.299 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.299 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.299 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.299 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.299 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.300 +03:00 [INF] Sending file. Request path: '_framework/Nito.AsyncEx.Context.y5n2fi0oo0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6cfa8ozy3y-{0}-y5n2fi0oo0-y5n2fi0oo0.gz' -2026-01-28 14:10:59.300 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.300 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Context.y5n2fi0oo0.wasm - 200 13622 application/wasm 2.74ms -2026-01-28 14:10:59.305 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Tasks.pmw3wnkbvb.wasm - null null -2026-01-28 14:10:59.306 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.306 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.306 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.306 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.306 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.306 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.306 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.306 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.306 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.306 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.306 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.306 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.306 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.306 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.307 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.307 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.307 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.307 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.307 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.307 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.307 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.307 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.308 +03:00 [INF] Sending file. Request path: '_framework/Nito.AsyncEx.Tasks.pmw3wnkbvb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pw3yczwgxh-{0}-pmw3wnkbvb-pmw3wnkbvb.gz' -2026-01-28 14:10:59.308 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.308 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Tasks.pmw3wnkbvb.wasm - 200 35643 application/wasm 2.9105ms -2026-01-28 14:10:59.313 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Nito.Disposables.86nxvj1yiv.wasm - null null -2026-01-28 14:10:59.314 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.314 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.314 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.314 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.314 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.314 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.314 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.314 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.314 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.314 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.314 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.314 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.314 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.314 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.314 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.314 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.314 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.314 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.314 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.314 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.314 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.314 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.315 +03:00 [INF] Sending file. Request path: '_framework/Nito.Disposables.86nxvj1yiv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4m6819m7ll-{0}-86nxvj1yiv-86nxvj1yiv.gz' -2026-01-28 14:10:59.315 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.315 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Nito.Disposables.86nxvj1yiv.wasm - 200 22326 application/wasm 2.1974ms -2026-01-28 14:10:59.319 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/NUglify.p1yxori32v.wasm - null null -2026-01-28 14:10:59.320 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.320 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.320 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.321 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.321 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.321 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.321 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.321 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.321 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.321 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.321 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.321 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.321 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.321 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.321 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.321 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.321 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.321 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.324 +03:00 [INF] Sending file. Request path: '_framework/NUglify.p1yxori32v.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2fi9048uqb-{0}-p1yxori32v-p1yxori32v.gz' -2026-01-28 14:10:59.324 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.324 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/NUglify.p1yxori32v.wasm - 200 637333 application/wasm 4.7218ms -2026-01-28 14:10:59.334 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/OpenIddict.Abstractions.xc5u4bcwuv.wasm - null null -2026-01-28 14:10:59.335 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.335 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.335 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.335 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.335 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.336 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.336 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.336 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.336 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.336 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.336 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.336 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.336 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.336 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.336 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.336 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.336 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.336 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.336 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.336 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.336 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.337 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.339 +03:00 [INF] Sending file. Request path: '_framework/OpenIddict.Abstractions.xc5u4bcwuv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\46s7kaf9kj-{0}-xc5u4bcwuv-xc5u4bcwuv.gz' -2026-01-28 14:10:59.339 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.339 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/OpenIddict.Abstractions.xc5u4bcwuv.wasm - 200 380269 application/wasm 4.8981ms -2026-01-28 14:10:59.346 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Riok.Mapperly.Abstractions.bgo5wowxjs.wasm - null null -2026-01-28 14:10:59.346 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.346 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.347 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.347 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.347 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.347 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.347 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.347 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.347 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.347 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.347 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.347 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.347 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.347 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.347 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.347 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.347 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.347 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.347 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.347 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.347 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.347 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.348 +03:00 [INF] Sending file. Request path: '_framework/Riok.Mapperly.Abstractions.bgo5wowxjs.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3d5qji182j-{0}-bgo5wowxjs-bgo5wowxjs.gz' -2026-01-28 14:10:59.348 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.348 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Riok.Mapperly.Abstractions.bgo5wowxjs.wasm - 200 33083 application/wasm 2.5937ms -2026-01-28 14:10:59.353 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.CodeDom.fbxkfrockh.wasm - null null -2026-01-28 14:10:59.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.354 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.354 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.354 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.354 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.354 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.354 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.354 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.354 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.355 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.355 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.355 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.355 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.355 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.355 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.356 +03:00 [INF] Sending file. Request path: '_framework/System.CodeDom.fbxkfrockh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j53ve7gv1w-{0}-fbxkfrockh-fbxkfrockh.gz' -2026-01-28 14:10:59.356 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.356 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.CodeDom.fbxkfrockh.wasm - 200 174415 application/wasm 2.9238ms -2026-01-28 14:10:59.361 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.EventLog.x6zrz89c6o.wasm - null null -2026-01-28 14:10:59.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.362 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.362 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.362 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.362 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.362 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.362 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.363 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.363 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.363 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.363 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.363 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.363 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.363 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.363 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.364 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.EventLog.x6zrz89c6o.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j2puov35am-{0}-x6zrz89c6o-x6zrz89c6o.gz' -2026-01-28 14:10:59.364 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.364 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.EventLog.x6zrz89c6o.wasm - 200 41787 application/wasm 2.5227ms -2026-01-28 14:10:59.368 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IdentityModel.Tokens.Jwt.5tt1rwyygx.wasm - null null -2026-01-28 14:10:59.369 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.369 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.369 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.369 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.369 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.369 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.369 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.369 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.369 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.369 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.369 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.369 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.369 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.369 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.369 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.369 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.369 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.369 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.369 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.369 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.369 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.370 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.371 +03:00 [INF] Sending file. Request path: '_framework/System.IdentityModel.Tokens.Jwt.5tt1rwyygx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tr0pha0myb-{0}-5tt1rwyygx-5tt1rwyygx.gz' -2026-01-28 14:10:59.371 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.371 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IdentityModel.Tokens.Jwt.5tt1rwyygx.wasm - 200 81216 application/wasm 2.6105ms -2026-01-28 14:10:59.375 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.Dynamic.Core.2czhr4esfi.wasm - null null -2026-01-28 14:10:59.376 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.376 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.376 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.376 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.376 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.376 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.376 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.376 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.376 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.376 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.376 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.376 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.376 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.376 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.376 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.376 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.376 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.376 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.376 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.376 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.376 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.377 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.379 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.Dynamic.Core.2czhr4esfi.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\i8w7eyc5en-{0}-2czhr4esfi-2czhr4esfi.gz' -2026-01-28 14:10:59.379 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.379 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.Dynamic.Core.2czhr4esfi.wasm - 200 240985 application/wasm 3.8235ms -2026-01-28 14:10:59.384 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Management.ot1u48wl1s.wasm - null null -2026-01-28 14:10:59.384 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.384 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.384 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.384 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.384 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.384 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.384 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.384 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.384 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.384 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.384 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.385 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.385 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.385 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.385 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.385 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.385 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.385 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.385 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.385 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.385 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.385 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.386 +03:00 [INF] Sending file. Request path: '_framework/System.Management.ot1u48wl1s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\evjyfukwb1-{0}-ot1u48wl1s-ot1u48wl1s.gz' -2026-01-28 14:10:59.386 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.386 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Management.ot1u48wl1s.wasm - 200 63803 application/wasm 2.3171ms -2026-01-28 14:10:59.390 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/TimeZoneConverter.halbc9brmz.wasm - null null -2026-01-28 14:10:59.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.391 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.391 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.391 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.391 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.391 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.391 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.391 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.391 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.391 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.391 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.391 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.391 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.391 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.391 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.392 +03:00 [INF] Sending file. Request path: '_framework/TimeZoneConverter.halbc9brmz.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xqev0b9yez-{0}-halbc9brmz-halbc9brmz.gz' -2026-01-28 14:10:59.392 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.392 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/TimeZoneConverter.halbc9brmz.wasm - 200 63803 application/wasm 2.5387ms -2026-01-28 14:10:59.397 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.CSharp.aars8n89vy.wasm - null null -2026-01-28 14:10:59.398 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.398 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.398 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.398 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.398 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.398 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.398 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.398 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.398 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.398 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.398 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.398 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.398 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.398 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.399 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.399 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.399 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.399 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.399 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.399 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.399 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.399 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.401 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.CSharp.aars8n89vy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\esvbxkosdi-{0}-aars8n89vy-aars8n89vy.gz' -2026-01-28 14:10:59.401 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.401 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.CSharp.aars8n89vy.wasm - 200 301411 application/wasm 3.5409ms -2026-01-28 14:10:59.405 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.Core.upxd87cdr1.wasm - null null -2026-01-28 14:10:59.406 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.406 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.406 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.406 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.406 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.406 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.406 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.407 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.407 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.407 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.407 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.407 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.407 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.407 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.407 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.407 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.410 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.VisualBasic.Core.upxd87cdr1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jc5kei53j8-{0}-upxd87cdr1-upxd87cdr1.gz' -2026-01-28 14:10:59.410 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.410 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.Core.upxd87cdr1.wasm - 200 418674 application/wasm 4.3371ms -2026-01-28 14:10:59.415 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.lo3va0ewdb.wasm - null null -2026-01-28 14:10:59.416 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.416 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.416 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.416 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.416 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.416 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.416 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.416 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.416 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.416 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.416 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.416 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.416 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.416 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.416 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.416 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.416 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.416 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.416 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.416 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.416 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.416 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.417 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.VisualBasic.lo3va0ewdb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\57p19o16fi-{0}-lo3va0ewdb-lo3va0ewdb.gz' -2026-01-28 14:10:59.417 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.417 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.lo3va0ewdb.wasm - 200 6966 application/wasm 2.2451ms -2026-01-28 14:10:59.421 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Primitives.xf0i7ifc2c.wasm - null null -2026-01-28 14:10:59.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.422 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.422 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.422 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.422 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.422 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.422 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.423 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.423 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.423 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.423 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.423 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.423 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.423 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.423 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.423 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Win32.Primitives.xf0i7ifc2c.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\p8pizku5xb-{0}-xf0i7ifc2c-xf0i7ifc2c.gz' -2026-01-28 14:10:59.423 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.424 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Primitives.xf0i7ifc2c.wasm - 200 5430 application/wasm 2.1324ms -2026-01-28 14:10:59.429 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Registry.egcs66c38p.wasm - null null -2026-01-28 14:10:59.429 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.429 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.430 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.430 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.430 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.430 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.430 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.430 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.430 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.430 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.430 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.430 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.430 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.430 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.430 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.430 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.430 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.430 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.430 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.430 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.430 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.430 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.431 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Win32.Registry.egcs66c38p.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ouubhvk51-{0}-egcs66c38p-egcs66c38p.gz' -2026-01-28 14:10:59.431 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.431 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Registry.egcs66c38p.wasm - 200 22838 application/wasm 2.5158ms -2026-01-28 14:10:59.435 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.AppContext.229uy454et.wasm - null null -2026-01-28 14:10:59.436 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.436 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.436 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.436 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.436 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.436 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.436 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.436 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.436 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.436 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.436 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.437 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.437 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.437 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.437 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.437 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.437 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.437 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.437 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.437 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.437 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.437 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.438 +03:00 [INF] Sending file. Request path: '_framework/System.AppContext.229uy454et.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vtyu92lgvy-{0}-229uy454et-229uy454et.gz' -2026-01-28 14:10:59.438 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.438 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.AppContext.229uy454et.wasm - 200 4918 application/wasm 2.3541ms -2026-01-28 14:10:59.441 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Buffers.ffy4vk49sl.wasm - null null -2026-01-28 14:10:59.442 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.442 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.442 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.442 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.442 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.443 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.443 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.443 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.443 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.443 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.443 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.443 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.443 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.443 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.443 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.443 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.443 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.443 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.443 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.443 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.443 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.443 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.444 +03:00 [INF] Sending file. Request path: '_framework/System.Buffers.ffy4vk49sl.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\abrvn071f9-{0}-ffy4vk49sl-ffy4vk49sl.gz' -2026-01-28 14:10:59.444 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.444 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Buffers.ffy4vk49sl.wasm - 200 4918 application/wasm 2.9132ms -2026-01-28 14:10:59.449 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.Concurrent.vwjty21qm0.wasm - null null -2026-01-28 14:10:59.449 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.449 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.449 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.449 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.449 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.449 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.450 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.450 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.450 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.450 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.450 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.450 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.450 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.450 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.450 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.450 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.450 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.450 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.450 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.450 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.450 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.450 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.451 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.Concurrent.vwjty21qm0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5kmfc755lz-{0}-vwjty21qm0-vwjty21qm0.gz' -2026-01-28 14:10:59.451 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.451 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.Concurrent.vwjty21qm0.wasm - 200 78656 application/wasm 2.5447ms -2026-01-28 14:10:59.455 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.Immutable.62ow9webvq.wasm - null null -2026-01-28 14:10:59.456 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.456 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.456 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.456 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.456 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.456 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.456 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.456 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.456 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.456 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.456 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.456 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.456 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.456 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.457 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.457 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.457 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.457 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.457 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.457 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.457 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.457 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.459 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.Immutable.62ow9webvq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\y8eoflnwlp-{0}-62ow9webvq-62ow9webvq.gz' -2026-01-28 14:10:59.459 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.459 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.Immutable.62ow9webvq.wasm - 200 240985 application/wasm 3.5315ms -2026-01-28 14:10:59.477 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.NonGeneric.8znze2bng9.wasm - null null -2026-01-28 14:10:59.478 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.478 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.478 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.478 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.478 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.479 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.479 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.479 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.479 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.479 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.479 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.479 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.479 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.479 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.479 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.479 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.479 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.479 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.479 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.479 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.479 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.479 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.480 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.NonGeneric.8znze2bng9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\iq26svu8f5-{0}-8znze2bng9-8znze2bng9.gz' -2026-01-28 14:10:59.480 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.480 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.NonGeneric.8znze2bng9.wasm - 200 37691 application/wasm 3.0765ms -2026-01-28 14:10:59.485 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.Specialized.xek5hgzu5v.wasm - null null -2026-01-28 14:10:59.486 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.486 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.486 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.486 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.486 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.486 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.486 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.486 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.486 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.486 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.486 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.486 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.486 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.486 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.487 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.487 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.487 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.487 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.487 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.487 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.487 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.487 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.488 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.Specialized.xek5hgzu5v.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4cpzjuj3r0-{0}-xek5hgzu5v-xek5hgzu5v.gz' -2026-01-28 14:10:59.488 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.488 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.Specialized.xek5hgzu5v.wasm - 200 37691 application/wasm 2.7133ms -2026-01-28 14:10:59.494 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.0nghqyig8i.wasm - null null -2026-01-28 14:10:59.495 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.495 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.495 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.495 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.495 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.496 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.496 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.496 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.496 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.496 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.496 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.496 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.496 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.496 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.496 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.496 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.496 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.496 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.496 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.496 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.496 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.496 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.497 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.0nghqyig8i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rssb0afnfp-{0}-0nghqyig8i-0nghqyig8i.gz' -2026-01-28 14:10:59.497 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.497 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.0nghqyig8i.wasm - 200 102725 application/wasm 3.0098ms -2026-01-28 14:10:59.502 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Annotations.x5puxnf36m.wasm - null null -2026-01-28 14:10:59.503 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.503 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.503 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.503 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.503 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.503 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.503 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.503 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.503 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.503 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.504 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.504 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.504 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.504 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.504 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.504 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.504 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.504 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.504 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.504 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.504 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.504 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.505 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.Annotations.x5puxnf36m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sxzb8xtw7k-{0}-x5puxnf36m-x5puxnf36m.gz' -2026-01-28 14:10:59.505 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.505 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Annotations.x5puxnf36m.wasm - 200 92480 application/wasm 2.797ms -2026-01-28 14:10:59.510 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.DataAnnotations.w951woxztj.wasm - null null -2026-01-28 14:10:59.511 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.511 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.511 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.511 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.511 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.512 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.512 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.512 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.512 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.512 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.512 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.512 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.512 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.512 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.512 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.513 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.DataAnnotations.w951woxztj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\koqxcel3zt-{0}-w951woxztj-w951woxztj.gz' -2026-01-28 14:10:59.513 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.513 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.DataAnnotations.w951woxztj.wasm - 200 6454 application/wasm 2.7087ms -2026-01-28 14:10:59.518 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.EventBasedAsync.xxfp6nuzvv.wasm - null null -2026-01-28 14:10:59.518 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.518 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.518 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.518 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.518 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.518 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.518 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.518 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.519 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.519 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.519 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.519 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.519 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.519 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.519 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.519 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.519 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.520 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.EventBasedAsync.xxfp6nuzvv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vq3ormnt3h-{0}-xxfp6nuzvv-xxfp6nuzvv.gz' -2026-01-28 14:10:59.520 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.520 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.EventBasedAsync.xxfp6nuzvv.wasm - 200 16182 application/wasm 2.1317ms -2026-01-28 14:10:59.526 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Primitives.lfp6xvb2nc.wasm - null null -2026-01-28 14:10:59.527 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.527 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.527 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.527 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.527 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.527 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.527 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.527 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.527 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.527 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.527 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.527 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.527 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.527 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.528 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.528 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.528 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.528 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.528 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.528 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.528 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.528 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.528 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.Primitives.lfp6xvb2nc.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\f7c6808jvl-{0}-lfp6xvb2nc-lfp6xvb2nc.gz' -2026-01-28 14:10:59.528 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.529 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Primitives.lfp6xvb2nc.wasm - 200 32054 application/wasm 2.1532ms -2026-01-28 14:10:59.535 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.TypeConverter.b6pminnty5.wasm - null null -2026-01-28 14:10:59.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.535 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.535 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.535 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.535 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.536 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.536 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.536 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.536 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.536 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.536 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.536 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.536 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.536 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.536 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.539 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.TypeConverter.b6pminnty5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lj5t7hnftt-{0}-b6pminnty5-b6pminnty5.gz' -2026-01-28 14:10:59.539 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.539 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.TypeConverter.b6pminnty5.wasm - 200 306531 application/wasm 4.484ms -2026-01-28 14:10:59.546 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.1kxs5658en.wasm - null null -2026-01-28 14:10:59.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.547 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.548 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.548 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.548 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.548 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.548 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.548 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.548 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.548 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.548 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.548 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.548 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.549 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.1kxs5658en.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3bfqm2cg1o-{0}-1kxs5658en-1kxs5658en.gz' -2026-01-28 14:10:59.549 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.549 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.1kxs5658en.wasm - 200 5942 application/wasm 3.6336ms -2026-01-28 14:10:59.556 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Configuration.dfuzh9rwie.wasm - null null -2026-01-28 14:10:59.556 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.557 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.557 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.557 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.557 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.557 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.557 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.557 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.557 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.557 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.557 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.557 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.557 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.557 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.557 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.557 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.557 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.557 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.557 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.557 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.557 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.558 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.558 +03:00 [INF] Sending file. Request path: '_framework/System.Configuration.dfuzh9rwie.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xe6xuwrov9-{0}-dfuzh9rwie-dfuzh9rwie.gz' -2026-01-28 14:10:59.558 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.558 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Configuration.dfuzh9rwie.wasm - 200 9014 application/wasm 2.6597ms -2026-01-28 14:10:59.575 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Console.5bpbf67g8o.wasm - null null -2026-01-28 14:10:59.576 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.576 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.576 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.576 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.576 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.577 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.577 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.577 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.577 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.577 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.577 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.577 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.577 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.577 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.577 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.578 +03:00 [INF] Sending file. Request path: '_framework/System.Console.5bpbf67g8o.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6mvz9phqs1-{0}-5bpbf67g8o-5bpbf67g8o.gz' -2026-01-28 14:10:59.578 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.578 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Console.5bpbf67g8o.wasm - 200 43835 application/wasm 2.9995ms -2026-01-28 14:10:59.584 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Core.zxsh7ohdyg.wasm - null null -2026-01-28 14:10:59.585 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.585 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.585 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.585 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.585 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.585 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.585 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.585 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.585 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.585 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.585 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.585 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.585 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.585 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.586 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.586 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.586 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.586 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.586 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.586 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.586 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.586 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.586 +03:00 [INF] Sending file. Request path: '_framework/System.Core.zxsh7ohdyg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\cubawh6yyf-{0}-zxsh7ohdyg-zxsh7ohdyg.gz' -2026-01-28 14:10:59.586 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.587 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Core.zxsh7ohdyg.wasm - 200 13110 application/wasm 2.4381ms -2026-01-28 14:10:59.595 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Data.Common.f0gomia98j.wasm - null null -2026-01-28 14:10:59.596 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.597 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.597 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.597 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.597 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.597 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.597 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.597 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.597 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.597 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.597 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.597 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.597 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.597 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.597 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.597 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.597 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.598 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.598 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.598 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.598 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.598 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.622 +03:00 [INF] Sending file. Request path: '_framework/System.Data.Common.f0gomia98j.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1c47smzjbl-{0}-f0gomia98j-f0gomia98j.gz' -2026-01-28 14:10:59.622 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.622 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Data.Common.f0gomia98j.wasm - 200 1008076 application/wasm 26.6686ms -2026-01-28 14:10:59.645 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Data.DataSetExtensions.3k3coynn1w.wasm - null null -2026-01-28 14:10:59.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.646 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.646 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.646 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.646 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.646 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.646 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.647 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.647 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.647 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.647 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.647 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.647 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.647 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.647 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.650 +03:00 [INF] Sending file. Request path: '_framework/System.Data.DataSetExtensions.3k3coynn1w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ud5iprd0cp-{0}-3k3coynn1w-3k3coynn1w.gz' -2026-01-28 14:10:59.650 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.650 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Data.DataSetExtensions.3k3coynn1w.wasm - 200 5430 application/wasm 5.6308ms -2026-01-28 14:10:59.657 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Data.d1s9ppg3o7.wasm - null null -2026-01-28 14:10:59.657 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.658 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.658 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.658 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.658 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.658 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.658 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.658 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.658 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.658 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.658 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.658 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.658 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.658 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.658 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.658 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.658 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.659 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.659 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.659 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.659 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.659 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.674 +03:00 [INF] Sending file. Request path: '_framework/System.Data.d1s9ppg3o7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\z59k6pwvr9-{0}-d1s9ppg3o7-d1s9ppg3o7.gz' -2026-01-28 14:10:59.674 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.674 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Data.d1s9ppg3o7.wasm - 200 15158 application/wasm 17.4492ms -2026-01-28 14:10:59.679 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Contracts.yj802auekg.wasm - null null -2026-01-28 14:10:59.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.680 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.680 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.680 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.680 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.680 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.680 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.681 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.681 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.681 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.681 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.681 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.681 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.681 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.681 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.684 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Contracts.yj802auekg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\895yo00sin-{0}-yj802auekg-yj802auekg.gz' -2026-01-28 14:10:59.684 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.684 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Contracts.yj802auekg.wasm - 200 5942 application/wasm 4.7194ms -2026-01-28 14:10:59.692 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Debug.d3luf33vju.wasm - null null -2026-01-28 14:10:59.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.693 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.693 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.693 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.693 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.693 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.693 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.694 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.694 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.694 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.694 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.694 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.694 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.694 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.694 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.736 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Debug.d3luf33vju.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\eplp8tl5qp-{0}-d3luf33vju-d3luf33vju.gz' -2026-01-28 14:10:59.736 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.737 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Debug.d3luf33vju.wasm - 200 5430 application/wasm 45.0916ms -2026-01-28 14:10:59.743 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.DiagnosticSource.4iwxfpqf71.wasm - null null -2026-01-28 14:10:59.744 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.745 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.745 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.745 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.745 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.745 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.745 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.745 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.745 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.745 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.745 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.745 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.745 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.745 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.745 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.746 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.746 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.746 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.746 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.746 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.746 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.746 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.762 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.DiagnosticSource.4iwxfpqf71.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1hb9b6viqf-{0}-4iwxfpqf71-4iwxfpqf71.gz' -2026-01-28 14:10:59.762 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.763 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.DiagnosticSource.4iwxfpqf71.wasm - 200 192335 application/wasm 19.3683ms -2026-01-28 14:10:59.768 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.FileVersionInfo.pqffbmgf59.wasm - null null -2026-01-28 14:10:59.769 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.769 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.769 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.769 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.769 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.769 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.769 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.769 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.769 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.769 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.769 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.769 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.769 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.769 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.769 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.769 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.769 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.769 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.769 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.769 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.769 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.769 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.784 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.FileVersionInfo.pqffbmgf59.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s56fv99ax6-{0}-pqffbmgf59-pqffbmgf59.gz' -2026-01-28 14:10:59.785 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.785 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.FileVersionInfo.pqffbmgf59.wasm - 200 12598 application/wasm 16.8138ms -2026-01-28 14:10:59.791 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Process.hgedtugxkh.wasm - null null -2026-01-28 14:10:59.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.792 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.792 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.792 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.792 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.792 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.792 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.793 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.793 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.793 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.793 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.793 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.793 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.793 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.793 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.808 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Process.hgedtugxkh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ulvoxvx0qx-{0}-hgedtugxkh-hgedtugxkh.gz' -2026-01-28 14:10:59.808 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.809 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Process.hgedtugxkh.wasm - 200 46395 application/wasm 17.8679ms -2026-01-28 14:10:59.814 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.StackTrace.apl6dmc0ay.wasm - null null -2026-01-28 14:10:59.815 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.815 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.815 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.815 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.815 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.816 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.816 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.816 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.816 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.816 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.816 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.816 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.816 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.816 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.816 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.832 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.StackTrace.apl6dmc0ay.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b4bxks5sgj-{0}-apl6dmc0ay-apl6dmc0ay.gz' -2026-01-28 14:10:59.832 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.832 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.StackTrace.apl6dmc0ay.wasm - 200 15670 application/wasm 17.5959ms -2026-01-28 14:10:59.838 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.TextWriterTraceListener.p621ruagc5.wasm - null null -2026-01-28 14:10:59.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.838 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.838 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.838 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.838 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.839 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.839 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.839 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.839 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.839 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.839 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.839 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.839 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.839 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.840 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.854 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.TextWriterTraceListener.p621ruagc5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0rz7u0vbo5-{0}-p621ruagc5-p621ruagc5.gz' -2026-01-28 14:10:59.854 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.854 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.TextWriterTraceListener.p621ruagc5.wasm - 200 21302 application/wasm 16.3509ms -2026-01-28 14:10:59.860 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Tools.f5hnfusd9n.wasm - null null -2026-01-28 14:10:59.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.861 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.861 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.861 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.861 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.861 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.861 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.861 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.861 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.861 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.861 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.861 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.861 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.861 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.862 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.864 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Tools.f5hnfusd9n.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rtkunlcxi7-{0}-f5hnfusd9n-f5hnfusd9n.gz' -2026-01-28 14:10:59.864 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.864 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Tools.f5hnfusd9n.wasm - 200 4918 application/wasm 3.9747ms -2026-01-28 14:10:59.869 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.TraceSource.z6jsaoha6p.wasm - null null -2026-01-28 14:10:59.869 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.869 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.869 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.869 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.869 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.870 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.870 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.870 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.870 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.870 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.870 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.870 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.870 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.870 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.870 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.870 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.870 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.870 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.870 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.870 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.870 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.870 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.882 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.TraceSource.z6jsaoha6p.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3okia77zo6-{0}-z6jsaoha6p-z6jsaoha6p.gz' -2026-01-28 14:10:59.882 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.882 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.TraceSource.z6jsaoha6p.wasm - 200 48443 application/wasm 13.2663ms -2026-01-28 14:10:59.887 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Tracing.d1w6x6c56c.wasm - null null -2026-01-28 14:10:59.887 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.887 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.888 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.888 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.888 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.888 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.888 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.888 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.888 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.888 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.888 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.888 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.888 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.888 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.888 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.903 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Tracing.d1w6x6c56c.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bl5rt2o9qk-{0}-d1w6x6c56c-d1w6x6c56c.gz' -2026-01-28 14:10:59.903 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.903 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Tracing.d1w6x6c56c.wasm - 200 5942 application/wasm 15.9497ms -2026-01-28 14:10:59.908 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Drawing.Primitives.l0kpbmmg5r.wasm - null null -2026-01-28 14:10:59.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.909 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.909 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.909 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.909 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.910 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.910 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.910 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.910 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.910 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.910 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.910 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.910 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.910 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.910 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.923 +03:00 [INF] Sending file. Request path: '_framework/System.Drawing.Primitives.l0kpbmmg5r.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mnh24cyvjl-{0}-l0kpbmmg5r-l0kpbmmg5r.gz' -2026-01-28 14:10:59.923 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.923 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Drawing.Primitives.l0kpbmmg5r.wasm - 200 54587 application/wasm 14.2874ms -2026-01-28 14:10:59.929 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Drawing.ur4stg427u.wasm - null null -2026-01-28 14:10:59.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.930 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.930 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.930 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.930 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.930 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.930 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.930 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.930 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.930 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.931 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.945 +03:00 [INF] Sending file. Request path: '_framework/System.Drawing.ur4stg427u.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tcko64rf2o-{0}-ur4stg427u-ur4stg427u.gz' -2026-01-28 14:10:59.945 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.945 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Drawing.ur4stg427u.wasm - 200 10038 application/wasm 16.1233ms -2026-01-28 14:10:59.950 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Dynamic.Runtime.hhm1961hd1.wasm - null null -2026-01-28 14:10:59.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.950 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.950 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.950 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.950 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.950 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.951 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.951 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.951 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.951 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.951 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.951 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.951 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.951 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.951 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.951 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.951 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.964 +03:00 [INF] Sending file. Request path: '_framework/System.Dynamic.Runtime.hhm1961hd1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bmbd8giz1p-{0}-hhm1961hd1-hhm1961hd1.gz' -2026-01-28 14:10:59.964 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.964 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Dynamic.Runtime.hhm1961hd1.wasm - 200 5942 application/wasm 14.3756ms -2026-01-28 14:10:59.968 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Formats.Asn1.9b1kh77dim.wasm - null null -2026-01-28 14:10:59.969 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.969 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:10:59.969 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:10:59.969 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:10:59.969 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.969 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:10:59.969 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:10:59.969 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:10:59.969 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:10:59.969 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:10:59.969 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:10:59.969 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.969 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:10:59.970 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:10:59.970 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:10:59.970 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:10:59.970 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:10:59.970 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:10:59.970 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:10:59.970 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:10:59.970 +03:00 [DBG] No tenant resolved. -2026-01-28 14:10:59.970 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.988 +03:00 [INF] Sending file. Request path: '_framework/System.Formats.Asn1.9b1kh77dim.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3nsgkkymfm-{0}-9b1kh77dim-9b1kh77dim.gz' -2026-01-28 14:10:59.988 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:10:59.997 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Formats.Asn1.9b1kh77dim.wasm - 200 86848 application/wasm 28.4293ms -2026-01-28 14:11:00.012 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Formats.Tar.pwu9oiomot.wasm - null null -2026-01-28 14:11:00.013 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.013 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.014 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.014 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.014 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.014 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.014 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.014 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.014 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.014 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.014 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.014 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.014 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.014 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.014 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.014 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.014 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.014 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.014 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.014 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.015 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.015 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.040 +03:00 [INF] Sending file. Request path: '_framework/System.Formats.Tar.pwu9oiomot.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\hazqfqk5pt-{0}-pwu9oiomot-pwu9oiomot.gz' -2026-01-28 14:11:00.040 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.041 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Formats.Tar.pwu9oiomot.wasm - 200 28470 application/wasm 29.0023ms -2026-01-28 14:11:00.053 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Globalization.Calendars.w6686c3eg8.wasm - null null -2026-01-28 14:11:00.054 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.054 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.054 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.054 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.054 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.054 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.054 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.054 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.054 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.054 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.054 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.054 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.054 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.054 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.055 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.055 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.055 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.055 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.055 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.055 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.055 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.055 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.058 +03:00 [INF] Sending file. Request path: '_framework/System.Globalization.Calendars.w6686c3eg8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\095aowv2ry-{0}-w6686c3eg8-w6686c3eg8.gz' -2026-01-28 14:11:00.058 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.058 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Globalization.Calendars.w6686c3eg8.wasm - 200 5430 application/wasm 5.8211ms -2026-01-28 14:11:00.065 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Globalization.Extensions.koczvzp0tt.wasm - null null -2026-01-28 14:11:00.067 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.067 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.067 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.067 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.067 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.068 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.068 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.068 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.068 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.068 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.068 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.068 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.068 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.068 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.068 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.068 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.068 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.068 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.068 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.068 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.068 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.068 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.072 +03:00 [INF] Sending file. Request path: '_framework/System.Globalization.Extensions.koczvzp0tt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dl0jfhz19c-{0}-koczvzp0tt-koczvzp0tt.gz' -2026-01-28 14:11:00.072 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.072 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Globalization.Extensions.koczvzp0tt.wasm - 200 4918 application/wasm 6.6066ms -2026-01-28 14:11:00.078 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Globalization.k8m97q3m8s.wasm - null null -2026-01-28 14:11:00.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.079 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.079 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.079 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.079 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.079 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.080 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.080 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.080 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.080 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.080 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.080 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.080 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.080 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.080 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.080 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.080 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.080 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.080 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.082 +03:00 [INF] Sending file. Request path: '_framework/System.Globalization.k8m97q3m8s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8q1hdhcajb-{0}-k8m97q3m8s-k8m97q3m8s.gz' -2026-01-28 14:11:00.082 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.082 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Globalization.k8m97q3m8s.wasm - 200 5430 application/wasm 3.9792ms -2026-01-28 14:11:00.088 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.Brotli.66hvl0dk85.wasm - null null -2026-01-28 14:11:00.089 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.089 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.089 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.089 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.089 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.089 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.089 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.089 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.089 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.089 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.089 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.089 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.089 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.089 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.090 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.090 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.090 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.090 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.090 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.090 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.090 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.090 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.106 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Compression.Brotli.66hvl0dk85.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\klv0zda5b4-{0}-66hvl0dk85-66hvl0dk85.gz' -2026-01-28 14:11:00.106 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.106 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.Brotli.66hvl0dk85.wasm - 200 18230 application/wasm 18.5445ms -2026-01-28 14:11:00.113 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.FileSystem.jhbp0nl2b8.wasm - null null -2026-01-28 14:11:00.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.114 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.114 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.114 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.114 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.114 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.114 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.115 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.115 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.115 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.115 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.115 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.115 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.115 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.115 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.118 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Compression.FileSystem.jhbp0nl2b8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3qa8sgt8n1-{0}-jhbp0nl2b8-jhbp0nl2b8.gz' -2026-01-28 14:11:00.118 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.119 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.FileSystem.jhbp0nl2b8.wasm - 200 4918 application/wasm 5.8291ms -2026-01-28 14:11:00.126 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.ZipFile.nap78ewmdw.wasm - null null -2026-01-28 14:11:00.127 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.127 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.127 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.127 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.127 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.128 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.128 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.128 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.128 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.128 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.128 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.128 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.128 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.128 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.128 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.128 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.128 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.128 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.128 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.128 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.128 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.128 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.143 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Compression.ZipFile.nap78ewmdw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s0uvr55768-{0}-nap78ewmdw-nap78ewmdw.gz' -2026-01-28 14:11:00.143 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.143 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.ZipFile.nap78ewmdw.wasm - 200 43323 application/wasm 16.7157ms -2026-01-28 14:11:00.148 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.wjdy7ns833.wasm - null null -2026-01-28 14:11:00.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.149 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.149 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.149 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.149 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.149 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.150 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.150 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.150 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.150 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.150 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.150 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.150 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.150 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.150 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.166 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Compression.wjdy7ns833.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b9wmrmes1g-{0}-wjdy7ns833-wjdy7ns833.gz' -2026-01-28 14:11:00.166 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.166 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.wjdy7ns833.wasm - 200 157514 application/wasm 17.6405ms -2026-01-28 14:11:00.172 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.AccessControl.eod3jwbqn7.wasm - null null -2026-01-28 14:11:00.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.172 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.172 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.172 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.172 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.173 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.173 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.173 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.173 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.173 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.173 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.173 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.173 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.173 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.173 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.173 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.173 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.173 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.173 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.173 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.173 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.173 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.186 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.AccessControl.eod3jwbqn7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dxkig4l83f-{0}-eod3jwbqn7-eod3jwbqn7.gz' -2026-01-28 14:11:00.186 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.186 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.AccessControl.eod3jwbqn7.wasm - 200 21814 application/wasm 14.0876ms -2026-01-28 14:11:00.191 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.DriveInfo.driq9z3dvq.wasm - null null -2026-01-28 14:11:00.191 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.191 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.192 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.192 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.192 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.192 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.192 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.192 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.192 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.192 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.192 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.192 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.192 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.192 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.192 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.192 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.192 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.192 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.192 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.192 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.192 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.192 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.205 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.DriveInfo.driq9z3dvq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\53tiabgbqz-{0}-driq9z3dvq-driq9z3dvq.gz' -2026-01-28 14:11:00.205 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.205 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.DriveInfo.driq9z3dvq.wasm - 200 13622 application/wasm 14.6937ms -2026-01-28 14:11:00.210 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.Primitives.81fwc35czq.wasm - null null -2026-01-28 14:11:00.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.210 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.211 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.211 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.211 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.211 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.211 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.211 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.211 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.211 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.211 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.211 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.211 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.211 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.211 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.213 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.Primitives.81fwc35czq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3hdbxu1ccm-{0}-81fwc35czq-81fwc35czq.gz' -2026-01-28 14:11:00.213 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.213 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.Primitives.81fwc35czq.wasm - 200 4918 application/wasm 3.7554ms -2026-01-28 14:11:00.218 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.Watcher.adgwo4kuza.wasm - null null -2026-01-28 14:11:00.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.218 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.218 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.218 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.218 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.218 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.219 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.219 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.219 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.219 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.219 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.219 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.219 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.219 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.219 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.219 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.219 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.219 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.219 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.219 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.219 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.219 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.232 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.Watcher.adgwo4kuza.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0nk9uqd91z-{0}-adgwo4kuza-adgwo4kuza.gz' -2026-01-28 14:11:00.232 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.232 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.Watcher.adgwo4kuza.wasm - 200 22838 application/wasm 14.2358ms -2026-01-28 14:11:00.237 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.bwu3sqaj6h.wasm - null null -2026-01-28 14:11:00.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.237 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.237 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.237 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.237 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.238 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.238 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.238 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.238 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.238 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.238 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.238 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.238 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.238 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.238 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.238 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.238 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.238 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.238 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.238 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.238 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.238 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.251 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.bwu3sqaj6h.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0oeun214in-{0}-bwu3sqaj6h-bwu3sqaj6h.gz' -2026-01-28 14:11:00.251 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.252 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.bwu3sqaj6h.wasm - 200 5430 application/wasm 15.0137ms -2026-01-28 14:11:00.256 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.IsolatedStorage.h5a2uwu0ao.wasm - null null -2026-01-28 14:11:00.257 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.257 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.257 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.257 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.257 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.257 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.257 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.257 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.257 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.257 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.257 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.257 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.257 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.257 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.257 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.257 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.257 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.257 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.257 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.257 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.257 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.257 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.269 +03:00 [INF] Sending file. Request path: '_framework/System.IO.IsolatedStorage.h5a2uwu0ao.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wxrt5vpq1k-{0}-h5a2uwu0ao-h5a2uwu0ao.gz' -2026-01-28 14:11:00.269 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.269 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.IsolatedStorage.h5a2uwu0ao.wasm - 200 24886 application/wasm 13.2227ms -2026-01-28 14:11:00.275 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.MemoryMappedFiles.7rigkgafok.wasm - null null -2026-01-28 14:11:00.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.276 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.276 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.276 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.276 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.276 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.276 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.277 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.277 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.277 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.277 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.277 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.277 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.277 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.277 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.290 +03:00 [INF] Sending file. Request path: '_framework/System.IO.MemoryMappedFiles.7rigkgafok.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vyic7lxnxv-{0}-7rigkgafok-7rigkgafok.gz' -2026-01-28 14:11:00.290 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.290 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.MemoryMappedFiles.7rigkgafok.wasm - 200 39739 application/wasm 14.5122ms -2026-01-28 14:11:00.295 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipelines.pq56wwa14f.wasm - null null -2026-01-28 14:11:00.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.296 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.296 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.296 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.296 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.296 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.296 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.296 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.296 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.296 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.296 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.296 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.296 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.296 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.297 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.309 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Pipelines.pq56wwa14f.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\a08rh4wqum-{0}-pq56wwa14f-pq56wwa14f.gz' -2026-01-28 14:11:00.309 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.310 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipelines.pq56wwa14f.wasm - 200 67904 application/wasm 14.5485ms -2026-01-28 14:11:00.315 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipes.AccessControl.orawgey7bd.wasm - null null -2026-01-28 14:11:00.315 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.315 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.315 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.315 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.315 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.316 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.316 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.316 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.316 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.316 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.316 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.316 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.316 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.316 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.316 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.316 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.316 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.316 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.316 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.316 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.316 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.316 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.329 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Pipes.AccessControl.orawgey7bd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\l16mq4yf9p-{0}-orawgey7bd-orawgey7bd.gz' -2026-01-28 14:11:00.329 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.329 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipes.AccessControl.orawgey7bd.wasm - 200 13110 application/wasm 14.3688ms -2026-01-28 14:11:00.345 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipes.qv5hx9ne5m.wasm - null null -2026-01-28 14:11:00.346 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.346 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.346 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.346 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.346 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.346 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.346 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.346 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.346 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.346 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.346 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.346 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.346 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.346 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.346 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.346 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.346 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.346 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.346 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.346 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.346 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.347 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.359 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Pipes.qv5hx9ne5m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\r2irkbzfn5-{0}-qv5hx9ne5m-qv5hx9ne5m.gz' -2026-01-28 14:11:00.359 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.359 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipes.qv5hx9ne5m.wasm - 200 32054 application/wasm 13.8327ms -2026-01-28 14:11:00.364 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.UnmanagedMemoryStream.zjpuh62vtt.wasm - null null -2026-01-28 14:11:00.365 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.365 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.365 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.365 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.365 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.365 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.365 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.365 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.365 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.365 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.365 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.365 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.365 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.365 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.366 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.366 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.366 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.366 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.366 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.366 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.366 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.366 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.368 +03:00 [INF] Sending file. Request path: '_framework/System.IO.UnmanagedMemoryStream.zjpuh62vtt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\u2mfjvv6a6-{0}-zjpuh62vtt-zjpuh62vtt.gz' -2026-01-28 14:11:00.368 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.368 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.UnmanagedMemoryStream.zjpuh62vtt.wasm - 200 5430 application/wasm 3.7092ms -2026-01-28 14:11:00.374 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.kdm5se4z4i.wasm - null null -2026-01-28 14:11:00.374 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.374 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.374 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.374 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.374 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.375 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.375 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.375 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.375 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.375 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.375 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.375 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.375 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.375 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.375 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.375 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.375 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.375 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.375 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.375 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.375 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.375 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.378 +03:00 [INF] Sending file. Request path: '_framework/System.IO.kdm5se4z4i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tx0zr2bfyn-{0}-kdm5se4z4i-kdm5se4z4i.gz' -2026-01-28 14:11:00.378 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.378 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.kdm5se4z4i.wasm - 200 5430 application/wasm 4.1156ms -2026-01-28 14:11:00.383 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.AsyncEnumerable.24q069vvmu.wasm - null null -2026-01-28 14:11:00.383 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.383 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.383 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.383 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.383 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.384 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.384 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.384 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.384 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.384 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.384 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.384 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.384 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.384 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.384 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.384 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.384 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.384 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.384 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.384 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.384 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.384 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.400 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.AsyncEnumerable.24q069vvmu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c7lzsfjd6q-{0}-24q069vvmu-24q069vvmu.gz' -2026-01-28 14:11:00.400 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.400 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.AsyncEnumerable.24q069vvmu.wasm - 200 446327 application/wasm 16.933ms -2026-01-28 14:11:00.405 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.Expressions.5vac4cfeo2.wasm - null null -2026-01-28 14:11:00.406 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.406 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.406 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.406 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.406 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.406 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.406 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.406 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.406 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.406 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.406 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.406 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.406 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.406 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.406 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.406 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.406 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.406 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.406 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.406 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.406 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.406 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.421 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.Expressions.5vac4cfeo2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ofq1bjb4ny-{0}-5vac4cfeo2-5vac4cfeo2.gz' -2026-01-28 14:11:00.421 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.421 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.Expressions.5vac4cfeo2.wasm - 200 565131 application/wasm 15.6163ms -2026-01-28 14:11:00.427 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.Parallel.wec9zwybs3.wasm - null null -2026-01-28 14:11:00.428 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.428 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.428 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.428 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.428 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.428 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.428 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.428 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.428 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.428 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.428 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.428 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.428 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.428 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.429 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.429 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.429 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.429 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.429 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.429 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.429 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.429 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.443 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.Parallel.wec9zwybs3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gqwqnnwtf4-{0}-wec9zwybs3-wec9zwybs3.gz' -2026-01-28 14:11:00.443 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.443 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.Parallel.wec9zwybs3.wasm - 200 212820 application/wasm 15.2845ms -2026-01-28 14:11:00.455 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.Queryable.aacsqokaru.wasm - null null -2026-01-28 14:11:00.456 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.456 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.456 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.456 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.456 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.456 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.456 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.456 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.456 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.456 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.456 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.456 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.456 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.456 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.457 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.457 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.457 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.457 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.457 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.457 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.457 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.457 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.470 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.Queryable.aacsqokaru.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6oa4hfxdqf-{0}-aacsqokaru-aacsqokaru.gz' -2026-01-28 14:11:00.470 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.470 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.Queryable.aacsqokaru.wasm - 200 68416 application/wasm 14.7377ms -2026-01-28 14:11:00.474 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.xsk9czcoz7.wasm - null null -2026-01-28 14:11:00.475 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.475 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.475 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.475 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.475 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.475 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.476 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.476 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.476 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.476 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.476 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.476 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.476 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.476 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.476 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.476 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.476 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.476 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.476 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.476 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.476 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.476 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.491 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.xsk9czcoz7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xukhwpcysr-{0}-xsk9czcoz7-xsk9czcoz7.gz' -2026-01-28 14:11:00.491 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.491 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.xsk9czcoz7.wasm - 200 190799 application/wasm 16.6635ms -2026-01-28 14:11:00.496 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Memory.av3iy8oqe6.wasm - null null -2026-01-28 14:11:00.497 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.497 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.497 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.497 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.497 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.497 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.497 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.497 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.497 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.497 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.497 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.497 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.497 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.497 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.497 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.497 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.497 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.497 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.497 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.497 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.497 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.498 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.511 +03:00 [INF] Sending file. Request path: '_framework/System.Memory.av3iy8oqe6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\20k8bcs2ry-{0}-av3iy8oqe6-av3iy8oqe6.gz' -2026-01-28 14:11:00.511 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.511 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Memory.av3iy8oqe6.wasm - 200 45371 application/wasm 14.8898ms -2026-01-28 14:11:00.515 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Http.Json.f5ti54ia1a.wasm - null null -2026-01-28 14:11:00.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.516 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.516 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.516 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.516 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.516 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.516 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.516 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.516 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.516 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.516 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.516 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.516 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.516 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.516 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.530 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Http.Json.f5ti54ia1a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\hdhp2fv8el-{0}-f5ti54ia1a-f5ti54ia1a.gz' -2026-01-28 14:11:00.530 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.530 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Http.Json.f5ti54ia1a.wasm - 200 45883 application/wasm 14.9469ms -2026-01-28 14:11:00.534 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Http.xnexopyo77.wasm - null null -2026-01-28 14:11:00.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.535 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.535 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.535 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.535 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.535 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.535 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.535 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.535 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.535 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.535 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.535 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.535 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.535 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.535 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.551 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Http.xnexopyo77.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5zhsh7htpt-{0}-xnexopyo77-xnexopyo77.gz' -2026-01-28 14:11:00.551 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.551 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Http.xnexopyo77.wasm - 200 286046 application/wasm 16.6296ms -2026-01-28 14:11:00.556 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.HttpListener.qea3lr0ivv.wasm - null null -2026-01-28 14:11:00.557 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.557 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.557 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.557 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.557 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.557 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.557 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.557 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.557 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.557 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.557 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.557 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.557 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.557 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.557 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.557 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.557 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.557 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.557 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.557 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.557 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.558 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.570 +03:00 [INF] Sending file. Request path: '_framework/System.Net.HttpListener.qea3lr0ivv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xstee2l2o3-{0}-qea3lr0ivv-qea3lr0ivv.gz' -2026-01-28 14:11:00.570 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.571 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.HttpListener.qea3lr0ivv.wasm - 200 45883 application/wasm 14.1728ms -2026-01-28 14:11:00.576 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Mail.kabvwy0nwb.wasm - null null -2026-01-28 14:11:00.576 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.576 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.576 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.577 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.577 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.577 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.577 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.577 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.577 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.578 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.578 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.578 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.578 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.578 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.578 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.593 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Mail.kabvwy0nwb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\brj66r630l-{0}-kabvwy0nwb-kabvwy0nwb.gz' -2026-01-28 14:11:00.593 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.593 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Mail.kabvwy0nwb.wasm - 200 95040 application/wasm 17.8187ms -2026-01-28 14:11:00.599 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.NameResolution.r77xqyi48e.wasm - null null -2026-01-28 14:11:00.600 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.600 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.600 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.600 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.600 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.600 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.600 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.600 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.600 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.600 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.600 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.600 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.600 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.600 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.600 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.600 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.601 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.601 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.601 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.601 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.601 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.601 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.616 +03:00 [INF] Sending file. Request path: '_framework/System.Net.NameResolution.r77xqyi48e.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0muzq1nn1l-{0}-r77xqyi48e-r77xqyi48e.gz' -2026-01-28 14:11:00.616 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.616 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.NameResolution.r77xqyi48e.wasm - 200 14134 application/wasm 16.6276ms -2026-01-28 14:11:00.622 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.NetworkInformation.4y8ae4b47g.wasm - null null -2026-01-28 14:11:00.623 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.623 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.623 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.623 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.623 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.623 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.623 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.623 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.623 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.623 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.623 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.623 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.623 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.623 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.623 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.623 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.623 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.623 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.623 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.623 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.623 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.623 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.639 +03:00 [INF] Sending file. Request path: '_framework/System.Net.NetworkInformation.4y8ae4b47g.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\t7lf75pu6w-{0}-4y8ae4b47g-4y8ae4b47g.gz' -2026-01-28 14:11:00.639 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.639 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.NetworkInformation.4y8ae4b47g.wasm - 200 32054 application/wasm 17.329ms -2026-01-28 14:11:00.645 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Ping.fb39s7nqmu.wasm - null null -2026-01-28 14:11:00.645 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.646 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.646 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.646 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.646 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.646 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.646 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.646 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.646 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.646 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.646 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.646 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.646 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.646 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.646 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.660 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Ping.fb39s7nqmu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1qhthfilvz-{0}-fb39s7nqmu-fb39s7nqmu.gz' -2026-01-28 14:11:00.660 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.660 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Ping.fb39s7nqmu.wasm - 200 17718 application/wasm 14.8715ms -2026-01-28 14:11:00.665 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Primitives.2oo4pve6tx.wasm - null null -2026-01-28 14:11:00.665 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.665 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.665 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.665 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.665 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.666 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.666 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.666 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.666 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.666 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.666 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.666 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.666 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.666 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.666 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.681 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Primitives.2oo4pve6tx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xxez8u380e-{0}-2oo4pve6tx-2oo4pve6tx.gz' -2026-01-28 14:11:00.681 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.681 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Primitives.2oo4pve6tx.wasm - 200 97088 application/wasm 15.9698ms -2026-01-28 14:11:00.685 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Quic.wedsu6m1ok.wasm - null null -2026-01-28 14:11:00.685 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.685 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.685 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.685 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.685 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.686 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.686 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.686 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.686 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.686 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.686 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.686 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.686 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.686 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.686 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.686 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.686 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.686 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.686 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.686 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.686 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.686 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.697 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Quic.wedsu6m1ok.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mavmo5ad6x-{0}-wedsu6m1ok-wedsu6m1ok.gz' -2026-01-28 14:11:00.697 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.697 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Quic.wedsu6m1ok.wasm - 200 28982 application/wasm 12.153ms -2026-01-28 14:11:00.702 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Requests.dd8um1v0v4.wasm - null null -2026-01-28 14:11:00.702 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.702 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.702 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.702 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.702 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.702 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.702 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.702 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.702 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.702 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.702 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.702 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.702 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.702 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.703 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.703 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.703 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.703 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.703 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.703 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.703 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.703 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.714 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Requests.dd8um1v0v4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\g8osyueis5-{0}-dd8um1v0v4-dd8um1v0v4.gz' -2026-01-28 14:11:00.714 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.714 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Requests.dd8um1v0v4.wasm - 200 55611 application/wasm 12.5361ms -2026-01-28 14:11:00.718 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Security.j01yc12epg.wasm - null null -2026-01-28 14:11:00.719 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.719 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.719 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.719 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.719 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.719 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.719 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.719 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.719 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.719 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.719 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.719 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.719 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.719 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.719 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.719 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.719 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.719 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.719 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.719 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.719 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.719 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.730 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Security.j01yc12epg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vd1ks16ws6-{0}-j01yc12epg-j01yc12epg.gz' -2026-01-28 14:11:00.730 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.730 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Security.j01yc12epg.wasm - 200 104261 application/wasm 12.2861ms -2026-01-28 14:11:00.744 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.ServerSentEvents.n20pwunwwa.wasm - null null -2026-01-28 14:11:00.744 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.744 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.744 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.744 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.744 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.744 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.745 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.745 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.745 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.745 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.745 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.745 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.745 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.745 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.745 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.745 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.745 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.745 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.745 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.745 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.745 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.745 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.756 +03:00 [INF] Sending file. Request path: '_framework/System.Net.ServerSentEvents.n20pwunwwa.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rp6twqxirl-{0}-n20pwunwwa-n20pwunwwa.gz' -2026-01-28 14:11:00.757 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.757 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.ServerSentEvents.n20pwunwwa.wasm - 200 30518 application/wasm 12.9538ms -2026-01-28 14:11:00.762 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.ServicePoint.6qgdmrxct2.wasm - null null -2026-01-28 14:11:00.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.762 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.762 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.762 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.762 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.762 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.763 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.763 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.763 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.763 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.763 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.763 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.763 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.763 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.763 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.773 +03:00 [INF] Sending file. Request path: '_framework/System.Net.ServicePoint.6qgdmrxct2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v7t97n1u19-{0}-6qgdmrxct2-6qgdmrxct2.gz' -2026-01-28 14:11:00.773 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.773 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.ServicePoint.6qgdmrxct2.wasm - 200 4918 application/wasm 11.3673ms -2026-01-28 14:11:00.778 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Sockets.0jj55xk9rv.wasm - null null -2026-01-28 14:11:00.779 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.779 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.779 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.779 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.779 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.779 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.779 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.779 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.779 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.779 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.779 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.779 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.779 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.779 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.779 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.779 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.779 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.779 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.779 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.779 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.779 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.779 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.790 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Sockets.0jj55xk9rv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\i4k589b7bn-{0}-0jj55xk9rv-0jj55xk9rv.gz' -2026-01-28 14:11:00.790 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.790 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Sockets.0jj55xk9rv.wasm - 200 64315 application/wasm 11.5343ms -2026-01-28 14:11:00.796 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebClient.3wc74qco9q.wasm - null null -2026-01-28 14:11:00.796 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.797 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.797 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.797 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.797 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.797 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.797 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.797 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.797 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.797 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.797 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.797 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.797 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.797 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.797 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.797 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.797 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.797 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.797 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.797 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.797 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.797 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.809 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebClient.3wc74qco9q.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9mnjsb8x3q-{0}-3wc74qco9q-3wc74qco9q.gz' -2026-01-28 14:11:00.809 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.809 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebClient.3wc74qco9q.wasm - 200 45883 application/wasm 13.5356ms -2026-01-28 14:11:00.814 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebHeaderCollection.4ybcvi6krs.wasm - null null -2026-01-28 14:11:00.815 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.815 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.815 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.815 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.815 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.815 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.815 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.815 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.815 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.815 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.815 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.815 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.815 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.815 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.815 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.815 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.815 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.815 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.815 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.815 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.815 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.816 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.829 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebHeaderCollection.4ybcvi6krs.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\apet8won7e-{0}-4ybcvi6krs-4ybcvi6krs.gz' -2026-01-28 14:11:00.829 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.829 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebHeaderCollection.4ybcvi6krs.wasm - 200 22838 application/wasm 14.4625ms -2026-01-28 14:11:00.833 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebProxy.zxvs9bwlaq.wasm - null null -2026-01-28 14:11:00.834 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.834 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.834 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.834 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.834 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.834 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.834 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.834 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.834 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.834 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.834 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.834 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.834 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.834 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.834 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.834 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.834 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.834 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.834 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.834 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.834 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.834 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.845 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebProxy.zxvs9bwlaq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n8e7iy8bgt-{0}-zxvs9bwlaq-zxvs9bwlaq.gz' -2026-01-28 14:11:00.845 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.845 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebProxy.zxvs9bwlaq.wasm - 200 11574 application/wasm 11.8614ms -2026-01-28 14:11:00.849 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebSockets.Client.n57nf3z1br.wasm - null null -2026-01-28 14:11:00.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.850 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.850 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.850 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.850 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.850 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.850 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.850 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.850 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.850 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.850 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.850 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.850 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.850 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.850 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.850 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.850 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.850 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.860 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebSockets.Client.n57nf3z1br.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rnseevpeje-{0}-n57nf3z1br-n57nf3z1br.gz' -2026-01-28 14:11:00.860 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.860 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebSockets.Client.n57nf3z1br.wasm - 200 42299 application/wasm 11.3813ms -2026-01-28 14:11:00.864 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebSockets.i3475fl55i.wasm - null null -2026-01-28 14:11:00.864 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.864 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.864 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.864 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.864 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.865 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.865 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.865 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.865 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.865 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.865 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.865 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.865 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.865 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.865 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.865 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.865 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.865 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.865 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.865 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.865 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.865 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.875 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebSockets.i3475fl55i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fixxlx5x95-{0}-i3475fl55i-i3475fl55i.gz' -2026-01-28 14:11:00.875 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.875 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebSockets.i3475fl55i.wasm - 200 98629 application/wasm 10.9466ms -2026-01-28 14:11:00.879 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.2jb9y9tls4.wasm - null null -2026-01-28 14:11:00.879 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.879 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.879 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.879 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.879 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.879 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.879 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.879 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.879 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.879 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.879 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.879 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.879 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.879 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.880 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.880 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.880 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.880 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.880 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.880 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.880 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.880 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.889 +03:00 [INF] Sending file. Request path: '_framework/System.Net.2jb9y9tls4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sdhyils1a8-{0}-2jb9y9tls4-2jb9y9tls4.gz' -2026-01-28 14:11:00.889 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.889 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.2jb9y9tls4.wasm - 200 6966 application/wasm 10.4977ms -2026-01-28 14:11:00.894 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Numerics.Vectors.tjoypuu8wa.wasm - null null -2026-01-28 14:11:00.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.895 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.895 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.895 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.895 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.895 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.895 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.896 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.896 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.896 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.896 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.896 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.896 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.896 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.896 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.898 +03:00 [INF] Sending file. Request path: '_framework/System.Numerics.Vectors.tjoypuu8wa.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\52qfucpyv5-{0}-tjoypuu8wa-tjoypuu8wa.gz' -2026-01-28 14:11:00.898 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.898 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Numerics.Vectors.tjoypuu8wa.wasm - 200 5430 application/wasm 4.2787ms -2026-01-28 14:11:00.903 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Numerics.zb6snwiiqo.wasm - null null -2026-01-28 14:11:00.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.903 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.903 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.903 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.903 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.903 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.903 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.904 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.904 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.904 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.904 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.904 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.904 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.904 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.904 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.914 +03:00 [INF] Sending file. Request path: '_framework/System.Numerics.zb6snwiiqo.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3mhjbwzot4-{0}-zb6snwiiqo-zb6snwiiqo.gz' -2026-01-28 14:11:00.914 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.914 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Numerics.zb6snwiiqo.wasm - 200 4918 application/wasm 11.4177ms -2026-01-28 14:11:00.918 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ObjectModel.qra8ipv6cl.wasm - null null -2026-01-28 14:11:00.919 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.919 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.919 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.919 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.919 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.919 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.919 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.919 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.919 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.919 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.919 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.919 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.919 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.919 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.919 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.919 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.919 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.919 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.919 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.919 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.919 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.919 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.930 +03:00 [INF] Sending file. Request path: '_framework/System.ObjectModel.qra8ipv6cl.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\69h7jimh8b-{0}-qra8ipv6cl-qra8ipv6cl.gz' -2026-01-28 14:11:00.930 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.930 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ObjectModel.qra8ipv6cl.wasm - 200 31030 application/wasm 11.755ms -2026-01-28 14:11:00.934 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.DataContractSerialization.cdaesawoob.wasm - null null -2026-01-28 14:11:00.935 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.935 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.935 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.935 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.935 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.935 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.935 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.935 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.935 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.935 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.935 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.935 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.935 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.935 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.935 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.935 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.935 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.935 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.935 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.935 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.935 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.935 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.948 +03:00 [INF] Sending file. Request path: '_framework/System.Private.DataContractSerialization.cdaesawoob.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xukodscfdt-{0}-cdaesawoob-cdaesawoob.gz' -2026-01-28 14:11:00.948 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.948 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.DataContractSerialization.cdaesawoob.wasm - 200 849331 application/wasm 14.1049ms -2026-01-28 14:11:00.962 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.Uri.d7c7uu4en8.wasm - null null -2026-01-28 14:11:00.962 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.963 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:00.963 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:00.963 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:00.963 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.963 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:00.963 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:00.963 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:00.963 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:00.963 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:00.963 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:00.963 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.963 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:00.963 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:00.963 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:00.963 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:00.963 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:00.963 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:00.963 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:00.963 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:00.963 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:00.964 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.976 +03:00 [INF] Sending file. Request path: '_framework/System.Private.Uri.d7c7uu4en8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ru8d7hu3hx-{0}-d7c7uu4en8-d7c7uu4en8.gz' -2026-01-28 14:11:00.976 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:00.976 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.Uri.d7c7uu4en8.wasm - 200 95040 application/wasm 13.7506ms -2026-01-28 14:11:01.002 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.Xml.Linq.yklun9npsh.wasm - null null -2026-01-28 14:11:01.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.003 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.003 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.003 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.003 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.003 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.003 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.003 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.003 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.003 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.003 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.003 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.003 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.003 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.003 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.003 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.003 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.003 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.003 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.003 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.003 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.003 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.016 +03:00 [INF] Sending file. Request path: '_framework/System.Private.Xml.Linq.yklun9npsh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wby45u92ah-{0}-yklun9npsh-yklun9npsh.gz' -2026-01-28 14:11:01.016 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.016 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.Xml.Linq.yklun9npsh.wasm - 200 143690 application/wasm 14.1289ms -2026-01-28 14:11:01.020 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.Xml.8fl2owujec.wasm - null null -2026-01-28 14:11:01.021 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.021 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.021 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.021 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.021 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.021 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.021 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.021 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.021 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.021 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.021 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.021 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.021 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.021 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.022 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.022 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.022 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.022 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.022 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.022 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.022 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.022 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.048 +03:00 [INF] Sending file. Request path: '_framework/System.Private.Xml.8fl2owujec.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4tw2sl7qh6-{0}-8fl2owujec-8fl2owujec.gz' -2026-01-28 14:11:01.048 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.048 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.Xml.8fl2owujec.wasm - 200 3096336 application/wasm 27.944ms -2026-01-28 14:11:01.077 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.DispatchProxy.dur3huf884.wasm - null null -2026-01-28 14:11:01.078 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.078 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.078 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.078 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.078 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.078 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.078 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.078 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.078 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.078 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.078 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.078 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.078 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.078 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.079 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.079 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.079 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.079 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.079 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.079 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.079 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.079 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.090 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.DispatchProxy.dur3huf884.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1vtfgkdvnc-{0}-dur3huf884-dur3huf884.gz' -2026-01-28 14:11:01.090 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.090 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.DispatchProxy.dur3huf884.wasm - 200 27958 application/wasm 12.6057ms -2026-01-28 14:11:01.095 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.ILGeneration.pei97jn90w.wasm - null null -2026-01-28 14:11:01.096 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.096 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.096 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.096 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.096 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.096 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.096 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.096 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.096 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.096 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.096 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.096 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.096 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.096 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.096 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.096 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.096 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.096 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.096 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.096 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.096 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.097 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.099 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Emit.ILGeneration.pei97jn90w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v1gyf0d1ub-{0}-pei97jn90w-pei97jn90w.gz' -2026-01-28 14:11:01.099 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.099 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.ILGeneration.pei97jn90w.wasm - 200 5430 application/wasm 4.0095ms -2026-01-28 14:11:01.104 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.Lightweight.ywsyqlj9p1.wasm - null null -2026-01-28 14:11:01.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.105 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.105 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.105 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.105 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.105 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.105 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.106 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.106 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.106 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.106 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.106 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.106 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.106 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.106 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.108 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Emit.Lightweight.ywsyqlj9p1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fhnd5yeiv1-{0}-ywsyqlj9p1-ywsyqlj9p1.gz' -2026-01-28 14:11:01.108 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.109 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.Lightweight.ywsyqlj9p1.wasm - 200 5430 application/wasm 4.7039ms -2026-01-28 14:11:01.114 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.tumhikm19o.wasm - null null -2026-01-28 14:11:01.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.114 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.114 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.114 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.114 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.114 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.114 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.115 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.115 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.115 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.115 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.115 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.115 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.115 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.115 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.128 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Emit.tumhikm19o.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vgtdlzmyp9-{0}-tumhikm19o-tumhikm19o.gz' -2026-01-28 14:11:01.128 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.128 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.tumhikm19o.wasm - 200 122693 application/wasm 14.0681ms -2026-01-28 14:11:01.132 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Extensions.z98cfn5ig8.wasm - null null -2026-01-28 14:11:01.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.132 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.132 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.132 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.132 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.132 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.132 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.133 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.133 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.133 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.133 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.133 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.133 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.133 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.133 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.144 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Extensions.z98cfn5ig8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5188hd084t-{0}-z98cfn5ig8-z98cfn5ig8.gz' -2026-01-28 14:11:01.144 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.144 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Extensions.z98cfn5ig8.wasm - 200 4918 application/wasm 12.4758ms -2026-01-28 14:11:01.148 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Metadata.j4t1n1ywxj.wasm - null null -2026-01-28 14:11:01.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.149 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.149 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.149 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.149 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.149 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.149 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.149 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.149 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.149 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.149 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.149 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.149 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.149 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.149 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.163 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Metadata.j4t1n1ywxj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ih2v39fwix-{0}-j4t1n1ywxj-j4t1n1ywxj.gz' -2026-01-28 14:11:01.163 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.163 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Metadata.j4t1n1ywxj.wasm - 200 493441 application/wasm 14.9615ms -2026-01-28 14:11:01.169 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Primitives.p4ntci6hk7.wasm - null null -2026-01-28 14:11:01.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.169 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.170 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.170 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.170 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.170 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.170 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.170 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.170 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.170 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.170 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.170 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.170 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.170 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.170 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.170 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.170 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.170 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.170 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.170 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.170 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.170 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.173 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Primitives.p4ntci6hk7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\z9kjf4ns5o-{0}-p4ntci6hk7-p4ntci6hk7.gz' -2026-01-28 14:11:01.173 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.173 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Primitives.p4ntci6hk7.wasm - 200 5430 application/wasm 4.0247ms -2026-01-28 14:11:01.178 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.TypeExtensions.puzzlnwex2.wasm - null null -2026-01-28 14:11:01.179 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.179 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.179 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.179 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.179 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.179 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.179 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.179 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.179 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.179 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.179 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.179 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.179 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.179 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.179 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.179 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.179 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.179 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.179 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.179 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.179 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.179 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.191 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.TypeExtensions.puzzlnwex2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7ukk8euu3c-{0}-puzzlnwex2-puzzlnwex2.gz' -2026-01-28 14:11:01.191 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.191 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.TypeExtensions.puzzlnwex2.wasm - 200 14134 application/wasm 13.0747ms -2026-01-28 14:11:01.197 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.lt32pnnkzd.wasm - null null -2026-01-28 14:11:01.198 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.198 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.198 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.198 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.198 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.198 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.198 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.198 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.198 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.198 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.198 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.198 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.198 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.198 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.198 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.198 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.198 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.198 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.198 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.198 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.198 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.198 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.200 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.lt32pnnkzd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5zfqu7bsm3-{0}-lt32pnnkzd-lt32pnnkzd.gz' -2026-01-28 14:11:01.200 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.200 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.lt32pnnkzd.wasm - 200 5942 application/wasm 3.3313ms -2026-01-28 14:11:01.205 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Resources.Reader.c8jfsntxbn.wasm - null null -2026-01-28 14:11:01.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.206 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.206 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.206 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.206 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.206 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.206 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.206 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.206 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.206 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.206 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.206 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.206 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.206 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.207 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.219 +03:00 [INF] Sending file. Request path: '_framework/System.Resources.Reader.c8jfsntxbn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5fcb3hbz6f-{0}-c8jfsntxbn-c8jfsntxbn.gz' -2026-01-28 14:11:01.219 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.219 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Resources.Reader.c8jfsntxbn.wasm - 200 4918 application/wasm 13.9337ms -2026-01-28 14:11:01.224 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Resources.ResourceManager.q30psrnl7u.wasm - null null -2026-01-28 14:11:01.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.225 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.225 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.225 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.225 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.225 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.225 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.226 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.226 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.226 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.226 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.226 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.226 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.226 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.226 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.228 +03:00 [INF] Sending file. Request path: '_framework/System.Resources.ResourceManager.q30psrnl7u.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\k3xfrex2pp-{0}-q30psrnl7u-q30psrnl7u.gz' -2026-01-28 14:11:01.228 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.228 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Resources.ResourceManager.q30psrnl7u.wasm - 200 5430 application/wasm 3.5512ms -2026-01-28 14:11:01.233 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Resources.Writer.wvyn0j1lcg.wasm - null null -2026-01-28 14:11:01.234 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.234 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.234 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.234 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.234 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.234 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.234 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.234 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.234 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.234 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.234 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.234 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.234 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.234 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.234 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.234 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.234 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.234 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.234 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.234 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.234 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.235 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.247 +03:00 [INF] Sending file. Request path: '_framework/System.Resources.Writer.wvyn0j1lcg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wsg9isam35-{0}-wvyn0j1lcg-wvyn0j1lcg.gz' -2026-01-28 14:11:01.247 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.248 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Resources.Writer.wvyn0j1lcg.wasm - 200 16694 application/wasm 14.1273ms -2026-01-28 14:11:01.252 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.CompilerServices.Unsafe.djrvtrz9tb.wasm - null null -2026-01-28 14:11:01.253 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.253 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.253 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.253 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.253 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.253 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.253 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.253 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.253 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.253 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.253 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.253 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.253 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.253 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.253 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.253 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.253 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.253 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.253 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.253 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.253 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.253 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.256 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.CompilerServices.Unsafe.djrvtrz9tb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\smsvmq9glf-{0}-djrvtrz9tb-djrvtrz9tb.gz' -2026-01-28 14:11:01.256 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.256 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.CompilerServices.Unsafe.djrvtrz9tb.wasm - 200 4918 application/wasm 4.1173ms -2026-01-28 14:11:01.262 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.CompilerServices.VisualC.luekj4crl6.wasm - null null -2026-01-28 14:11:01.263 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.263 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.263 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.263 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.263 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.263 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.263 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.263 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.263 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.263 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.263 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.263 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.263 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.263 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.263 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.263 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.263 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.263 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.263 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.263 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.263 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.264 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.266 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.CompilerServices.VisualC.luekj4crl6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\w5clnjen17-{0}-luekj4crl6-luekj4crl6.gz' -2026-01-28 14:11:01.266 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.266 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.CompilerServices.VisualC.luekj4crl6.wasm - 200 6966 application/wasm 3.3697ms -2026-01-28 14:11:01.271 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Extensions.d5mymlulmr.wasm - null null -2026-01-28 14:11:01.272 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.272 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.272 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.272 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.272 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.272 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.272 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.272 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.272 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.272 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.272 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.272 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.272 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.272 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.272 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.272 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.272 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.272 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.272 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.272 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.272 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.272 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.274 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Extensions.d5mymlulmr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n6jkmkc1vw-{0}-d5mymlulmr-d5mymlulmr.gz' -2026-01-28 14:11:01.274 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.275 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Extensions.d5mymlulmr.wasm - 200 7478 application/wasm 3.5756ms -2026-01-28 14:11:01.280 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Handles.ih3cmfwxzd.wasm - null null -2026-01-28 14:11:01.281 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.281 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.281 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.281 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.281 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.281 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.281 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.281 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.281 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.281 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.281 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.281 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.281 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.281 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.281 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.281 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.281 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.281 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.281 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.281 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.281 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.281 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.283 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Handles.ih3cmfwxzd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2b53wjzpk1-{0}-ih3cmfwxzd-ih3cmfwxzd.gz' -2026-01-28 14:11:01.283 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.283 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Handles.ih3cmfwxzd.wasm - 200 5430 application/wasm 2.9452ms -2026-01-28 14:11:01.288 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.RuntimeInformation.nvwt5l6jkw.wasm - null null -2026-01-28 14:11:01.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.288 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.288 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.288 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.288 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.289 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.289 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.289 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.289 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.289 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.289 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.289 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.289 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.289 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.289 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.289 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.289 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.289 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.289 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.289 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.289 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.289 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.291 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.InteropServices.RuntimeInformation.nvwt5l6jkw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5rxlvv130r-{0}-nvwt5l6jkw-nvwt5l6jkw.gz' -2026-01-28 14:11:01.291 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.292 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.RuntimeInformation.nvwt5l6jkw.wasm - 200 4918 application/wasm 3.9546ms -2026-01-28 14:11:01.297 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.0us88a4qml.wasm - null null -2026-01-28 14:11:01.297 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.297 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.297 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.297 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.297 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.297 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.297 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.297 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.297 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.297 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.297 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.297 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.297 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.297 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.298 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.298 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.298 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.298 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.298 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.298 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.298 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.298 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.310 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.InteropServices.0us88a4qml.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\t1e5pdefro-{0}-0us88a4qml-0us88a4qml.gz' -2026-01-28 14:11:01.310 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.311 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.0us88a4qml.wasm - 200 54587 application/wasm 13.9725ms -2026-01-28 14:11:01.315 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Intrinsics.bd7qf7pr2d.wasm - null null -2026-01-28 14:11:01.315 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.316 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.316 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.316 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.316 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.316 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.316 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.316 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.316 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.316 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.316 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.316 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.316 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.316 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.316 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.316 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.316 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.316 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.316 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.316 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.316 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.316 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.318 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Intrinsics.bd7qf7pr2d.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\q8hyt22w7t-{0}-bd7qf7pr2d-bd7qf7pr2d.gz' -2026-01-28 14:11:01.318 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.318 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Intrinsics.bd7qf7pr2d.wasm - 200 6966 application/wasm 3.1445ms -2026-01-28 14:11:01.324 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Loader.opo019ewpt.wasm - null null -2026-01-28 14:11:01.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.324 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.324 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.324 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.324 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.324 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.324 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.325 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.325 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.325 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.325 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.325 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.325 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.325 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.325 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.327 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Loader.opo019ewpt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lulkrkawwl-{0}-opo019ewpt-opo019ewpt.gz' -2026-01-28 14:11:01.327 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.327 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Loader.opo019ewpt.wasm - 200 5430 application/wasm 3.6339ms -2026-01-28 14:11:01.332 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Numerics.opgppvbdi6.wasm - null null -2026-01-28 14:11:01.333 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.333 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.333 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.333 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.333 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.333 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.333 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.333 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.333 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.333 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.333 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.333 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.333 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.333 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.333 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.333 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.333 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.333 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.333 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.333 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.333 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.333 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.348 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Numerics.opgppvbdi6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\15lzitxs0t-{0}-opgppvbdi6-opgppvbdi6.gz' -2026-01-28 14:11:01.348 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.348 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Numerics.opgppvbdi6.wasm - 200 134986 application/wasm 15.661ms -2026-01-28 14:11:01.359 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Formatters.seonqd55ks.wasm - null null -2026-01-28 14:11:01.360 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.360 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.360 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.360 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.360 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.360 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.360 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.360 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.360 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.360 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.360 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.360 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.360 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.360 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.360 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.360 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.360 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.360 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.360 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.360 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.360 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.360 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.371 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.Formatters.seonqd55ks.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n0v9yl0jh6-{0}-seonqd55ks-seonqd55ks.gz' -2026-01-28 14:11:01.371 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.371 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Formatters.seonqd55ks.wasm - 200 55611 application/wasm 12.2266ms -2026-01-28 14:11:01.377 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Json.zn0mp7kdmp.wasm - null null -2026-01-28 14:11:01.377 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.377 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.377 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.377 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.377 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.378 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.378 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.378 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.378 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.378 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.378 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.378 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.378 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.378 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.378 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.378 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.378 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.378 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.378 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.378 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.378 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.378 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.380 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.Json.zn0mp7kdmp.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wh4w9dsljz-{0}-zn0mp7kdmp-zn0mp7kdmp.gz' -2026-01-28 14:11:01.380 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.380 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Json.zn0mp7kdmp.wasm - 200 5430 application/wasm 3.9025ms -2026-01-28 14:11:01.385 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Primitives.yueinvlj2j.wasm - null null -2026-01-28 14:11:01.385 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.386 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.386 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.386 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.386 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.386 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.386 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.386 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.386 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.386 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.386 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.386 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.386 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.386 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.386 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.386 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.386 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.386 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.386 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.386 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.386 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.386 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.398 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.Primitives.yueinvlj2j.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n1gdasegta-{0}-yueinvlj2j-yueinvlj2j.gz' -2026-01-28 14:11:01.398 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.398 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Primitives.yueinvlj2j.wasm - 200 13110 application/wasm 12.8257ms -2026-01-28 14:11:01.403 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Xml.v8gymdawqg.wasm - null null -2026-01-28 14:11:01.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.403 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.403 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.404 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.404 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.404 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.404 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.404 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.404 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.404 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.404 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.415 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.Xml.v8gymdawqg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j0zo8hxl7f-{0}-v8gymdawqg-v8gymdawqg.gz' -2026-01-28 14:11:01.415 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.415 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Xml.v8gymdawqg.wasm - 200 6454 application/wasm 12.4436ms -2026-01-28 14:11:01.425 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.gs7sg0u955.wasm - null null -2026-01-28 14:11:01.426 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.426 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.426 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.426 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.426 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.426 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.426 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.426 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.426 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.426 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.426 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.426 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.426 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.426 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.426 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.426 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.426 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.426 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.426 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.426 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.426 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.427 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.429 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.gs7sg0u955.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c9urnolypd-{0}-gs7sg0u955-gs7sg0u955.gz' -2026-01-28 14:11:01.429 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.429 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.gs7sg0u955.wasm - 200 6966 application/wasm 3.5779ms -2026-01-28 14:11:01.433 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.6bp69qbwkj.wasm - null null -2026-01-28 14:11:01.434 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.434 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.434 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.434 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.434 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.434 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.434 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.434 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.434 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.434 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.434 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.434 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.434 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.434 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.434 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.434 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.434 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.434 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.434 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.434 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.434 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.434 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.449 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.6bp69qbwkj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\35jd1dce24-{0}-6bp69qbwkj-6bp69qbwkj.gz' -2026-01-28 14:11:01.449 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.449 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.6bp69qbwkj.wasm - 200 34619 application/wasm 15.7067ms -2026-01-28 14:11:01.453 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.AccessControl.6rjkcrpkiw.wasm - null null -2026-01-28 14:11:01.454 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.454 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.454 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.454 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.454 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.454 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.454 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.454 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.454 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.454 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.454 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.454 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.454 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.454 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.454 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.454 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.454 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.454 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.454 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.454 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.454 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.455 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.466 +03:00 [INF] Sending file. Request path: '_framework/System.Security.AccessControl.6rjkcrpkiw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ad9pnuyu1n-{0}-6rjkcrpkiw-6rjkcrpkiw.gz' -2026-01-28 14:11:01.466 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.466 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.AccessControl.6rjkcrpkiw.wasm - 200 47931 application/wasm 12.8913ms -2026-01-28 14:11:01.471 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Claims.hk3ae85l96.wasm - null null -2026-01-28 14:11:01.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.472 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.472 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.472 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.472 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.472 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.472 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.472 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.472 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.472 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.472 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.472 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.472 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.472 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.473 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.485 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Claims.hk3ae85l96.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vbfh1norfg-{0}-hk3ae85l96-hk3ae85l96.gz' -2026-01-28 14:11:01.485 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.485 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Claims.hk3ae85l96.wasm - 200 44859 application/wasm 13.9519ms -2026-01-28 14:11:01.490 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Algorithms.whyyu092ah.wasm - null null -2026-01-28 14:11:01.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.491 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.491 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.491 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.491 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.491 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.491 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.491 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.491 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.491 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.491 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.491 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.491 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.491 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.492 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.494 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Algorithms.whyyu092ah.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lts4eaytip-{0}-whyyu092ah-whyyu092ah.gz' -2026-01-28 14:11:01.494 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.494 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Algorithms.whyyu092ah.wasm - 200 6966 application/wasm 3.8348ms -2026-01-28 14:11:01.499 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Cng.m6se2pcpu2.wasm - null null -2026-01-28 14:11:01.500 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.500 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.500 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.500 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.500 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.500 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.500 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.500 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.500 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.500 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.500 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.500 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.500 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.500 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.501 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.501 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.501 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.501 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.501 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.501 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.501 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.501 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.503 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Cng.m6se2pcpu2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fe4hdxl6xd-{0}-m6se2pcpu2-m6se2pcpu2.gz' -2026-01-28 14:11:01.503 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.503 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Cng.m6se2pcpu2.wasm - 200 5942 application/wasm 3.3387ms -2026-01-28 14:11:01.508 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Csp.hhoaoktf3s.wasm - null null -2026-01-28 14:11:01.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.509 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.509 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.509 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.509 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.509 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.509 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.509 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.509 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.510 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.510 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.510 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.510 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.510 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.510 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.512 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Csp.hhoaoktf3s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\e6c5growx5-{0}-hhoaoktf3s-hhoaoktf3s.gz' -2026-01-28 14:11:01.512 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.512 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Csp.hhoaoktf3s.wasm - 200 5942 application/wasm 4.0318ms -2026-01-28 14:11:01.516 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Encoding.52vboi33gw.wasm - null null -2026-01-28 14:11:01.517 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.517 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.517 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.517 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.517 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.517 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.517 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.517 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.517 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.517 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.517 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.517 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.517 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.517 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.517 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.517 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.517 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.517 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.517 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.517 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.517 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.517 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.531 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Encoding.52vboi33gw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9nnkgpt0mz-{0}-52vboi33gw-52vboi33gw.gz' -2026-01-28 14:11:01.531 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.531 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Encoding.52vboi33gw.wasm - 200 5430 application/wasm 14.7361ms -2026-01-28 14:11:01.535 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.OpenSsl.ml0tyz68i8.wasm - null null -2026-01-28 14:11:01.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.536 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.536 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.536 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.536 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.536 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.536 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.536 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.536 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.536 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.537 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.539 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.OpenSsl.ml0tyz68i8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ggd18ngby9-{0}-ml0tyz68i8-ml0tyz68i8.gz' -2026-01-28 14:11:01.539 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.539 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.OpenSsl.ml0tyz68i8.wasm - 200 5430 application/wasm 3.7733ms -2026-01-28 14:11:01.544 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Primitives.1dlu2dh7y8.wasm - null null -2026-01-28 14:11:01.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.545 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.545 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.545 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.545 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.545 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.545 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.545 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.545 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.545 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.545 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.545 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.545 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.545 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.546 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.547 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Primitives.1dlu2dh7y8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ibvt59z0m8-{0}-1dlu2dh7y8-1dlu2dh7y8.gz' -2026-01-28 14:11:01.547 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.548 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Primitives.1dlu2dh7y8.wasm - 200 5430 application/wasm 3.2283ms -2026-01-28 14:11:01.552 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.X509Certificates.6uh0qispd4.wasm - null null -2026-01-28 14:11:01.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.552 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.552 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.552 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.552 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.552 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.552 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.553 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.553 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.553 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.553 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.553 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.553 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.553 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.553 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.555 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.X509Certificates.6uh0qispd4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kv01n2x7di-{0}-6uh0qispd4-6uh0qispd4.gz' -2026-01-28 14:11:01.555 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.556 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.X509Certificates.6uh0qispd4.wasm - 200 6454 application/wasm 3.8761ms -2026-01-28 14:11:01.561 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.mbts90zzn6.wasm - null null -2026-01-28 14:11:01.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.562 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.562 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.562 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.562 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.562 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.562 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.562 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.562 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.562 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.562 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.576 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.mbts90zzn6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\najz3idkx9-{0}-mbts90zzn6-mbts90zzn6.gz' -2026-01-28 14:11:01.576 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.576 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.mbts90zzn6.wasm - 200 642453 application/wasm 14.5102ms -2026-01-28 14:11:01.583 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Principal.Windows.rp57epmxji.wasm - null null -2026-01-28 14:11:01.584 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.584 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.584 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.584 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.584 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.584 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.584 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.584 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.584 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.584 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.584 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.584 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.584 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.584 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.585 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.585 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.585 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.585 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.585 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.585 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.585 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.585 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.596 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Principal.Windows.rp57epmxji.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6c4gn33xif-{0}-rp57epmxji-rp57epmxji.gz' -2026-01-28 14:11:01.597 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.597 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Principal.Windows.rp57epmxji.wasm - 200 27446 application/wasm 13.3464ms -2026-01-28 14:11:01.601 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Principal.0lplkfn42e.wasm - null null -2026-01-28 14:11:01.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.602 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.602 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.602 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.602 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.602 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.602 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.602 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.602 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.602 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.602 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.604 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Principal.0lplkfn42e.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bapixjfy1p-{0}-0lplkfn42e-0lplkfn42e.gz' -2026-01-28 14:11:01.604 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.604 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Principal.0lplkfn42e.wasm - 200 4918 application/wasm 3.0947ms -2026-01-28 14:11:01.609 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.SecureString.dhwpww24h2.wasm - null null -2026-01-28 14:11:01.610 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.610 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.610 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.610 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.610 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.610 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.610 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.610 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.610 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.610 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.610 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.610 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.610 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.610 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.611 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.611 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.611 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.611 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.611 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.611 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.611 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.611 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.613 +03:00 [INF] Sending file. Request path: '_framework/System.Security.SecureString.dhwpww24h2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\z7kpj97i3q-{0}-dhwpww24h2-dhwpww24h2.gz' -2026-01-28 14:11:01.613 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.613 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.SecureString.dhwpww24h2.wasm - 200 5430 application/wasm 3.8966ms -2026-01-28 14:11:01.618 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.l9hsxb0sdk.wasm - null null -2026-01-28 14:11:01.618 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.618 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.618 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.618 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.618 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.619 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.619 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.619 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.619 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.619 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.619 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.619 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.619 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.619 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.619 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.621 +03:00 [INF] Sending file. Request path: '_framework/System.Security.l9hsxb0sdk.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4w9pau8lca-{0}-l9hsxb0sdk-l9hsxb0sdk.gz' -2026-01-28 14:11:01.621 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.621 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.l9hsxb0sdk.wasm - 200 7990 application/wasm 3.4755ms -2026-01-28 14:11:01.626 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ServiceModel.Web.zcvkay2idv.wasm - null null -2026-01-28 14:11:01.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.627 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.628 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.628 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.628 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.628 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.628 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.628 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.628 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.628 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.628 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.628 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.628 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.628 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.628 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.628 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.628 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.628 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.628 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.628 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.628 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.628 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.630 +03:00 [INF] Sending file. Request path: '_framework/System.ServiceModel.Web.zcvkay2idv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wy542848av-{0}-zcvkay2idv-zcvkay2idv.gz' -2026-01-28 14:11:01.630 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.630 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ServiceModel.Web.zcvkay2idv.wasm - 200 6454 application/wasm 3.5595ms -2026-01-28 14:11:01.635 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ServiceProcess.x10kdcthsy.wasm - null null -2026-01-28 14:11:01.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.635 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.635 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.635 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.635 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.635 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.635 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.636 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.636 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.636 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.636 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.636 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.636 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.636 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.636 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.637 +03:00 [INF] Sending file. Request path: '_framework/System.ServiceProcess.x10kdcthsy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2yoiew09ss-{0}-x10kdcthsy-x10kdcthsy.gz' -2026-01-28 14:11:01.637 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.637 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ServiceProcess.x10kdcthsy.wasm - 200 5430 application/wasm 2.921ms -2026-01-28 14:11:01.642 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.CodePages.36p8aommvy.wasm - null null -2026-01-28 14:11:01.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.643 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.643 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.643 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.643 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.643 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.643 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.643 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.643 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.643 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.643 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.643 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.643 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.643 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.644 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.659 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Encoding.CodePages.36p8aommvy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lrsfp7sbdw-{0}-36p8aommvy-36p8aommvy.gz' -2026-01-28 14:11:01.659 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.659 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.CodePages.36p8aommvy.wasm - 200 732580 application/wasm 16.6258ms -2026-01-28 14:11:01.673 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.Extensions.7s9z475qvj.wasm - null null -2026-01-28 14:11:01.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.673 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.673 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.673 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.673 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.673 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.673 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.673 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.673 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.674 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.674 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.674 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.674 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.674 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.674 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.676 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Encoding.Extensions.7s9z475qvj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ij3a13vyp7-{0}-7s9z475qvj-7s9z475qvj.gz' -2026-01-28 14:11:01.676 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.676 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.Extensions.7s9z475qvj.wasm - 200 5430 application/wasm 3.281ms -2026-01-28 14:11:01.684 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.ldc2rqh80i.wasm - null null -2026-01-28 14:11:01.684 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.685 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.685 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.685 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.685 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.685 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.685 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.685 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.685 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.685 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.685 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.685 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.685 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.685 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.685 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.685 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.685 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.685 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.685 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.685 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.685 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.685 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.687 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Encoding.ldc2rqh80i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\w1z5z4lpop-{0}-ldc2rqh80i-ldc2rqh80i.gz' -2026-01-28 14:11:01.687 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.687 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.ldc2rqh80i.wasm - 200 5430 application/wasm 3.0347ms -2026-01-28 14:11:01.692 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Encodings.Web.8dol48h5sw.wasm - null null -2026-01-28 14:11:01.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.693 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.693 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.693 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.693 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.693 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.693 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.693 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.693 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.693 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.693 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.693 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.693 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.693 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.693 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.704 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Encodings.Web.8dol48h5sw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b5ft8vnha4-{0}-8dol48h5sw-8dol48h5sw.gz' -2026-01-28 14:11:01.704 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.704 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Encodings.Web.8dol48h5sw.wasm - 200 55611 application/wasm 12.2852ms -2026-01-28 14:11:01.709 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Json.3vc5r851ef.wasm - null null -2026-01-28 14:11:01.709 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.710 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.710 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.710 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.710 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.710 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.710 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.710 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.710 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.710 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.710 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.710 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.710 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.710 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.711 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.711 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.711 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.711 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.711 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.711 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.711 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.711 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.725 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Json.3vc5r851ef.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\is1y7e0ewf-{0}-3vc5r851ef-3vc5r851ef.gz' -2026-01-28 14:11:01.725 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.725 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Json.3vc5r851ef.wasm - 200 638869 application/wasm 15.9673ms -2026-01-28 14:11:01.732 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.RegularExpressions.fa55zq7noc.wasm - null null -2026-01-28 14:11:01.733 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.733 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.733 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.733 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.733 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.733 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.733 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.733 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.733 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.733 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.733 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.733 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.733 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.733 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.733 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.733 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.733 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.733 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.733 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.733 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.733 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.733 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.747 +03:00 [INF] Sending file. Request path: '_framework/System.Text.RegularExpressions.fa55zq7noc.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b5e2kemd87-{0}-fa55zq7noc-fa55zq7noc.gz' -2026-01-28 14:11:01.747 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.747 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.RegularExpressions.fa55zq7noc.wasm - 200 374637 application/wasm 14.6622ms -2026-01-28 14:11:01.753 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.AccessControl.0jx6t23d4a.wasm - null null -2026-01-28 14:11:01.754 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.754 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.754 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.754 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.754 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.754 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.754 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.754 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.754 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.754 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.754 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.754 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.754 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.754 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.755 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.755 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.755 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.755 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.755 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.755 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.755 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.755 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.769 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.AccessControl.0jx6t23d4a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7hxeyq70th-{0}-0jx6t23d4a-0jx6t23d4a.gz' -2026-01-28 14:11:01.769 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.769 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.AccessControl.0jx6t23d4a.wasm - 200 23350 application/wasm 15.4592ms -2026-01-28 14:11:01.775 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Channels.5yls0a3tlo.wasm - null null -2026-01-28 14:11:01.775 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.776 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.776 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.776 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.776 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.776 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.776 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.776 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.776 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.776 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.776 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.776 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.776 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.776 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.776 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.791 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Channels.5yls0a3tlo.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\yfc45zghwv-{0}-5yls0a3tlo-5yls0a3tlo.gz' -2026-01-28 14:11:01.791 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.791 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Channels.5yls0a3tlo.wasm - 200 56123 application/wasm 15.7755ms -2026-01-28 14:11:01.797 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Overlapped.7fzdvfjpcj.wasm - null null -2026-01-28 14:11:01.797 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.797 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.797 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.797 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.797 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.797 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.797 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.797 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.797 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.797 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.797 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.797 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.797 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.797 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.798 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.798 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.798 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.798 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.798 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.798 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.798 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.798 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.800 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Overlapped.7fzdvfjpcj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1nn32vjcux-{0}-7fzdvfjpcj-7fzdvfjpcj.gz' -2026-01-28 14:11:01.800 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.800 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Overlapped.7fzdvfjpcj.wasm - 200 5430 application/wasm 3.5857ms -2026-01-28 14:11:01.805 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Dataflow.b1bop2hs5a.wasm - null null -2026-01-28 14:11:01.806 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.806 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.806 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.806 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.806 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.807 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.807 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.807 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.807 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.807 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.807 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.807 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.807 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.807 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.807 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.807 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.807 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.807 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.807 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.807 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.807 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.807 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.826 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Tasks.Dataflow.b1bop2hs5a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bygxarg1od-{0}-b1bop2hs5a-b1bop2hs5a.gz' -2026-01-28 14:11:01.826 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.826 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Dataflow.b1bop2hs5a.wasm - 200 175439 application/wasm 20.6416ms -2026-01-28 14:11:01.832 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Extensions.w1aib1cdwa.wasm - null null -2026-01-28 14:11:01.833 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.833 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.833 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.833 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.833 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.833 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.833 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.833 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.833 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.833 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.833 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.833 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.833 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.833 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.833 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.833 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.833 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.833 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.833 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.833 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.833 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.834 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.836 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Tasks.Extensions.w1aib1cdwa.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wzcconrhmx-{0}-w1aib1cdwa-w1aib1cdwa.gz' -2026-01-28 14:11:01.836 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.836 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Extensions.w1aib1cdwa.wasm - 200 5430 application/wasm 3.8644ms -2026-01-28 14:11:01.842 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Parallel.k09pj8k6wz.wasm - null null -2026-01-28 14:11:01.842 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.842 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.842 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.842 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.842 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.842 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.842 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.842 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.842 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.842 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.842 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.842 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.842 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.842 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.843 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.843 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.843 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.843 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.843 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.843 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.843 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.843 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.855 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Tasks.Parallel.k09pj8k6wz.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\eo71wakl9t-{0}-k09pj8k6wz-k09pj8k6wz.gz' -2026-01-28 14:11:01.855 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.855 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Parallel.k09pj8k6wz.wasm - 200 51003 application/wasm 13.5613ms -2026-01-28 14:11:01.860 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.ixxtp5uj8k.wasm - null null -2026-01-28 14:11:01.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.861 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.861 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.861 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.861 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.861 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.861 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.861 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.861 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.861 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.861 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.861 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.861 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.861 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.861 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.863 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Tasks.ixxtp5uj8k.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dmqlrfwu1b-{0}-ixxtp5uj8k-ixxtp5uj8k.gz' -2026-01-28 14:11:01.863 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.863 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.ixxtp5uj8k.wasm - 200 6454 application/wasm 3.2397ms -2026-01-28 14:11:01.868 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Thread.oikmdgabjt.wasm - null null -2026-01-28 14:11:01.868 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.868 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.868 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.868 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.868 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.868 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.868 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.868 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.868 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.868 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.868 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.868 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.868 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.868 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.869 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.869 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.869 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.869 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.869 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.869 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.869 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.869 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.870 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Thread.oikmdgabjt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v09yqluov3-{0}-oikmdgabjt-oikmdgabjt.gz' -2026-01-28 14:11:01.870 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.871 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Thread.oikmdgabjt.wasm - 200 5430 application/wasm 2.9228ms -2026-01-28 14:11:01.874 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.ThreadPool.szctd5y8bn.wasm - null null -2026-01-28 14:11:01.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.875 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.875 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.875 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.875 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.875 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.875 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.875 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.875 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.875 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.875 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.875 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.875 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.875 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.875 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.877 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.ThreadPool.szctd5y8bn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jfyqp856kd-{0}-szctd5y8bn-szctd5y8bn.gz' -2026-01-28 14:11:01.877 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.877 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.ThreadPool.szctd5y8bn.wasm - 200 5430 application/wasm 2.8562ms -2026-01-28 14:11:01.880 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Timer.k8rrsskw5o.wasm - null null -2026-01-28 14:11:01.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.881 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.881 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.881 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.881 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.881 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.881 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.882 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.882 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.882 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.882 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.882 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.882 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.882 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.882 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.884 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Timer.k8rrsskw5o.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kw1ofqxbky-{0}-k8rrsskw5o-k8rrsskw5o.gz' -2026-01-28 14:11:01.884 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.884 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Timer.k8rrsskw5o.wasm - 200 4918 application/wasm 3.4015ms -2026-01-28 14:11:01.888 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.s2hrn953g9.wasm - null null -2026-01-28 14:11:01.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.888 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.888 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.888 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.911 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.911 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.911 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.911 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.912 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.912 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.912 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.912 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.912 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.912 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.912 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.912 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.912 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.912 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.912 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.912 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.912 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.912 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.922 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.s2hrn953g9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6obifrcy4d-{0}-s2hrn953g9-s2hrn953g9.gz' -2026-01-28 14:11:01.922 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.922 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.s2hrn953g9.wasm - 200 34619 application/wasm 33.9402ms -2026-01-28 14:11:01.926 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Transactions.Local.nufsb5pyrr.wasm - null null -2026-01-28 14:11:01.926 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.926 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.926 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.926 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.926 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.927 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.927 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.927 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.927 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.927 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.927 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.927 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.927 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.927 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.927 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.927 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.927 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.927 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.927 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.927 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.927 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.927 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.939 +03:00 [INF] Sending file. Request path: '_framework/System.Transactions.Local.nufsb5pyrr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vnl4qu3in7-{0}-nufsb5pyrr-nufsb5pyrr.gz' -2026-01-28 14:11:01.939 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.940 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Transactions.Local.nufsb5pyrr.wasm - 200 165711 application/wasm 13.5793ms -2026-01-28 14:11:01.944 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Transactions.3ezo8twol7.wasm - null null -2026-01-28 14:11:01.945 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.945 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.945 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.945 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.945 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.945 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.945 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.945 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.945 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.945 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.945 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.945 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.945 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.945 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.945 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.945 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.945 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.945 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.945 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.945 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.945 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.945 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.956 +03:00 [INF] Sending file. Request path: '_framework/System.Transactions.3ezo8twol7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v8zohqruou-{0}-3ezo8twol7-3ezo8twol7.gz' -2026-01-28 14:11:01.956 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.956 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Transactions.3ezo8twol7.wasm - 200 6454 application/wasm 11.4949ms -2026-01-28 14:11:01.961 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ValueTuple.lle7yi2fzv.wasm - null null -2026-01-28 14:11:01.962 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.962 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.962 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.962 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.962 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.962 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.962 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.962 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.962 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.962 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.962 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.962 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.962 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.962 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.962 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.962 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.963 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.963 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.963 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.963 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.963 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.963 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.965 +03:00 [INF] Sending file. Request path: '_framework/System.ValueTuple.lle7yi2fzv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\io39vdvq9n-{0}-lle7yi2fzv-lle7yi2fzv.gz' -2026-01-28 14:11:01.965 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.965 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ValueTuple.lle7yi2fzv.wasm - 200 5430 application/wasm 4.5608ms -2026-01-28 14:11:01.970 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Web.HttpUtility.u5rdfpwou6.wasm - null null -2026-01-28 14:11:01.971 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.971 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.971 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.971 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.971 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.971 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.971 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.971 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.971 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.971 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.971 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.971 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.971 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.971 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.971 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.971 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.971 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.971 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.971 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.971 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.971 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.972 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.984 +03:00 [INF] Sending file. Request path: '_framework/System.Web.HttpUtility.u5rdfpwou6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rn4buhtgqs-{0}-u5rdfpwou6-u5rdfpwou6.gz' -2026-01-28 14:11:01.984 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.984 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Web.HttpUtility.u5rdfpwou6.wasm - 200 19766 application/wasm 13.5003ms -2026-01-28 14:11:01.989 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Web.wygikf6la5.wasm - null null -2026-01-28 14:11:01.989 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.990 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.990 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.990 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.990 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.990 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.990 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.990 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.990 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.990 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.990 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.990 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.990 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.990 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.990 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.992 +03:00 [INF] Sending file. Request path: '_framework/System.Web.wygikf6la5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ru9f3t39bb-{0}-wygikf6la5-wygikf6la5.gz' -2026-01-28 14:11:01.992 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:01.992 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Web.wygikf6la5.wasm - 200 4918 application/wasm 3.4697ms -2026-01-28 14:11:01.997 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Windows.axtn86mzz6.wasm - null null -2026-01-28 14:11:01.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.998 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:01.998 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:01.998 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:01.998 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.998 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:01.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:01.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:01.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:01.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:01.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:01.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:01.998 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:01.998 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:01.998 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:01.998 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:01.998 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:01.998 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:01.998 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:01.998 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:01.998 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.012 +03:00 [INF] Sending file. Request path: '_framework/System.Windows.axtn86mzz6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1my90r3byi-{0}-axtn86mzz6-axtn86mzz6.gz' -2026-01-28 14:11:02.012 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.013 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Windows.axtn86mzz6.wasm - 200 5430 application/wasm 15.3938ms -2026-01-28 14:11:02.018 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.Linq.j4b5ce3025.wasm - null null -2026-01-28 14:11:02.018 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.018 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.018 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.018 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.018 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.019 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.019 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.019 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.019 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.019 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.019 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.019 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.019 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.019 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.019 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.019 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.019 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.019 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.019 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.019 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.019 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.019 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.033 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.Linq.j4b5ce3025.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2m6czvvsuo-{0}-j4b5ce3025-j4b5ce3025.gz' -2026-01-28 14:11:02.033 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.033 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.Linq.j4b5ce3025.wasm - 200 5430 application/wasm 14.744ms -2026-01-28 14:11:02.038 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.ReaderWriter.60z52rxro3.wasm - null null -2026-01-28 14:11:02.038 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.038 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.038 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.038 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.038 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.038 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.039 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.039 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.039 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.039 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.039 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.039 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.039 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.039 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.039 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.051 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.ReaderWriter.60z52rxro3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rg4isli5jp-{0}-60z52rxro3-60z52rxro3.gz' -2026-01-28 14:11:02.052 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.052 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.ReaderWriter.60z52rxro3.wasm - 200 11574 application/wasm 14.029ms -2026-01-28 14:11:02.057 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.Serialization.pm5yw3aolk.wasm - null null -2026-01-28 14:11:02.057 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.057 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.057 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.057 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.057 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.057 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.057 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.057 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.057 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.057 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.057 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.057 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.057 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.057 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.058 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.058 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.058 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.058 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.058 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.058 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.058 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.058 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.069 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.Serialization.pm5yw3aolk.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\o41cy5pfaz-{0}-pm5yw3aolk-pm5yw3aolk.gz' -2026-01-28 14:11:02.069 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.069 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.Serialization.pm5yw3aolk.wasm - 200 5942 application/wasm 12.4787ms -2026-01-28 14:11:02.074 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XDocument.b4xtw4lbmx.wasm - null null -2026-01-28 14:11:02.075 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.075 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.075 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.075 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.075 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.075 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.075 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.075 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.075 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.075 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.075 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.075 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.075 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.075 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.075 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.075 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.075 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.075 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.075 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.075 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.075 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.076 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.078 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XDocument.b4xtw4lbmx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\veh6k128ug-{0}-b4xtw4lbmx-b4xtw4lbmx.gz' -2026-01-28 14:11:02.078 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.078 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XDocument.b4xtw4lbmx.wasm - 200 5430 application/wasm 3.7548ms -2026-01-28 14:11:02.082 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XPath.XDocument.p6s7bmw3ej.wasm - null null -2026-01-28 14:11:02.082 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.083 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.083 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.083 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.083 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.083 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.083 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.083 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.083 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.083 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.083 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.083 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.083 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.083 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.083 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.083 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.083 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.083 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.083 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.083 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.083 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.083 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.085 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XPath.XDocument.p6s7bmw3ej.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dp2x1o3mj5-{0}-p6s7bmw3ej-p6s7bmw3ej.gz' -2026-01-28 14:11:02.085 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.085 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XPath.XDocument.p6s7bmw3ej.wasm - 200 5430 application/wasm 2.7682ms -2026-01-28 14:11:02.089 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XPath.egozus3d9z.wasm - null null -2026-01-28 14:11:02.090 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.090 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.090 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.090 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.090 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.090 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.090 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.090 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.090 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.090 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.090 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.090 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.090 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.090 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.090 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.090 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.090 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.090 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.090 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.090 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.090 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.090 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.092 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XPath.egozus3d9z.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6kx3a3nw65-{0}-egozus3d9z-egozus3d9z.gz' -2026-01-28 14:11:02.092 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.092 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XPath.egozus3d9z.wasm - 200 5430 application/wasm 3.086ms -2026-01-28 14:11:02.097 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XmlDocument.771pf23z5h.wasm - null null -2026-01-28 14:11:02.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.098 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.098 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.098 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.098 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.098 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.098 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.098 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.098 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.098 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.098 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.100 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XmlDocument.771pf23z5h.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mit9lp1cls-{0}-771pf23z5h-771pf23z5h.gz' -2026-01-28 14:11:02.100 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.100 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XmlDocument.771pf23z5h.wasm - 200 5430 application/wasm 3.2085ms -2026-01-28 14:11:02.105 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XmlSerializer.h0uogtkh03.wasm - null null -2026-01-28 14:11:02.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.105 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.106 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.106 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.106 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.106 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.106 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.106 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.106 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.106 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.106 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.106 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.106 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.106 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.106 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.106 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.106 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.106 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.106 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.106 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.106 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.106 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.108 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XmlSerializer.h0uogtkh03.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6ubynsl46b-{0}-h0uogtkh03-h0uogtkh03.gz' -2026-01-28 14:11:02.108 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.108 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XmlSerializer.h0uogtkh03.wasm - 200 7478 application/wasm 3.3852ms -2026-01-28 14:11:02.113 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.95nan2l20b.wasm - null null -2026-01-28 14:11:02.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.114 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.114 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.114 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.114 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.114 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.114 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.114 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.114 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.114 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.114 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.114 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.114 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.114 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.115 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.125 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.95nan2l20b.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pcooe0k5kk-{0}-95nan2l20b-95nan2l20b.gz' -2026-01-28 14:11:02.125 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.125 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.95nan2l20b.wasm - 200 13110 application/wasm 11.9822ms -2026-01-28 14:11:02.130 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.au65xu8d95.wasm - null null -2026-01-28 14:11:02.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.131 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.131 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.131 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.131 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.131 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.131 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.131 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.131 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.131 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.131 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.131 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.131 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.131 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.131 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.143 +03:00 [INF] Sending file. Request path: '_framework/System.au65xu8d95.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\um28rmltyb-{0}-au65xu8d95-au65xu8d95.gz' -2026-01-28 14:11:02.143 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.143 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.au65xu8d95.wasm - 200 39739 application/wasm 13.0052ms -2026-01-28 14:11:02.148 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/WindowsBase.mi3hkxthj8.wasm - null null -2026-01-28 14:11:02.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.149 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.149 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.149 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.149 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.149 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.149 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.149 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.149 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.149 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.149 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.149 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.149 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.149 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.149 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.151 +03:00 [INF] Sending file. Request path: '_framework/WindowsBase.mi3hkxthj8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8syd5uq41h-{0}-mi3hkxthj8-mi3hkxthj8.gz' -2026-01-28 14:11:02.151 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.151 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/WindowsBase.mi3hkxthj8.wasm - 200 5942 application/wasm 3.0278ms -2026-01-28 14:11:02.156 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/mscorlib.uifnjyorgo.wasm - null null -2026-01-28 14:11:02.156 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.157 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.157 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.157 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.157 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.157 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.157 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.157 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.157 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.157 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.157 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.157 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.157 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.157 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.157 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.157 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.157 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.157 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.157 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.157 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.157 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.157 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.168 +03:00 [INF] Sending file. Request path: '_framework/mscorlib.uifnjyorgo.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xpihquz2r5-{0}-uifnjyorgo-uifnjyorgo.gz' -2026-01-28 14:11:02.168 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.168 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/mscorlib.uifnjyorgo.wasm - 200 49467 application/wasm 12.4186ms -2026-01-28 14:11:02.173 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/netstandard.qvqeanc7qr.wasm - null null -2026-01-28 14:11:02.174 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.174 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.174 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.174 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.174 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.174 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.174 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.174 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.174 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.174 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.174 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.174 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.174 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.174 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.174 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.174 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.174 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.174 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.174 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.174 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.174 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.174 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.188 +03:00 [INF] Sending file. Request path: '_framework/netstandard.qvqeanc7qr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ciukkw19kg-{0}-qvqeanc7qr-qvqeanc7qr.gz' -2026-01-28 14:11:02.188 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.188 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/netstandard.qvqeanc7qr.wasm - 200 90432 application/wasm 14.7856ms -2026-01-28 14:11:02.199 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Application.Contracts.uq8ziq260z.wasm - null null -2026-01-28 14:11:02.199 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.199 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.199 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.199 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.199 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.199 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.199 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.199 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.199 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.199 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.199 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.199 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.199 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.199 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.199 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.199 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.199 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.200 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.200 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.200 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.200 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.200 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.212 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Application.Contracts.uq8ziq260z.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0lm5ebgqof-{0}-uq8ziq260z-uq8ziq260z.gz' -2026-01-28 14:11:02.212 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.212 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Application.Contracts.uq8ziq260z.wasm - 200 8502 application/wasm 13.8159ms -2026-01-28 14:11:02.217 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Domain.Shared.a1r7gug13a.wasm - null null -2026-01-28 14:11:02.217 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.217 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.217 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.217 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.217 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.218 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.218 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.218 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.218 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.218 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.218 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.218 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.218 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.218 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.218 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.229 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Domain.Shared.a1r7gug13a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\qwx72m6fc1-{0}-a1r7gug13a-a1r7gug13a.gz' -2026-01-28 14:11:02.229 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.229 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Domain.Shared.a1r7gug13a.wasm - 200 23350 application/wasm 12.0906ms -2026-01-28 14:11:02.242 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.HttpApi.Client.3wngu4nxgr.wasm - null null -2026-01-28 14:11:02.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.243 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.243 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.243 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.243 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.243 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.244 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.244 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.244 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.244 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.244 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.244 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.244 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.244 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.244 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.244 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.244 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.244 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.244 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.244 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.244 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.244 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.260 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.HttpApi.Client.3wngu4nxgr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\scloparoeu-{0}-3wngu4nxgr-3wngu4nxgr.gz' -2026-01-28 14:11:02.260 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.260 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.HttpApi.Client.3wngu4nxgr.wasm - 200 7990 application/wasm 18.1115ms -2026-01-28 14:11:02.285 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.Application.Contracts.k8182bqsqt.wasm - null null -2026-01-28 14:11:02.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.286 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.286 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.286 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.286 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.286 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.286 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.286 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.286 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.286 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.286 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.286 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.286 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.286 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.287 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.303 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Account.Application.Contracts.k8182bqsqt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lj6k2ntok7-{0}-k8182bqsqt-k8182bqsqt.gz' -2026-01-28 14:11:02.303 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.303 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.Application.Contracts.k8182bqsqt.wasm - 200 182095 application/wasm 17.7478ms -2026-01-28 14:11:02.311 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.HttpApi.Client.tyjyiionpp.wasm - null null -2026-01-28 14:11:02.311 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.312 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.312 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.312 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.312 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.312 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.312 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.312 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.312 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.312 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.312 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.312 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.312 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.312 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.312 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.312 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.312 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.312 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.312 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.312 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.312 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.312 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.326 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Account.HttpApi.Client.tyjyiionpp.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\am5qy7si0d-{0}-tyjyiionpp-tyjyiionpp.gz' -2026-01-28 14:11:02.326 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.326 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.HttpApi.Client.tyjyiionpp.wasm - 200 36667 application/wasm 15.4538ms -2026-01-28 14:11:02.331 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.w8xtoi4w2w.wasm - null null -2026-01-28 14:11:02.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.332 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.332 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.332 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.332 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.333 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.333 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.333 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.333 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.333 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.333 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.333 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.333 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.333 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.333 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.333 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.333 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.333 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.333 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.333 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.333 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.333 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.349 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.w8xtoi4w2w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7rtjnlhdr6-{0}-w8xtoi4w2w-w8xtoi4w2w.gz' -2026-01-28 14:11:02.349 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.349 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.w8xtoi4w2w.wasm - 200 23350 application/wasm 17.8235ms -2026-01-28 14:11:02.355 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.tfobi4ljh9.wasm - null null -2026-01-28 14:11:02.355 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.355 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.355 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.355 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.355 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.356 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.356 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.356 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.356 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.356 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.356 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.356 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.356 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.356 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.356 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.356 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.356 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.356 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.356 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.356 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.356 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.356 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.379 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.tfobi4ljh9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dtw2jvq9ko-{0}-tfobi4ljh9-tfobi4ljh9.gz' -2026-01-28 14:11:02.379 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.379 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.tfobi4ljh9.wasm - 200 49979 application/wasm 24.3921ms -2026-01-28 14:11:02.384 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.v2vsbafrsu.wasm - null null -2026-01-28 14:11:02.384 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.384 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.384 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.384 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.385 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.385 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.385 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.385 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.385 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.385 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.385 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.385 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.385 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.385 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.385 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.385 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.385 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.385 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.385 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.385 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.385 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.385 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.398 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.v2vsbafrsu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\314s0gg35t-{0}-v2vsbafrsu-v2vsbafrsu.gz' -2026-01-28 14:11:02.398 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.398 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.v2vsbafrsu.wasm - 200 31030 application/wasm 14.4065ms -2026-01-28 14:11:02.403 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.g96eihnnrd.wasm - null null -2026-01-28 14:11:02.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.404 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.404 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.404 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.404 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.404 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.404 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.404 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.404 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.404 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.404 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.416 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.g96eihnnrd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xik7tubv32-{0}-g96eihnnrd-g96eihnnrd.gz' -2026-01-28 14:11:02.416 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.416 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.g96eihnnrd.wasm - 200 57659 application/wasm 13.137ms -2026-01-28 14:11:02.420 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.ysnekz4aln.wasm - null null -2026-01-28 14:11:02.421 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.421 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.421 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.421 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.421 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.421 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.421 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.421 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.421 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.421 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.421 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.421 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.421 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.421 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.421 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.421 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.421 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.421 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.421 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.421 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.421 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.421 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.434 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.ysnekz4aln.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\29y4ttn7p6-{0}-ysnekz4aln-ysnekz4aln.gz' -2026-01-28 14:11:02.434 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.434 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.ysnekz4aln.wasm - 200 56635 application/wasm 13.286ms -2026-01-28 14:11:02.438 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.9bxiazim84.wasm - null null -2026-01-28 14:11:02.438 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.438 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.438 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.438 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.438 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.438 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.438 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.438 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.438 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.438 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.438 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.438 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.438 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.438 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.439 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.439 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.439 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.439 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.439 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.439 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.439 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.439 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.451 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.9bxiazim84.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0h6kud88pg-{0}-9bxiazim84-9bxiazim84.gz' -2026-01-28 14:11:02.451 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.451 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.9bxiazim84.wasm - 200 6966 application/wasm 13.2155ms -2026-01-28 14:11:02.456 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.tlnm5w6vzv.wasm - null null -2026-01-28 14:11:02.457 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.457 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.457 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.457 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.457 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.457 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.457 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.457 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.457 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.457 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.457 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.457 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.457 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.457 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.457 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.457 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.457 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.457 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.457 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.457 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.457 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.458 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.468 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.tlnm5w6vzv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\79f9hg2kci-{0}-tlnm5w6vzv-tlnm5w6vzv.gz' -2026-01-28 14:11:02.468 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.468 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.tlnm5w6vzv.wasm - 200 29494 application/wasm 11.9964ms -2026-01-28 14:11:02.473 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.vwbrjkm58i.wasm - null null -2026-01-28 14:11:02.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.473 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.473 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.473 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.473 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.474 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.474 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.474 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.474 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.474 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.474 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.485 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.vwbrjkm58i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v23sh1qt8y-{0}-vwbrjkm58i-vwbrjkm58i.gz' -2026-01-28 14:11:02.485 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.485 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.vwbrjkm58i.wasm - 200 9526 application/wasm 12.8046ms -2026-01-28 14:11:02.490 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.w3letp91lq.wasm - null null -2026-01-28 14:11:02.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.491 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.491 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.491 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.491 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.491 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.491 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.491 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.491 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.491 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.491 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.491 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.491 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.491 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.492 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.504 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.w3letp91lq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5xzpephnhm-{0}-w3letp91lq-w3letp91lq.gz' -2026-01-28 14:11:02.504 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.504 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.w3letp91lq.wasm - 200 9526 application/wasm 13.9633ms -2026-01-28 14:11:02.509 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.3jjfqno7lg.wasm - null null -2026-01-28 14:11:02.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.509 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.509 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.509 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.509 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.509 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.509 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.510 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.510 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.510 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.510 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.510 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.510 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.510 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.510 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.519 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.3jjfqno7lg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wywr70k095-{0}-3jjfqno7lg-3jjfqno7lg.gz' -2026-01-28 14:11:02.520 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.520 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.3jjfqno7lg.wasm - 200 53051 application/wasm 10.8757ms -2026-01-28 14:11:02.524 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Contracts.syr4dyw7am.wasm - null null -2026-01-28 14:11:02.525 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.525 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.525 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.525 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.525 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.525 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.525 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.525 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.525 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.525 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.525 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.525 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.525 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.525 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.525 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.525 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.525 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.525 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.525 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.525 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.525 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.525 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.537 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.Contracts.syr4dyw7am.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ch1l6yg9xg-{0}-syr4dyw7am-syr4dyw7am.gz' -2026-01-28 14:11:02.537 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.537 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Contracts.syr4dyw7am.wasm - 200 32054 application/wasm 12.9346ms -2026-01-28 14:11:02.542 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.bu7idw18jp.wasm - null null -2026-01-28 14:11:02.542 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.542 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.542 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.542 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.542 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.542 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.542 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.542 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.542 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.542 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.542 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.542 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.542 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.542 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.543 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.543 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.543 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.543 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.543 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.543 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.543 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.543 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.556 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.bu7idw18jp.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6qc21ahd0h-{0}-bu7idw18jp-bu7idw18jp.gz' -2026-01-28 14:11:02.556 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.556 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.bu7idw18jp.wasm - 200 24886 application/wasm 14.077ms -2026-01-28 14:11:02.560 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.Contracts.ao19uqfxk1.wasm - null null -2026-01-28 14:11:02.560 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.560 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.561 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.561 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.561 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.561 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.561 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.561 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.561 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.561 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.561 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.561 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.561 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.561 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.561 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.561 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.561 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.561 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.561 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.561 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.561 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.561 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.573 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Auditing.Contracts.ao19uqfxk1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gvrtk0uenw-{0}-ao19uqfxk1-ao19uqfxk1.gz' -2026-01-28 14:11:02.573 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.573 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.Contracts.ao19uqfxk1.wasm - 200 6454 application/wasm 13.295ms -2026-01-28 14:11:02.578 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.96yxua01gc.wasm - null null -2026-01-28 14:11:02.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.578 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.578 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.578 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.578 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.578 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.578 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.579 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.579 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.579 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.579 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.579 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.579 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.579 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.579 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.591 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Auditing.96yxua01gc.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0bpurwxf4x-{0}-96yxua01gc-96yxua01gc.gz' -2026-01-28 14:11:02.591 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.591 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.96yxua01gc.wasm - 200 51003 application/wasm 13.1353ms -2026-01-28 14:11:02.595 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AuditLogging.Domain.Shared.dftqdjnknx.wasm - null null -2026-01-28 14:11:02.596 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.596 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.596 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.596 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.596 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.596 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.596 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.596 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.596 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.596 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.596 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.596 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.596 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.596 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.596 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.596 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.596 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.596 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.596 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.596 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.596 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.596 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.610 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AuditLogging.Domain.Shared.dftqdjnknx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\een9hz6ik5-{0}-dftqdjnknx-dftqdjnknx.gz' -2026-01-28 14:11:02.610 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.610 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AuditLogging.Domain.Shared.dftqdjnknx.wasm - 200 158026 application/wasm 15.0824ms -2026-01-28 14:11:02.615 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.Abstractions.afyzjlgpmi.wasm - null null -2026-01-28 14:11:02.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.616 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.616 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.616 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.616 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.616 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.616 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.616 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.616 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.616 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.616 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.616 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.616 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.616 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.616 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.630 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Authorization.Abstractions.afyzjlgpmi.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mzg3hwxb9z-{0}-afyzjlgpmi-afyzjlgpmi.gz' -2026-01-28 14:11:02.630 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.630 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.Abstractions.afyzjlgpmi.wasm - 200 36155 application/wasm 14.8866ms -2026-01-28 14:11:02.634 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.af69ln5ic4.wasm - null null -2026-01-28 14:11:02.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.635 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.635 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.635 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.635 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.635 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.635 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.635 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.635 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.635 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.635 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.635 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.635 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.635 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.635 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.649 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Authorization.af69ln5ic4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kmfgdovl74-{0}-af69ln5ic4-af69ln5ic4.gz' -2026-01-28 14:11:02.649 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.649 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.af69ln5ic4.wasm - 200 134986 application/wasm 14.8429ms -2026-01-28 14:11:02.655 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.757dvxj4ke.wasm - null null -2026-01-28 14:11:02.655 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.655 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.655 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.655 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.655 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.656 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.656 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.656 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.656 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.656 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.656 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.656 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.656 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.656 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.656 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.656 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.656 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.656 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.656 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.656 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.656 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.656 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.675 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Autofac.757dvxj4ke.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dnh2928fpn-{0}-757dvxj4ke-757dvxj4ke.gz' -2026-01-28 14:11:02.675 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.675 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.757dvxj4ke.wasm - 200 20790 application/wasm 20.8727ms -2026-01-28 14:11:02.680 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.WebAssembly.67r46affwj.wasm - null null -2026-01-28 14:11:02.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.681 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.681 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.681 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.681 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.681 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.681 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.681 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.681 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.681 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.682 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.682 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.682 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.682 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.682 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.695 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Autofac.WebAssembly.67r46affwj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fy88n7o3re-{0}-67r46affwj-67r46affwj.gz' -2026-01-28 14:11:02.695 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.695 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.WebAssembly.67r46affwj.wasm - 200 6454 application/wasm 15.1226ms -2026-01-28 14:11:02.700 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundJobs.Domain.Shared.1ndljj9fe1.wasm - null null -2026-01-28 14:11:02.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.700 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.700 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.700 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.700 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.700 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.700 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.701 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.701 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.701 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.701 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.701 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.701 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.701 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.701 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.712 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BackgroundJobs.Domain.Shared.1ndljj9fe1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\it8pbr6hs7-{0}-1ndljj9fe1-1ndljj9fe1.gz' -2026-01-28 14:11:02.712 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.712 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundJobs.Domain.Shared.1ndljj9fe1.wasm - 200 5430 application/wasm 12.42ms -2026-01-28 14:11:02.717 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundWorkers.2p6fuqijf3.wasm - null null -2026-01-28 14:11:02.717 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.717 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.717 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.717 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.717 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.717 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.717 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.717 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.717 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.717 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.717 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.717 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.717 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.717 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.717 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.717 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.717 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.717 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.717 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.717 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.717 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.718 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.728 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BackgroundWorkers.2p6fuqijf3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tnta0aqntp-{0}-2p6fuqijf3-2p6fuqijf3.gz' -2026-01-28 14:11:02.728 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.728 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundWorkers.2p6fuqijf3.wasm - 200 25398 application/wasm 11.3731ms -2026-01-28 14:11:02.732 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Caching.815cqd6cda.wasm - null null -2026-01-28 14:11:02.733 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.733 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.733 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.733 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.733 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.733 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.733 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.733 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.733 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.733 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.733 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.733 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.733 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.733 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.733 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.733 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.733 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.733 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.733 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.733 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.733 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.733 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.745 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Caching.815cqd6cda.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5pr3wxuvo5-{0}-815cqd6cda-815cqd6cda.gz' -2026-01-28 14:11:02.745 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.745 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Caching.815cqd6cda.wasm - 200 85824 application/wasm 12.5185ms -2026-01-28 14:11:02.750 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Castle.Core.h40m7fuufn.wasm - null null -2026-01-28 14:11:02.750 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.750 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.750 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.750 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.750 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.750 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.750 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.750 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.750 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.750 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.750 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.750 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.750 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.750 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.751 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.751 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.751 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.751 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.751 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.751 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.751 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.751 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.763 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Castle.Core.h40m7fuufn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\f5a40y0td5-{0}-h40m7fuufn-h40m7fuufn.gz' -2026-01-28 14:11:02.763 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.763 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Castle.Core.h40m7fuufn.wasm - 200 11574 application/wasm 13.4142ms -2026-01-28 14:11:02.768 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Core.4xaaeuhx7w.wasm - null null -2026-01-28 14:11:02.768 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.768 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.768 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.768 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.768 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.769 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.769 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.769 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.769 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.769 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.769 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.769 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.769 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.769 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.769 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.769 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.769 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.769 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.769 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.769 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.769 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.769 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.783 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Core.4xaaeuhx7w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\klnckblff1-{0}-4xaaeuhx7w-4xaaeuhx7w.gz' -2026-01-28 14:11:02.783 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.783 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Core.4xaaeuhx7w.wasm - 200 311139 application/wasm 15.3078ms -2026-01-28 14:11:02.805 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Data.xk5nl74k60.wasm - null null -2026-01-28 14:11:02.806 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.806 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.806 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.806 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.806 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.806 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.806 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.806 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.806 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.806 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.806 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.806 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.806 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.806 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.806 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.806 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.806 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.806 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.806 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.806 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.806 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.806 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.819 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Data.xk5nl74k60.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\g2etzqh2n8-{0}-xk5nl74k60-xk5nl74k60.gz' -2026-01-28 14:11:02.820 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.820 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Data.xk5nl74k60.wasm - 200 23862 application/wasm 14.6015ms -2026-01-28 14:11:02.825 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Ddd.Application.Contracts.1kpejy4fde.wasm - null null -2026-01-28 14:11:02.825 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.825 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.825 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.825 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.825 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.825 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.825 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.825 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.825 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.825 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.825 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.825 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.825 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.825 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.826 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.826 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.826 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.826 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.826 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.826 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.826 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.826 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.837 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Ddd.Application.Contracts.1kpejy4fde.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bq3ub7csyu-{0}-1kpejy4fde-1kpejy4fde.gz' -2026-01-28 14:11:02.837 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.837 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Ddd.Application.Contracts.1kpejy4fde.wasm - 200 37691 application/wasm 12.2428ms -2026-01-28 14:11:02.841 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.DistributedLocking.Abstractions.q8g86pl4ti.wasm - null null -2026-01-28 14:11:02.842 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.842 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.842 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.842 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.842 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.842 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.842 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.842 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.842 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.842 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.842 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.842 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.842 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.842 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.842 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.842 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.842 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.842 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.842 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.842 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.842 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.842 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.852 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.DistributedLocking.Abstractions.q8g86pl4ti.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\qe2ghijxui-{0}-q8g86pl4ti-q8g86pl4ti.gz' -2026-01-28 14:11:02.852 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.852 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.DistributedLocking.Abstractions.q8g86pl4ti.wasm - 200 7990 application/wasm 10.3613ms -2026-01-28 14:11:02.856 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.Abstractions.lbrqgul2g3.wasm - null null -2026-01-28 14:11:02.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.856 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.856 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.856 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.856 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.856 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.856 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.856 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.856 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.856 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.856 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.856 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.856 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.856 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.857 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.867 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.EventBus.Abstractions.lbrqgul2g3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\30q391t77y-{0}-lbrqgul2g3-lbrqgul2g3.gz' -2026-01-28 14:11:02.867 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.867 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.Abstractions.lbrqgul2g3.wasm - 200 20278 application/wasm 11.1878ms -2026-01-28 14:11:02.871 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.4naok44xvm.wasm - null null -2026-01-28 14:11:02.872 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.872 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.872 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.872 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.872 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.872 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.872 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.872 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.872 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.872 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.872 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.872 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.872 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.872 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.872 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.872 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.872 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.872 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.872 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.872 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.872 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.872 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.881 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.EventBus.4naok44xvm.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xdn8i8epqw-{0}-4naok44xvm-4naok44xvm.gz' -2026-01-28 14:11:02.881 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.881 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.4naok44xvm.wasm - 200 85824 application/wasm 10.258ms -2026-01-28 14:11:02.885 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ExceptionHandling.ecbhbsp3we.wasm - null null -2026-01-28 14:11:02.886 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.886 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.886 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.886 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.886 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.886 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.886 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.886 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.886 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.886 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.886 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.886 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.886 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.886 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.886 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.886 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.886 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.886 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.886 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.886 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.886 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.886 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.896 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ExceptionHandling.ecbhbsp3we.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\86e1bzf02o-{0}-ecbhbsp3we-ecbhbsp3we.gz' -2026-01-28 14:11:02.896 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.896 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ExceptionHandling.ecbhbsp3we.wasm - 200 79680 application/wasm 11.3318ms -2026-01-28 14:11:02.901 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Application.Contracts.40s1e77e5m.wasm - null null -2026-01-28 14:11:02.901 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.902 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.902 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.902 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.902 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.902 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.902 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.902 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.902 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.902 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.902 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.902 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.902 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.902 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.902 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.902 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.902 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.902 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.914 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Application.Contracts.40s1e77e5m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1k1yaajq7n-{0}-40s1e77e5m-40s1e77e5m.gz' -2026-01-28 14:11:02.914 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.914 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Application.Contracts.40s1e77e5m.wasm - 200 11574 application/wasm 13.2499ms -2026-01-28 14:11:02.918 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.nj1v9irvz8.wasm - null null -2026-01-28 14:11:02.919 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.919 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.919 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.919 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.919 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.919 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.919 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.919 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.919 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.919 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.919 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.919 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.919 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.919 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.919 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.919 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.919 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.919 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.919 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.919 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.919 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.919 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.928 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.nj1v9irvz8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\247hfc7v1l-{0}-nj1v9irvz8-nj1v9irvz8.gz' -2026-01-28 14:11:02.928 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.928 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.nj1v9irvz8.wasm - 200 41275 application/wasm 10.1533ms -2026-01-28 14:11:02.932 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Domain.Shared.b0b5pjfr2i.wasm - null null -2026-01-28 14:11:02.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.933 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.933 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.933 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.933 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.933 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.933 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.933 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.933 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.933 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.933 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.933 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.933 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.933 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.933 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.942 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Domain.Shared.b0b5pjfr2i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nv73dihqbu-{0}-b0b5pjfr2i-b0b5pjfr2i.gz' -2026-01-28 14:11:02.942 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.942 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Domain.Shared.b0b5pjfr2i.wasm - 200 47419 application/wasm 10.0363ms -2026-01-28 14:11:02.946 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.HttpApi.Client.uclbvotalx.wasm - null null -2026-01-28 14:11:02.946 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.946 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.946 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.946 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.946 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.946 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.946 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.946 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.946 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.946 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.946 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.946 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.946 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.946 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.947 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.947 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.947 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.947 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.947 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.947 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.947 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.947 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.959 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.HttpApi.Client.uclbvotalx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5kgd4qlij6-{0}-uclbvotalx-uclbvotalx.gz' -2026-01-28 14:11:02.959 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.959 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.HttpApi.Client.uclbvotalx.wasm - 200 22838 application/wasm 12.9804ms -2026-01-28 14:11:02.981 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Features.wy0y61456s.wasm - null null -2026-01-28 14:11:02.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.981 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.981 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.981 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.981 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.981 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.981 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.982 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.982 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.982 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.982 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.982 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.982 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.982 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.982 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.992 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Features.wy0y61456s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c4f7xcddbd-{0}-wy0y61456s-wy0y61456s.gz' -2026-01-28 14:11:02.992 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:02.992 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Features.wy0y61456s.wasm - 200 71488 application/wasm 11.3445ms -2026-01-28 14:11:02.997 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.GlobalFeatures.hoqe61zskr.wasm - null null -2026-01-28 14:11:02.997 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.997 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:02.997 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:02.997 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:02.997 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.997 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:02.997 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:02.997 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:02.997 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:02.997 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:02.997 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:02.997 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.997 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:02.997 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:02.998 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:02.998 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:02.998 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:02.998 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:02.998 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:02.998 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:02.998 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:02.998 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.010 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.GlobalFeatures.hoqe61zskr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lgshqof3zp-{0}-hoqe61zskr-hoqe61zskr.gz' -2026-01-28 14:11:03.010 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.010 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.GlobalFeatures.hoqe61zskr.wasm - 200 26422 application/wasm 12.9523ms -2026-01-28 14:11:03.014 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Guids.liit7170e2.wasm - null null -2026-01-28 14:11:03.015 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.015 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.015 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.015 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.015 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.015 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.015 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.015 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.015 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.015 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.015 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.015 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.015 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.015 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.015 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.015 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.015 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.015 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.015 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.015 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.015 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.015 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.026 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Guids.liit7170e2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fakjzvu1ye-{0}-liit7170e2-liit7170e2.gz' -2026-01-28 14:11:03.026 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.026 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Guids.liit7170e2.wasm - 200 5942 application/wasm 12.1018ms -2026-01-28 14:11:03.031 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Abstractions.dwudu7bg2j.wasm - null null -2026-01-28 14:11:03.031 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.031 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.031 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.031 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.031 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.032 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.032 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.032 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.032 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.032 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.032 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.032 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.032 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.032 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.032 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.043 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Abstractions.dwudu7bg2j.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\orvt5319bs-{0}-dwudu7bg2j-dwudu7bg2j.gz' -2026-01-28 14:11:03.043 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.043 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Abstractions.dwudu7bg2j.wasm - 200 5942 application/wasm 12.1156ms -2026-01-28 14:11:03.047 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.gvl0zhfcrh.wasm - null null -2026-01-28 14:11:03.048 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.048 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.048 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.048 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.048 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.048 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.048 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.048 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.048 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.048 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.048 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.048 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.048 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.048 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.048 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.048 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.048 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.049 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.049 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.049 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.049 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.049 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.060 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.gvl0zhfcrh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\esehx2q8xm-{0}-gvl0zhfcrh-gvl0zhfcrh.gz' -2026-01-28 14:11:03.060 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.060 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.gvl0zhfcrh.wasm - 200 96576 application/wasm 12.3145ms -2026-01-28 14:11:03.065 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.lpg5d6esbr.wasm - null null -2026-01-28 14:11:03.065 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.065 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.065 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.065 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.065 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.065 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.065 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.065 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.065 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.065 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.065 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.065 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.065 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.065 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.066 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.066 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.066 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.066 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.066 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.066 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.066 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.066 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.077 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.IdentityModel.lpg5d6esbr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\69zsrpzmke-{0}-lpg5d6esbr-lpg5d6esbr.gz' -2026-01-28 14:11:03.077 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.077 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.lpg5d6esbr.wasm - 200 7990 application/wasm 12.5683ms -2026-01-28 14:11:03.082 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.rizl9dmjps.wasm - null null -2026-01-28 14:11:03.082 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.082 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.082 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.082 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.082 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.082 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.082 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.082 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.082 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.082 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.082 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.082 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.082 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.082 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.083 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.083 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.083 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.083 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.083 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.083 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.083 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.083 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.093 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.rizl9dmjps.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\985eczt6cq-{0}-rizl9dmjps-rizl9dmjps.gz' -2026-01-28 14:11:03.093 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.093 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.rizl9dmjps.wasm - 200 10550 application/wasm 11.2839ms -2026-01-28 14:11:03.098 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.wui0lrbb2n.wasm - null null -2026-01-28 14:11:03.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.098 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.098 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.099 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.099 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.099 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.099 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.099 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.099 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.099 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.099 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.110 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.wui0lrbb2n.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\blqvtier8g-{0}-wui0lrbb2n-wui0lrbb2n.gz' -2026-01-28 14:11:03.110 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.110 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.wui0lrbb2n.wasm - 200 54587 application/wasm 12.3623ms -2026-01-28 14:11:03.115 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Application.Contracts.085birxe2b.wasm - null null -2026-01-28 14:11:03.115 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.115 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.115 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.115 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.115 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.115 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.115 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.115 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.115 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.116 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.116 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.116 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.116 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.116 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.116 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.116 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.116 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.116 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.127 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Application.Contracts.085birxe2b.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ru0e3g14jl-{0}-085birxe2b-085birxe2b.gz' -2026-01-28 14:11:03.127 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.127 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Application.Contracts.085birxe2b.wasm - 200 21302 application/wasm 12.1089ms -2026-01-28 14:11:03.132 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.uyv78l0zds.wasm - null null -2026-01-28 14:11:03.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.132 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.132 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.132 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.132 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.132 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.132 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.132 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.132 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.132 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.133 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.133 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.133 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.133 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.133 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.143 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Blazor.MudBlazor.uyv78l0zds.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mcjoi5xqrj-{0}-uyv78l0zds-uyv78l0zds.gz' -2026-01-28 14:11:03.143 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.143 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.uyv78l0zds.wasm - 200 67392 application/wasm 11.3257ms -2026-01-28 14:11:03.147 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.hte2321dzm.wasm - null null -2026-01-28 14:11:03.148 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.148 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.148 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.148 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.148 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.148 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.148 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.148 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.148 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.148 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.148 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.148 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.148 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.148 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.148 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.148 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.148 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.148 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.148 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.148 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.148 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.148 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.159 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.hte2321dzm.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\d0art33lcl-{0}-hte2321dzm-hte2321dzm.gz' -2026-01-28 14:11:03.159 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.159 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.hte2321dzm.wasm - 200 5430 application/wasm 11.6851ms -2026-01-28 14:11:03.164 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Domain.Shared.ymdct2u5om.wasm - null null -2026-01-28 14:11:03.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.164 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.164 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.164 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.164 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.164 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.164 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.164 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.164 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.164 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.164 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.164 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.164 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.164 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.165 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.178 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Domain.Shared.ymdct2u5om.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\o0k8cjq56a-{0}-ymdct2u5om-ymdct2u5om.gz' -2026-01-28 14:11:03.178 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.178 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Domain.Shared.ymdct2u5om.wasm - 200 370029 application/wasm 14.081ms -2026-01-28 14:11:03.187 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.HttpApi.Client.clb4nzb2zs.wasm - null null -2026-01-28 14:11:03.188 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.188 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.188 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.188 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.188 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.188 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.188 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.188 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.188 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.188 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.188 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.188 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.188 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.188 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.188 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.188 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.188 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.188 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.188 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.188 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.188 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.189 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.198 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.HttpApi.Client.clb4nzb2zs.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bj1jtfcis3-{0}-clb4nzb2zs-clb4nzb2zs.gz' -2026-01-28 14:11:03.198 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.198 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.HttpApi.Client.clb4nzb2zs.wasm - 200 123205 application/wasm 11.3535ms -2026-01-28 14:11:03.202 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.IdentityModel.58e7vj7i45.wasm - null null -2026-01-28 14:11:03.203 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.203 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.203 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.203 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.203 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.203 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.203 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.203 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.203 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.203 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.203 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.203 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.203 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.203 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.203 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.203 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.203 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.203 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.203 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.203 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.203 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.203 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.215 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.IdentityModel.58e7vj7i45.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6dvntei2gj-{0}-58e7vj7i45-58e7vj7i45.gz' -2026-01-28 14:11:03.215 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.215 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.IdentityModel.58e7vj7i45.wasm - 200 32566 application/wasm 12.4768ms -2026-01-28 14:11:03.219 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.Abstractions.dk3pk9ktl7.wasm - null null -2026-01-28 14:11:03.220 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.220 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.220 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.220 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.220 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.220 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.220 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.220 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.220 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.220 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.220 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.220 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.220 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.220 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.220 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.220 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.220 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.220 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.220 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.220 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.220 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.220 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.232 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.Abstractions.dk3pk9ktl7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kno3y6bjsa-{0}-dk3pk9ktl7-dk3pk9ktl7.gz' -2026-01-28 14:11:03.232 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.232 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.Abstractions.dk3pk9ktl7.wasm - 200 4918 application/wasm 12.5087ms -2026-01-28 14:11:03.236 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.8u3i5b9etn.wasm - null null -2026-01-28 14:11:03.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.237 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.237 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.237 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.237 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.237 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.237 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.237 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.237 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.237 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.237 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.237 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.237 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.237 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.238 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.248 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.8u3i5b9etn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xxkqi4ckse-{0}-8u3i5b9etn-8u3i5b9etn.gz' -2026-01-28 14:11:03.248 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.248 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.8u3i5b9etn.wasm - 200 3894 application/wasm 11.9681ms -2026-01-28 14:11:03.252 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.SystemTextJson.dmgvw38e5z.wasm - null null -2026-01-28 14:11:03.253 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.253 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.253 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.253 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.253 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.253 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.253 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.253 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.253 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.253 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.253 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.253 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.253 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.253 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.253 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.253 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.253 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.253 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.253 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.253 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.253 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.253 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.283 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.SystemTextJson.dmgvw38e5z.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\y6nmb5oill-{0}-dmgvw38e5z-dmgvw38e5z.gz' -2026-01-28 14:11:03.283 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.283 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.SystemTextJson.dmgvw38e5z.wasm - 200 24374 application/wasm 30.7024ms -2026-01-28 14:11:03.288 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.Abstractions.j5b6ddcipj.wasm - null null -2026-01-28 14:11:03.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.288 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.288 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.288 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.288 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.288 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.288 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.289 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.289 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.289 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.289 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.289 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.289 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.289 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.289 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.301 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Localization.Abstractions.j5b6ddcipj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6hzosd4d2z-{0}-j5b6ddcipj-j5b6ddcipj.gz' -2026-01-28 14:11:03.301 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.301 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.Abstractions.j5b6ddcipj.wasm - 200 13622 application/wasm 13.1242ms -2026-01-28 14:11:03.306 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.tgarxcuaaj.wasm - null null -2026-01-28 14:11:03.306 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.306 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.306 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.306 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.306 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.306 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.306 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.306 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.306 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.306 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.306 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.306 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.306 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.306 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.307 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.307 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.307 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.307 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.307 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.307 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.307 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.307 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.318 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Localization.tgarxcuaaj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\742lfcokyb-{0}-tgarxcuaaj-tgarxcuaaj.gz' -2026-01-28 14:11:03.318 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.318 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.tgarxcuaaj.wasm - 200 66880 application/wasm 12.6018ms -2026-01-28 14:11:03.323 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Mapperly.mifpi94512.wasm - null null -2026-01-28 14:11:03.323 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.323 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.323 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.323 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.323 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.324 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.324 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.324 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.324 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.324 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.324 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.324 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.324 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.324 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.324 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.336 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Mapperly.mifpi94512.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wlgf7ryjmc-{0}-mifpi94512-mifpi94512.gz' -2026-01-28 14:11:03.336 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.336 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Mapperly.mifpi94512.wasm - 200 18230 application/wasm 13.4041ms -2026-01-28 14:11:03.341 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Minify.u0ftati5vi.wasm - null null -2026-01-28 14:11:03.342 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.342 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.342 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.342 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.342 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.342 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.342 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.342 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.342 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.342 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.342 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.342 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.342 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.342 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.342 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.342 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.343 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.343 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.343 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.343 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.343 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.343 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.355 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Minify.u0ftati5vi.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xo92mb2h1m-{0}-u0ftati5vi-u0ftati5vi.gz' -2026-01-28 14:11:03.355 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.355 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Minify.u0ftati5vi.wasm - 200 6966 application/wasm 13.7928ms -2026-01-28 14:11:03.361 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MudBlazorUI.rp0ak0tuw8.wasm - null null -2026-01-28 14:11:03.361 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.361 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.361 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.361 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.361 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.361 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.361 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.362 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.362 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.362 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.362 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.362 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.362 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.362 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.362 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.362 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.374 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MudBlazorUI.rp0ak0tuw8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kchqj3qnme-{0}-rp0ak0tuw8-rp0ak0tuw8.gz' -2026-01-28 14:11:03.374 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.374 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MudBlazorUI.rp0ak0tuw8.wasm - 200 137546 application/wasm 13.7519ms -2026-01-28 14:11:03.379 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.Abstractions.l8q9drti5i.wasm - null null -2026-01-28 14:11:03.380 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.380 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.380 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.380 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.380 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.380 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.380 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.380 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.380 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.380 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.380 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.380 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.380 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.380 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.380 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.380 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.380 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.380 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.380 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.380 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.380 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.380 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.394 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MultiTenancy.Abstractions.l8q9drti5i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9h6hwofytn-{0}-l8q9drti5i-l8q9drti5i.gz' -2026-01-28 14:11:03.394 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.394 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.Abstractions.l8q9drti5i.wasm - 200 26934 application/wasm 14.7691ms -2026-01-28 14:11:03.398 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.9vppak6oe0.wasm - null null -2026-01-28 14:11:03.399 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.399 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.399 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.399 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.399 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.399 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.399 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.399 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.399 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.399 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.399 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.399 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.399 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.399 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.399 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.399 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.399 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.399 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.399 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.399 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.399 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.399 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.413 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MultiTenancy.9vppak6oe0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\k4tu4vjqt3-{0}-9vppak6oe0-9vppak6oe0.gz' -2026-01-28 14:11:03.413 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.413 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.9vppak6oe0.wasm - 200 31542 application/wasm 15.1499ms -2026-01-28 14:11:03.418 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectExtending.xqdaldejf6.wasm - null null -2026-01-28 14:11:03.418 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.418 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.418 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.418 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.418 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.418 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.418 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.418 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.418 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.418 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.418 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.418 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.418 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.419 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.419 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.419 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.419 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.419 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.419 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.419 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.419 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.419 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.432 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ObjectExtending.xqdaldejf6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3mtcgnfv0c-{0}-xqdaldejf6-xqdaldejf6.gz' -2026-01-28 14:11:03.432 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.432 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectExtending.xqdaldejf6.wasm - 200 48443 application/wasm 14.6125ms -2026-01-28 14:11:03.437 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectMapping.jfxlue5mz1.wasm - null null -2026-01-28 14:11:03.437 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.437 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.437 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.437 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.437 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.438 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.438 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.438 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.438 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.438 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.438 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.438 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.438 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.438 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.438 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.438 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.438 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.438 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.438 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.438 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.438 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.438 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.449 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ObjectMapping.jfxlue5mz1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\zesov8dx3n-{0}-jfxlue5mz1-jfxlue5mz1.gz' -2026-01-28 14:11:03.449 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.449 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectMapping.jfxlue5mz1.wasm - 200 17206 application/wasm 12.5988ms -2026-01-28 14:11:03.453 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.OpenIddict.Domain.Shared.p76j32m8t5.wasm - null null -2026-01-28 14:11:03.454 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.454 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.454 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.454 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.454 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.454 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.454 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.454 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.454 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.454 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.454 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.454 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.454 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.454 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.454 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.454 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.454 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.454 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.454 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.454 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.454 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.454 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.467 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.OpenIddict.Domain.Shared.p76j32m8t5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\e9mit81pkr-{0}-p76j32m8t5-p76j32m8t5.gz' -2026-01-28 14:11:03.467 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.467 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.OpenIddict.Domain.Shared.p76j32m8t5.wasm - 200 41275 application/wasm 14.0241ms -2026-01-28 14:11:03.472 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Application.Contracts.wmkikr93o7.wasm - null null -2026-01-28 14:11:03.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.472 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.473 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.473 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.473 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.473 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.473 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.473 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.473 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.473 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.473 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.473 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.485 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Application.Contracts.wmkikr93o7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\my5sja1gq5-{0}-wmkikr93o7-wmkikr93o7.gz' -2026-01-28 14:11:03.485 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.485 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Application.Contracts.wmkikr93o7.wasm - 200 14134 application/wasm 13.063ms -2026-01-28 14:11:03.489 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.zznf2kzkxh.wasm - null null -2026-01-28 14:11:03.490 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.490 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.490 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.490 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.490 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.490 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.490 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.490 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.490 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.490 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.490 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.490 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.490 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.490 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.490 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.490 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.490 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.490 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.490 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.490 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.490 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.491 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.503 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.zznf2kzkxh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kxch0h7hgv-{0}-zznf2kzkxh-zznf2kzkxh.gz' -2026-01-28 14:11:03.503 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.503 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.zznf2kzkxh.wasm - 200 77632 application/wasm 13.393ms -2026-01-28 14:11:03.507 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.axi1gmd0uq.wasm - null null -2026-01-28 14:11:03.508 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.508 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.508 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.508 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.508 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.508 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.508 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.508 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.508 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.508 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.508 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.508 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.508 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.508 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.508 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.508 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.508 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.508 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.508 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.508 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.508 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.508 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.521 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.axi1gmd0uq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\66b7cc8ocy-{0}-axi1gmd0uq-axi1gmd0uq.gz' -2026-01-28 14:11:03.521 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.521 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.axi1gmd0uq.wasm - 200 5942 application/wasm 13.7073ms -2026-01-28 14:11:03.526 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Domain.Shared.ic13klvitm.wasm - null null -2026-01-28 14:11:03.526 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.526 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.526 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.526 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.526 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.526 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.526 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.526 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.526 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.526 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.526 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.526 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.526 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.526 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.527 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.527 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.527 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.527 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.527 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.527 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.527 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.527 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.539 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Domain.Shared.ic13klvitm.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\yzrsadtuc3-{0}-ic13klvitm-ic13klvitm.gz' -2026-01-28 14:11:03.539 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.539 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Domain.Shared.ic13klvitm.wasm - 200 59195 application/wasm 13.6394ms -2026-01-28 14:11:03.544 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.HttpApi.Client.emu449d09n.wasm - null null -2026-01-28 14:11:03.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.545 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.545 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.545 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.545 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.545 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.545 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.545 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.545 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.545 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.545 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.545 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.545 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.545 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.545 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.557 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.HttpApi.Client.emu449d09n.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\oo1t1rirr3-{0}-emu449d09n-emu449d09n.gz' -2026-01-28 14:11:03.557 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.557 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.HttpApi.Client.emu449d09n.wasm - 200 68416 application/wasm 12.8662ms -2026-01-28 14:11:03.562 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.RemoteServices.d8gnck4fgy.wasm - null null -2026-01-28 14:11:03.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.563 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.563 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.563 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.563 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.563 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.563 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.563 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.563 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.563 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.563 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.563 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.563 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.563 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.563 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.563 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.563 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.563 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.563 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.563 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.563 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.576 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.RemoteServices.d8gnck4fgy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fxolomud6k-{0}-d8gnck4fgy-d8gnck4fgy.gz' -2026-01-28 14:11:03.576 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.576 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.RemoteServices.d8gnck4fgy.wasm - 200 11574 application/wasm 13.5996ms -2026-01-28 14:11:03.581 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Security.k9ttfxcsex.wasm - null null -2026-01-28 14:11:03.581 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.581 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.581 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.581 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.581 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.581 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.581 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.581 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.581 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.581 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.581 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.581 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.581 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.581 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.581 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.581 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.581 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.581 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.581 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.581 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.582 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.582 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.593 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Security.k9ttfxcsex.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3330bn9dpa-{0}-k9ttfxcsex-k9ttfxcsex.gz' -2026-01-28 14:11:03.593 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.593 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Security.k9ttfxcsex.wasm - 200 48955 application/wasm 12.327ms -2026-01-28 14:11:03.598 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Serialization.gqp3lze8fb.wasm - null null -2026-01-28 14:11:03.598 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.598 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.598 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.598 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.598 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.599 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.599 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.599 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.599 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.599 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.599 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.599 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.599 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.599 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.599 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.599 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.599 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.599 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.599 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.599 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.599 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.599 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.611 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Serialization.gqp3lze8fb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jm5tzubbmd-{0}-gqp3lze8fb-gqp3lze8fb.gz' -2026-01-28 14:11:03.611 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.611 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Serialization.gqp3lze8fb.wasm - 200 6966 application/wasm 13.1926ms -2026-01-28 14:11:03.616 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Application.Contracts.xvq3wz5075.wasm - null null -2026-01-28 14:11:03.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.616 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.616 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.616 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.616 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.616 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.616 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.616 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.616 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.616 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.616 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.616 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.616 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.616 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.616 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.629 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Application.Contracts.xvq3wz5075.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sa63frt88b-{0}-xvq3wz5075-xvq3wz5075.gz' -2026-01-28 14:11:03.629 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.629 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Application.Contracts.xvq3wz5075.wasm - 200 14134 application/wasm 13.6494ms -2026-01-28 14:11:03.634 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.yorcbsllti.wasm - null null -2026-01-28 14:11:03.634 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.634 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.634 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.634 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.634 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.634 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.634 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.634 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.634 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.634 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.634 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.634 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.634 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.634 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.634 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.634 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.634 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.634 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.634 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.634 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.634 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.635 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.647 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.yorcbsllti.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\du4d4xybrw-{0}-yorcbsllti-yorcbsllti.gz' -2026-01-28 14:11:03.647 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.648 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.yorcbsllti.wasm - 200 59195 application/wasm 13.907ms -2026-01-28 14:11:03.651 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.rl433unjhk.wasm - null null -2026-01-28 14:11:03.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.652 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.652 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.652 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.652 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.652 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.652 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.652 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.652 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.652 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.652 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.652 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.652 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.652 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.652 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.665 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.rl433unjhk.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\khsc69ietg-{0}-rl433unjhk-rl433unjhk.gz' -2026-01-28 14:11:03.665 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.665 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.rl433unjhk.wasm - 200 5942 application/wasm 13.7526ms -2026-01-28 14:11:03.670 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Domain.Shared.ehawvm0lul.wasm - null null -2026-01-28 14:11:03.670 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.670 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.670 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.670 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.670 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.671 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.671 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.671 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.671 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.671 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.671 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.671 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.671 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.671 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.671 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.671 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.671 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.671 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.671 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.671 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.671 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.671 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.683 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Domain.Shared.ehawvm0lul.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\a9lyefc7q1-{0}-ehawvm0lul-ehawvm0lul.gz' -2026-01-28 14:11:03.683 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.683 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Domain.Shared.ehawvm0lul.wasm - 200 86336 application/wasm 13.4705ms -2026-01-28 14:11:03.692 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.HttpApi.Client.2z0jshntcg.wasm - null null -2026-01-28 14:11:03.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.693 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.693 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.693 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.693 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.693 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.693 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.693 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.693 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.693 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.693 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.693 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.693 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.693 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.694 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.707 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.HttpApi.Client.2z0jshntcg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ivgy4mp33s-{0}-2z0jshntcg-2z0jshntcg.gz' -2026-01-28 14:11:03.707 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.707 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.HttpApi.Client.2z0jshntcg.wasm - 200 23862 application/wasm 14.3619ms -2026-01-28 14:11:03.712 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Settings.05ptknrv5m.wasm - null null -2026-01-28 14:11:03.713 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.713 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.713 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.713 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.713 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.713 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.713 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.713 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.713 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.713 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.713 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.713 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.713 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.713 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.713 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.713 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.713 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.713 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.713 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.713 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.713 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.713 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.726 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Settings.05ptknrv5m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bgt33y9v4t-{0}-05ptknrv5m-05ptknrv5m.gz' -2026-01-28 14:11:03.726 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.726 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Settings.05ptknrv5m.wasm - 200 40763 application/wasm 13.6828ms -2026-01-28 14:11:03.730 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Application.Contracts.dorwnqqwy5.wasm - null null -2026-01-28 14:11:03.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.731 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.731 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.731 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.731 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.731 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.731 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.731 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.731 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.731 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.731 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.731 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.731 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.731 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.731 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.743 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Application.Contracts.dorwnqqwy5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c16tsznfvz-{0}-dorwnqqwy5-dorwnqqwy5.gz' -2026-01-28 14:11:03.743 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.744 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Application.Contracts.dorwnqqwy5.wasm - 200 12086 application/wasm 13.0418ms -2026-01-28 14:11:03.748 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.h58oqkfeng.wasm - null null -2026-01-28 14:11:03.748 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.748 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.749 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.749 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.749 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.749 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.749 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.749 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.749 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.749 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.749 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.749 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.749 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.749 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.749 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.749 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.749 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.749 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.749 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.749 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.749 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.749 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.762 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.h58oqkfeng.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ckfyi6dd9r-{0}-h58oqkfeng-h58oqkfeng.gz' -2026-01-28 14:11:03.762 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.763 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.h58oqkfeng.wasm - 200 35131 application/wasm 14.4999ms -2026-01-28 14:11:03.767 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.vv7n6m7yut.wasm - null null -2026-01-28 14:11:03.767 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.767 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.767 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.767 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.767 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.767 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.767 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.767 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.767 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.767 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.767 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.767 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.767 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.768 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.768 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.768 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.768 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.768 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.768 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.768 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.768 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.768 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.785 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.vv7n6m7yut.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xddkl43426-{0}-vv7n6m7yut-vv7n6m7yut.gz' -2026-01-28 14:11:03.785 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.785 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.vv7n6m7yut.wasm - 200 5942 application/wasm 18.0122ms -2026-01-28 14:11:03.791 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Domain.Shared.llpimxq3rm.wasm - null null -2026-01-28 14:11:03.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.792 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.792 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.792 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.792 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.792 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.792 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.792 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.793 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.793 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.793 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.793 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.793 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.793 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.793 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.806 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Domain.Shared.llpimxq3rm.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\so2apr0f18-{0}-llpimxq3rm-llpimxq3rm.gz' -2026-01-28 14:11:03.806 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.806 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Domain.Shared.llpimxq3rm.wasm - 200 44347 application/wasm 14.5287ms -2026-01-28 14:11:03.811 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.HttpApi.Client.bjkg75uhux.wasm - null null -2026-01-28 14:11:03.812 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.812 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.812 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.812 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.812 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.812 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.812 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.812 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.812 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.812 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.812 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.812 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.812 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.812 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.812 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.812 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.812 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.812 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.812 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.812 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.812 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.813 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.825 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.HttpApi.Client.bjkg75uhux.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\imelthvwfz-{0}-bjkg75uhux-bjkg75uhux.gz' -2026-01-28 14:11:03.825 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.825 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.HttpApi.Client.bjkg75uhux.wasm - 200 37179 application/wasm 14.2099ms -2026-01-28 14:11:03.830 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Threading.rwdxyhv0ce.wasm - null null -2026-01-28 14:11:03.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.831 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.831 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.831 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.831 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.831 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.831 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.831 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.831 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.831 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.831 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.831 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.831 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.831 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.831 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.831 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.831 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.831 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.831 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.831 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.831 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.831 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.842 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Threading.rwdxyhv0ce.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bipe9d19v0-{0}-rwdxyhv0ce-rwdxyhv0ce.gz' -2026-01-28 14:11:03.842 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.842 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Threading.rwdxyhv0ce.wasm - 200 34619 application/wasm 11.9595ms -2026-01-28 14:11:03.846 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Timing.otg12tqej8.wasm - null null -2026-01-28 14:11:03.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.847 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.847 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.847 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.847 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.847 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.847 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.847 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.847 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.847 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.847 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.847 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.847 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.847 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.847 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.857 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Timing.otg12tqej8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\k5ucu0dgya-{0}-otg12tqej8-otg12tqej8.gz' -2026-01-28 14:11:03.857 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.857 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Timing.otg12tqej8.wasm - 200 19766 application/wasm 10.4692ms -2026-01-28 14:11:03.861 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.wwlqw4om2r.wasm - null null -2026-01-28 14:11:03.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.862 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.862 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.862 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.862 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.862 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.862 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.862 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.862 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.862 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.862 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.862 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.862 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.862 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.862 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.872 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.UI.wwlqw4om2r.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pq6xwwf7om-{0}-wwlqw4om2r-wwlqw4om2r.gz' -2026-01-28 14:11:03.872 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.873 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.wwlqw4om2r.wasm - 200 83776 application/wasm 11.2167ms -2026-01-28 14:11:03.876 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.Navigation.gyuxza111s.wasm - null null -2026-01-28 14:11:03.877 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.877 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.877 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.877 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.877 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.877 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.877 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.877 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.877 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.877 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.877 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.877 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.877 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.877 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.877 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.877 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.877 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.877 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.877 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.877 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.877 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.877 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.886 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.UI.Navigation.gyuxza111s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9g5ljk4lon-{0}-gyuxza111s-gyuxza111s.gz' -2026-01-28 14:11:03.886 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.886 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.Navigation.gyuxza111s.wasm - 200 40763 application/wasm 9.3699ms -2026-01-28 14:11:03.889 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Uow.jneickkblt.wasm - null null -2026-01-28 14:11:03.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.890 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.890 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.890 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.890 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.890 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.890 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.890 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.890 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.890 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.890 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.890 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.890 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.890 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.890 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.902 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Uow.jneickkblt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ilu4fbxe2e-{0}-jneickkblt-jneickkblt.gz' -2026-01-28 14:11:03.902 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.902 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Uow.jneickkblt.wasm - 200 39227 application/wasm 12.4567ms -2026-01-28 14:11:03.906 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Abstractions.0mrf0cvj5h.wasm - null null -2026-01-28 14:11:03.907 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.907 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.907 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.907 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.907 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.907 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.907 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.907 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.907 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.907 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.907 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.907 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.907 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.907 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.907 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.907 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.907 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.907 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.907 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.907 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.907 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.907 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.917 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Users.Abstractions.0mrf0cvj5h.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jyt2zu3ttz-{0}-0mrf0cvj5h-0mrf0cvj5h.gz' -2026-01-28 14:11:03.917 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.917 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Abstractions.0mrf0cvj5h.wasm - 200 11062 application/wasm 10.8737ms -2026-01-28 14:11:03.921 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Domain.Shared.h4yyltz4ll.wasm - null null -2026-01-28 14:11:03.922 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.922 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.922 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.922 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.922 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.922 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.922 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.922 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.922 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.922 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.922 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.922 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.922 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.922 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.922 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.922 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.922 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.922 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.922 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.922 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.922 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.922 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.932 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Users.Domain.Shared.h4yyltz4ll.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8bcoe6ftg7-{0}-h4yyltz4ll-h4yyltz4ll.gz' -2026-01-28 14:11:03.932 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.932 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Domain.Shared.h4yyltz4ll.wasm - 200 4918 application/wasm 10.833ms -2026-01-28 14:11:03.936 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.Abstractions.924wndkz1f.wasm - null null -2026-01-28 14:11:03.936 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.936 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.937 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.937 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.937 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.937 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.937 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.937 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.937 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.937 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.937 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.937 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.937 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.937 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.937 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.937 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.937 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.937 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.937 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.937 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.937 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.937 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.946 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Validation.Abstractions.924wndkz1f.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gd6ojlvfcf-{0}-924wndkz1f-924wndkz1f.gz' -2026-01-28 14:11:03.946 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.947 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.Abstractions.924wndkz1f.wasm - 200 6966 application/wasm 10.5129ms -2026-01-28 14:11:03.950 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.0d8qfgigij.wasm - null null -2026-01-28 14:11:03.951 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.951 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.951 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.951 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.951 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.951 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.951 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.951 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.951 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.951 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.951 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.951 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.951 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.951 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.951 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.951 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.951 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.951 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.951 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.951 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.951 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.951 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.962 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Validation.0d8qfgigij.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2i0haqeq52-{0}-0d8qfgigij-0d8qfgigij.gz' -2026-01-28 14:11:03.962 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.962 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.0d8qfgigij.wasm - 200 133962 application/wasm 11.9892ms -2026-01-28 14:11:03.967 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.VirtualFileSystem.gxdtmkr6a5.wasm - null null -2026-01-28 14:11:03.967 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.967 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.967 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.967 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.967 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.967 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.967 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.967 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.967 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.967 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.967 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.967 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.967 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.967 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.968 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.968 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.968 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.968 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.968 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.968 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.968 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.968 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.978 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.VirtualFileSystem.gxdtmkr6a5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\oikj36ifzq-{0}-gxdtmkr6a5-gxdtmkr6a5.gz' -2026-01-28 14:11:03.978 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.978 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.VirtualFileSystem.gxdtmkr6a5.wasm - 200 21302 application/wasm 11.3433ms -2026-01-28 14:11:03.982 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.ohwxgh6gpx.wasm - null null -2026-01-28 14:11:03.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.983 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.983 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.983 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.983 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.983 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.983 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.983 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.983 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.983 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.983 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.994 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.ohwxgh6gpx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b9vq30g1vb-{0}-ohwxgh6gpx-ohwxgh6gpx.gz' -2026-01-28 14:11:03.994 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:03.994 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.ohwxgh6gpx.wasm - 200 38715 application/wasm 11.8609ms -2026-01-28 14:11:03.998 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/icudt.oh1zvcfom8.dat - null null -2026-01-28 14:11:03.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.998 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:03.998 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:03.998 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:03.998 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.998 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:03.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:03.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:03.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:03.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:03.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:03.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:03.998 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:03.998 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:03.999 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:03.999 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:03.999 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:03.999 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:03.999 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:03.999 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:03.999 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:04.014 +03:00 [INF] Sending file. Request path: '_framework/icudt.oh1zvcfom8.dat'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\augfne4vvr-{0}-oh1zvcfom8-oh1zvcfom8.gz' -2026-01-28 14:11:04.014 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:04.014 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/icudt.oh1zvcfom8.dat - 200 492472 application/octet-stream 15.8756ms -2026-01-28 14:11:04.028 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/appsettings.Development.json - null null -2026-01-28 14:11:04.028 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:04.028 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:04.028 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:04.028 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:04.028 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:04.028 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:04.028 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:04.028 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:04.028 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:04.028 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:04.028 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:04.028 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:04.028 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:04.028 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:04.029 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:04.029 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:04.029 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:04.029 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:04.029 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:04.029 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:04.029 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:04.029 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:04.036 +03:00 [INF] Sending file. Request path: 'appsettings.Development.json'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5yh5mvb6m0-{0}-qygrwjo5h3-qygrwjo5h3.gz' -2026-01-28 14:11:04.036 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:04.036 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/appsettings.Development.json - 200 41 application/json 8.4004ms -2026-01-28 14:11:04.041 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/appsettings.json - null null -2026-01-28 14:11:04.041 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:04.041 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:04.041 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:04.041 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:04.041 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:04.042 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:04.042 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:04.042 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:04.042 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:04.042 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:04.042 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:04.042 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:04.042 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:04.042 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:04.042 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:04.042 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:04.042 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:04.042 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:04.042 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:04.042 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:04.042 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:04.042 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:04.051 +03:00 [INF] Sending file. Request path: 'appsettings.json'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\apuwzph3tz-{0}-b8hf2s338i-b8hf2s338i.gz' -2026-01-28 14:11:04.051 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:04.051 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/appsettings.json - 200 136 application/json 10.5128ms -2026-01-28 14:11:16.501 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/ - null null -2026-01-28 14:11:16.502 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.502 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.502 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:16.502 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:16.502 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.502 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:16.502 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.502 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:16.502 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:16.502 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:16.502 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:16.502 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.502 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.502 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:16.503 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:16.503 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:16.503 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:16.503 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:16.503 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:16.503 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:16.503 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:16.503 +03:00 [INF] Executing endpoint '/ (/)' -2026-01-28 14:11:16.508 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2026-01-28 14:11:16.508 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2026-01-28 14:11:16.509 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2026-01-28 14:11:16.512 +03:00 [INF] Executed endpoint '/ (/)' -2026-01-28 14:11:16.513 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/ - 200 null text/html; charset=utf-8 11.4399ms -2026-01-28 14:11:16.518 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44308/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundaryLEwyoS6MsSkWoTky 359 -2026-01-28 14:11:16.518 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.518 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.518 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:16.518 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:16.518 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.518 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:16.518 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.518 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:16.518 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:16.518 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:16.518 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:16.518 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.518 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.518 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:16.519 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:16.519 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:16.519 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:16.519 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:16.519 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:16.519 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:16.519 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:16.519 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.519 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.519 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44308/_blazor?id=WecghhXo8cM87GoJgweWzQ - 200 null null 19071.7343ms -2026-01-28 14:11:16.522 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.522 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44308/_blazor/disconnect - 200 0 null 3.9933ms -2026-01-28 14:11:16.545 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/.well-known/appspecific/com.chrome.devtools.json - null null -2026-01-28 14:11:16.546 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.546 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:16.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:16.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.547 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:16.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:16.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:16.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:16.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:16.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.547 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:16.547 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:16.547 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:16.547 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:16.547 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:16.547 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:16.547 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:16.547 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:16.547 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/.well-known/appspecific/com.chrome.devtools.json - 404 0 null 2.0756ms -2026-01-28 14:11:16.547 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44308/.well-known/appspecific/com.chrome.devtools.json, Response status code: 404 -2026-01-28 14:11:16.569 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/MudBlazor/MudBlazor.min.css - null null -2026-01-28 14:11:16.569 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2026-01-28 14:11:16.569 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.MudBlazorUI/volo.abp.mudblazorui.css - null null -2026-01-28 14:11:16.569 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/blazor-global-styles.css - null null -2026-01-28 14:11:16.569 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/themes/basic/main.css - null null -2026-01-28 14:11:16.569 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css - null null -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.570 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:16.570 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:16.570 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:16.570 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:16.570 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.570 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:16.570 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:16.570 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:16.570 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.570 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:16.570 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.570 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:16.570 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:16.570 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:16.570 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:16.570 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:16.570 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:16.570 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:16.570 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:16.570 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:16.570 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:16.570 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:16.570 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:16.570 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:16.570 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:16.570 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:16.570 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:16.570 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:16.570 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:16.570 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:16.570 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:16.570 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:16.570 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:16.570 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:16.570 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:16.570 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:16.570 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:16.570 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:16.570 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:16.570 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:16.570 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:16.570 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:16.570 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:16.570 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:16.570 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:16.570 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:16.570 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:16.570 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:16.570 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:16.570 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:16.570 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:16.570 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:16.570 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:16.570 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:16.570 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.570 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.570 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.570 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.570 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.570 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.571 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.MudBlazorUI/volo.abp.mudblazorui.css'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.MudBlazorUI\obj\Debug\net10.0\compressed\giyoea8shq-{0}-8qeawnrprb-8qeawnrprb.gz' -2026-01-28 14:11:16.571 +03:00 [INF] Sending file. Request path: 'MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s4s6fpr8ex-{0}-oa8u55zyfs-oa8u55zyfs.gz' -2026-01-28 14:11:16.571 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/themes/basic/main.css'. Physical path: 'D:\GitHub\abp\modules\basic-theme\src\Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme\obj\Debug\net10.0\compressed\fqd2rlnqku-{0}-tyyka3g39l-tyyka3g39l.gz' -2026-01-28 14:11:16.571 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\obj\Debug\net10.0\compressed\p1g0cu86en-{0}-c25c931rn9-c25c931rn9.gz' -2026-01-28 14:11:16.571 +03:00 [INF] Sending file. Request path: 'blazor-global-styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\smexgl05zq-{0}-y3n6denrdr-y3n6denrdr.gz' -2026-01-28 14:11:16.571 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.571 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.571 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.571 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.571 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.571 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1375 text/css 2.1764ms -2026-01-28 14:11:16.571 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.MudBlazorUI/volo.abp.mudblazorui.css - 200 1120 text/css 2.1784ms -2026-01-28 14:11:16.571 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css - 200 317 text/css 1.9973ms -2026-01-28 14:11:16.571 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/themes/basic/main.css - 200 120 text/css 2.0207ms -2026-01-28 14:11:16.571 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/blazor-global-styles.css - 200 641 text/css 2.0491ms -2026-01-28 14:11:16.571 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/bg-01.png - null null -2026-01-28 14:11:16.571 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/MudBlazor/MudBlazor.min.js - null null -2026-01-28 14:11:16.571 +03:00 [INF] Sending file. Request path: '_content/MudBlazor/MudBlazor.min.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\tzxjg6is5z-{0}-du7z45fy1o-du7z45fy1o.gz' -2026-01-28 14:11:16.571 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.571 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/MudBlazor/MudBlazor.min.css - 200 64451 text/css 2.4276ms -2026-01-28 14:11:16.572 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/img-support.png - null null -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.572 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/img-blog.png - null null -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.572 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.572 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:16.572 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/blazor.web.js - null null -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.572 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:16.572 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.572 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:16.572 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.572 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.572 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:16.572 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.572 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.572 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:16.572 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.572 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.572 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:16.572 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.572 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:16.572 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:16.572 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:16.572 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:16.572 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:16.572 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:16.572 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:16.572 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:16.572 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:16.572 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:16.572 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:16.572 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:16.572 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:16.572 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:16.572 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:16.572 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.572 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.572 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.572 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.572 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:16.572 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.573 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.573 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.573 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\obj\Debug\net10.0\compressed\2mj6s76mwx-{0}-qb38od44a4-qb38od44a4.gz' -2026-01-28 14:11:16.573 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.573 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\obj\Debug\net10.0\compressed\rhkuekteef-{0}-cowusv9rvg-cowusv9rvg.gz' -2026-01-28 14:11:16.573 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.573 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 486 text/javascript 1.1392ms -2026-01-28 14:11:16.573 +03:00 [INF] Sending file. Request path: '_content/MudBlazor/MudBlazor.min.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\0wz98yz2xy-{0}-u9015k2po7-u9015k2po7.gz' -2026-01-28 14:11:16.573 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.573 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8981 text/javascript 1.2485ms -2026-01-28 14:11:16.573 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/MudBlazor/MudBlazor.min.js - 200 11465 text/javascript 1.8318ms -2026-01-28 14:11:16.573 +03:00 [INF] Sending file. Request path: 'images/getting-started/bg-01.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\bg-01.png' -2026-01-28 14:11:16.573 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.573 +03:00 [INF] Sending file. Request path: 'images/getting-started/img-blog.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\img-blog.png' -2026-01-28 14:11:16.573 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.573 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/bg-01.png - 200 22111 image/png 2.0138ms -2026-01-28 14:11:16.573 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/img-blog.png - 200 30220 image/png 1.469ms -2026-01-28 14:11:16.573 +03:00 [INF] Sending file. Request path: '_framework/blazor.web.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\ocy8dvewdt-{0}-2i0r6wwb69-2i0r6wwb69.gz' -2026-01-28 14:11:16.573 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.573 +03:00 [INF] Sending file. Request path: 'images/getting-started/img-support.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\img-support.png' -2026-01-28 14:11:16.573 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.573 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/blazor.web.js - 200 55628 text/javascript 1.4942ms -2026-01-28 14:11:16.573 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/img-support.png - 200 23461 image/png 1.6441ms -2026-01-28 14:11:16.649 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js - null null -2026-01-28 14:11:16.650 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.650 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.651 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:16.651 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:16.651 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.651 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:16.651 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.651 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:16.651 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:16.651 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:16.651 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:16.651 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.651 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.651 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:16.651 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:16.651 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:16.651 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:16.651 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:16.651 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:16.651 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:16.651 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:16.652 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.653 +03:00 [INF] Sending file. Request path: '_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js'. Physical path: 'C:\Users\ismai\.nuget\packages\microsoft.dotnet.hotreload.webassembly.browser\10.0.102\staticwebassets\Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js' -2026-01-28 14:11:16.653 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.653 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js - 200 1862 text/javascript 3.3996ms -2026-01-28 14:11:16.665 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.js - null null -2026-01-28 14:11:16.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.666 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.666 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:16.666 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:16.666 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.666 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:16.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:16.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:16.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:16.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:16.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.666 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:16.666 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:16.666 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:16.666 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:16.666 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:16.666 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:16.666 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:16.666 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:16.666 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.668 +03:00 [INF] Sending file. Request path: '_framework/dotnet.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uxk8is50o9-{0}-aooho9t0gv-aooho9t0gv.gz' -2026-01-28 14:11:16.668 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.668 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.js - 200 138290 text/javascript 2.6612ms -2026-01-28 14:11:16.681 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.0j6ezsi0n0.js - null null -2026-01-28 14:11:16.681 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.native.cs8mcre4gh.js - null null -2026-01-28 14:11:16.681 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.native.muve7a13r4.wasm - null null -2026-01-28 14:11:16.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.682 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.682 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.682 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.682 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:16.682 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:16.682 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:16.682 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:16.682 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:16.682 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:16.682 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.682 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.682 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.682 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:16.682 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:16.682 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:16.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:16.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:16.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:16.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:16.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:16.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:16.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:16.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:16.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:16.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:16.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:16.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:16.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.682 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:16.682 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:16.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.682 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:16.682 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:16.682 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:16.682 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:16.682 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:16.682 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:16.682 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:16.682 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:16.682 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:16.682 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:16.682 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:16.682 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:16.682 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:16.682 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:16.682 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:16.682 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:16.682 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:16.682 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:16.682 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:16.682 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:16.682 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:16.682 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:16.682 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.682 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.682 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.683 +03:00 [INF] Sending file. Request path: '_framework/dotnet.native.cs8mcre4gh.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\k6ua61tyqb-{0}-cs8mcre4gh-cs8mcre4gh.gz' -2026-01-28 14:11:16.683 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.683 +03:00 [INF] Sending file. Request path: '_framework/dotnet.runtime.0j6ezsi0n0.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ilxt1pu9fi-{0}-0j6ezsi0n0-0j6ezsi0n0.gz' -2026-01-28 14:11:16.683 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.native.cs8mcre4gh.js - 200 34952 text/javascript 2.2413ms -2026-01-28 14:11:16.683 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.683 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.0j6ezsi0n0.js - 200 57287 text/javascript 2.3126ms -2026-01-28 14:11:16.689 +03:00 [INF] Sending file. Request path: '_framework/dotnet.native.muve7a13r4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uv3ayj7441-{0}-muve7a13r4-muve7a13r4.gz' -2026-01-28 14:11:16.689 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.689 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.native.muve7a13r4.wasm - 200 1207839 application/wasm 7.6277ms -2026-01-28 14:11:16.758 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.JavaScript.flbdejno7d.wasm - null null -2026-01-28 14:11:16.758 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.758 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:16.758 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:16.758 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:16.758 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.759 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:16.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:16.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:16.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:16.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:16.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:16.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:16.759 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:16.759 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:16.759 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:16.759 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:16.759 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:16.759 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:16.759 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:16.759 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:16.759 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.760 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.InteropServices.JavaScript.flbdejno7d.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s7btk1c9a3-{0}-flbdejno7d-flbdejno7d.gz' -2026-01-28 14:11:16.760 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:16.760 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.JavaScript.flbdejno7d.wasm - 200 79680 application/wasm 2.6786ms -2026-01-28 14:11:17.011 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.js.map - null null -2026-01-28 14:11:17.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.012 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.012 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.012 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.012 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.013 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.013 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.013 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.013 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.013 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.013 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.013 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.013 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.013 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.014 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.014 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.014 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.014 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.014 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.014 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.014 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.014 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.015 +03:00 [INF] Sending file. Request path: '_framework/dotnet.runtime.js.map'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xqmdb6twc8-{0}-efgkpxn596-efgkpxn596.gz' -2026-01-28 14:11:17.015 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.015 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.js.map - 200 89353 text/plain 3.5094ms -2026-01-28 14:11:17.049 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/favicon.ico - null null -2026-01-28 14:11:17.049 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'N/A' -2026-01-28 14:11:17.049 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/favicon.ico - 200 38078 image/x-icon 0.7648ms -2026-01-28 14:11:17.057 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.CoreLib.zjh2w4p93l.wasm - null null -2026-01-28 14:11:17.058 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.059 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.059 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.059 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.059 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.060 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.060 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.060 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.060 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.060 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.060 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.084 +03:00 [INF] Sending file. Request path: '_framework/System.Private.CoreLib.zjh2w4p93l.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6as1brjopk-{0}-zjh2w4p93l-zjh2w4p93l.gz' -2026-01-28 14:11:17.084 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.084 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.CoreLib.zjh2w4p93l.wasm - 200 4870686 application/wasm 26.8045ms -2026-01-28 14:11:17.125 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.rgbxj6i45y.pdb - null null -2026-01-28 14:11:17.125 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.125 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.125 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.125 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.125 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.126 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.126 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.126 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.126 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.126 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.126 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.126 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.126 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.126 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.126 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.126 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.126 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.126 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.126 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.126 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.126 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.126 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.127 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.rgbxj6i45y.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vzc2x4ap4x-{0}-rgbxj6i45y-rgbxj6i45y.gz' -2026-01-28 14:11:17.127 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.127 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.rgbxj6i45y.pdb - 200 19065 application/octet-stream 2.5015ms -2026-01-28 14:11:17.145 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.3ihkiqtul0.pdb - null null -2026-01-28 14:11:17.146 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.146 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.146 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.146 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.146 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.146 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.146 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.146 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.146 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.146 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.146 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.146 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.146 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.146 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.147 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.147 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.147 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.147 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.147 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.147 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.147 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.147 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.147 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.3ihkiqtul0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6vzgo2e02t-{0}-3ihkiqtul0-3ihkiqtul0.gz' -2026-01-28 14:11:17.147 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.148 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.3ihkiqtul0.pdb - 200 18845 application/octet-stream 2.648ms -2026-01-28 14:11:17.154 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.q12kofv66i.pdb - null null -2026-01-28 14:11:17.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.155 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.155 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.155 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.155 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.155 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.155 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.155 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.155 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.155 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.155 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.155 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.155 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.155 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.156 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.156 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.156 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.156 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.156 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.156 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.156 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.156 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.157 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.q12kofv66i.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tiqjr11wdr-{0}-q12kofv66i-q12kofv66i.gz' -2026-01-28 14:11:17.157 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.157 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.q12kofv66i.pdb - 200 40486 application/octet-stream 3.1156ms -2026-01-28 14:11:17.179 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.ugoz0mgqgy.pdb - null null -2026-01-28 14:11:17.180 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.180 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.180 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.180 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.180 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.180 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.180 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.180 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.180 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.180 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.180 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.180 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.180 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.180 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.180 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.180 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.180 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.180 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.180 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.180 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.180 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.180 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.181 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.ugoz0mgqgy.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3z9ena93oc-{0}-ugoz0mgqgy-ugoz0mgqgy.gz' -2026-01-28 14:11:17.181 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.181 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.ugoz0mgqgy.pdb - 200 31293 application/octet-stream 1.6148ms -2026-01-28 14:11:17.185 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.WebAssembly.imimiyzcuo.pdb - null null -2026-01-28 14:11:17.185 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.185 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.185 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.185 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.185 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.185 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.185 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.185 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.185 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.185 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.185 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.185 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.185 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.185 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.186 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.186 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.186 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.186 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.186 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.186 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.186 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.186 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.186 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Autofac.WebAssembly.imimiyzcuo.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\46uzmq97el-{0}-imimiyzcuo-imimiyzcuo.gz' -2026-01-28 14:11:17.186 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.186 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.WebAssembly.imimiyzcuo.pdb - 200 17837 application/octet-stream 1.5539ms -2026-01-28 14:11:17.191 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.xhf7sa1p5x.pdb - null null -2026-01-28 14:11:17.192 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.192 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.192 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.192 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.192 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.192 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.192 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.192 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.192 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.192 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.192 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.192 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.192 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.192 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.192 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.192 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.192 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.192 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.192 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.192 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.192 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.193 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.193 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.xhf7sa1p5x.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nvmr6rtxm8-{0}-xhf7sa1p5x-xhf7sa1p5x.gz' -2026-01-28 14:11:17.193 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.193 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.xhf7sa1p5x.pdb - 200 18717 application/octet-stream 2.0158ms -2026-01-28 14:11:17.199 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.aauy841uql.pdb - null null -2026-01-28 14:11:17.199 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.200 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.200 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.200 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.200 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.200 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.200 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.200 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.200 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.200 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.200 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.200 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.200 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.200 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.200 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.200 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.200 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.200 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.200 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.200 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.200 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.200 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.201 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.aauy841uql.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2jefoohlw9-{0}-aauy841uql-aauy841uql.gz' -2026-01-28 14:11:17.201 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.201 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.aauy841uql.pdb - 200 18717 application/octet-stream 1.7115ms -2026-01-28 14:11:17.207 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.gbnu5lon3p.pdb - null null -2026-01-28 14:11:17.207 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.207 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.207 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.207 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.207 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.207 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.207 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.207 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.207 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.207 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.207 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.207 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.207 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.208 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.208 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.208 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.208 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.208 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.208 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.208 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.208 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.208 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.209 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.gbnu5lon3p.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\yqm8xk8yh0-{0}-gbnu5lon3p-gbnu5lon3p.gz' -2026-01-28 14:11:17.209 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.209 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.gbnu5lon3p.pdb - 200 18277 application/octet-stream 1.7565ms -2026-01-28 14:11:17.214 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.HttpApi.Client.puryd8tfts.pdb - null null -2026-01-28 14:11:17.214 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.214 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.214 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.214 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.214 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.214 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.214 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.214 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.214 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.214 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.214 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.215 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.215 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.215 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.215 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.215 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.215 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.215 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.215 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.215 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.215 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.215 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.215 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.HttpApi.Client.puryd8tfts.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wa1oh5lir8-{0}-puryd8tfts-puryd8tfts.gz' -2026-01-28 14:11:17.215 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.215 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.HttpApi.Client.puryd8tfts.pdb - 200 18313 application/octet-stream 1.5548ms -2026-01-28 14:11:17.220 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Application.Contracts.q930c1xwd6.pdb - null null -2026-01-28 14:11:17.220 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.220 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.220 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.220 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.220 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.221 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.221 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.221 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.221 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.221 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.221 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.221 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.221 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.221 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.221 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.221 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.221 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.221 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.221 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.221 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.221 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.221 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.222 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Application.Contracts.q930c1xwd6.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7jvwr8mtd4-{0}-q930c1xwd6-q930c1xwd6.gz' -2026-01-28 14:11:17.222 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.222 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Application.Contracts.q930c1xwd6.pdb - 200 17845 application/octet-stream 1.9924ms -2026-01-28 14:11:17.233 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Domain.Shared.bmn2636ymj.pdb - null null -2026-01-28 14:11:17.234 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.234 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.234 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.234 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.234 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.234 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.234 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.234 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.234 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.234 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.234 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.234 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.234 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.234 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.234 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.234 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.234 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.234 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.234 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.234 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.234 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.235 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.235 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Domain.Shared.bmn2636ymj.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rlbmklp40g-{0}-bmn2636ymj-bmn2636ymj.gz' -2026-01-28 14:11:17.235 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.235 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Domain.Shared.bmn2636ymj.pdb - 200 17373 application/octet-stream 1.9137ms -2026-01-28 14:11:17.264 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.tv5yl1psyg.pdb - null null -2026-01-28 14:11:17.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.268 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.268 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.268 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.268 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.268 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.269 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.269 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.269 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.269 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.269 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.269 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.269 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.269 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.269 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.271 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.tv5yl1psyg.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kaxpuw2pqs-{0}-tv5yl1psyg-tv5yl1psyg.gz' -2026-01-28 14:11:17.271 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.271 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.tv5yl1psyg.pdb - 200 21877 application/octet-stream 7.7255ms -2026-01-28 14:11:17.285 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.i3kyf3e5w5.pdb - null null -2026-01-28 14:11:17.285 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.285 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.285 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.285 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.285 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.285 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.285 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.285 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.286 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.286 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.286 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.286 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.286 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.286 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.286 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.286 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.286 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.287 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.i3kyf3e5w5.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3g4acw7rc0-{0}-i3kyf3e5w5-i3kyf3e5w5.gz' -2026-01-28 14:11:17.287 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.287 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.i3kyf3e5w5.pdb - 200 28037 application/octet-stream 1.7261ms -2026-01-28 14:11:17.291 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.hcs1zisgxl.pdb - null null -2026-01-28 14:11:17.291 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.291 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.292 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.292 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.292 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.292 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.292 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.292 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.292 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.292 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.292 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.292 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.292 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.292 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.292 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.292 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.292 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.292 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.292 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.292 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.292 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.292 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.293 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.hcs1zisgxl.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\iqrjqm25rb-{0}-hcs1zisgxl-hcs1zisgxl.gz' -2026-01-28 14:11:17.293 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.293 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.hcs1zisgxl.pdb - 200 41586 application/octet-stream 1.7635ms -2026-01-28 14:11:17.303 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.w6zddju3kj.pdb - null null -2026-01-28 14:11:17.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.303 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.304 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.304 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.304 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.304 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.304 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.304 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.304 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.304 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.304 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.304 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.304 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.304 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.304 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.304 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.304 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.304 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.304 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.304 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.304 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.305 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.305 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.w6zddju3kj.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wynnfd4qyp-{0}-w6zddju3kj-w6zddju3kj.gz' -2026-01-28 14:11:17.305 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.305 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.w6zddju3kj.pdb - 200 31269 application/octet-stream 2.3546ms -2026-01-28 14:11:17.310 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.kgrhtsi4hq.pdb - null null -2026-01-28 14:11:17.310 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.311 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.311 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.311 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.311 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.311 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.311 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.311 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.311 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.311 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.311 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.311 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.311 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.311 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.311 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.311 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.311 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.311 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.311 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.311 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.311 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.311 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.312 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.kgrhtsi4hq.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\htac70xodz-{0}-kgrhtsi4hq-kgrhtsi4hq.gz' -2026-01-28 14:11:17.312 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.312 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.kgrhtsi4hq.pdb - 200 18517 application/octet-stream 1.9471ms -2026-01-28 14:11:17.317 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.mqramojkbo.pdb - null null -2026-01-28 14:11:17.317 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.317 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.317 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.317 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.317 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.317 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.317 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.317 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.317 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.317 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.317 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.317 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.317 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.317 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.317 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.317 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.317 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.317 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.317 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.317 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.318 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.318 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.318 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.mqramojkbo.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mf8v92gj25-{0}-mqramojkbo-mqramojkbo.gz' -2026-01-28 14:11:17.318 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.319 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.mqramojkbo.pdb - 200 13921 application/octet-stream 1.9028ms -2026-01-28 14:11:17.328 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.kbf4e1o5yq.pdb - null null -2026-01-28 14:11:17.328 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.328 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.328 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.328 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.328 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.328 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.328 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.328 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.329 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.329 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.329 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.329 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.329 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.329 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.329 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.329 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.329 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.330 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.kbf4e1o5yq.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\075clw76hm-{0}-kbf4e1o5yq-kbf4e1o5yq.gz' -2026-01-28 14:11:17.330 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.330 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.kbf4e1o5yq.pdb - 200 21557 application/octet-stream 2.7845ms -2026-01-28 14:11:17.339 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.j3nmt0rh5o.pdb - null null -2026-01-28 14:11:17.339 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.339 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.339 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.339 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.339 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.340 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.340 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.340 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.340 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.340 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.340 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.340 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.340 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.340 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.340 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.340 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.340 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.340 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.340 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.340 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.340 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.341 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.341 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.j3nmt0rh5o.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gbgteom76y-{0}-j3nmt0rh5o-j3nmt0rh5o.gz' -2026-01-28 14:11:17.341 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.342 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.j3nmt0rh5o.pdb - 200 31349 application/octet-stream 2.5894ms -2026-01-28 14:11:17.348 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.ej4nfwopnt.pdb - null null -2026-01-28 14:11:17.349 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.349 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.349 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.349 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.349 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.349 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.349 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.349 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.349 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.349 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.349 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.349 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.349 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.349 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.349 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.349 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.349 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.349 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.349 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.349 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.350 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.350 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.350 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Blazor.MudBlazor.ej4nfwopnt.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8c1zm5wt8e-{0}-ej4nfwopnt-ej4nfwopnt.gz' -2026-01-28 14:11:17.350 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.350 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.ej4nfwopnt.pdb - 200 45622 application/octet-stream 1.9552ms -2026-01-28 14:11:17.356 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MudBlazorUI.kagx9siw5c.pdb - null null -2026-01-28 14:11:17.356 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.356 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.357 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.357 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.357 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.357 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.357 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.357 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.357 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.357 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.357 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.357 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.357 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.357 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.357 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.357 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.357 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.357 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.357 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.357 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.357 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.357 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.358 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MudBlazorUI.kagx9siw5c.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fb4n2yszse-{0}-kagx9siw5c-kagx9siw5c.gz' -2026-01-28 14:11:17.359 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.359 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MudBlazorUI.kagx9siw5c.pdb - 200 75523 application/octet-stream 2.6321ms -2026-01-28 14:11:17.365 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.h9wobfk88b.pdb - null null -2026-01-28 14:11:17.365 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.365 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.365 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.365 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.365 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.365 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.365 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.365 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.365 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.365 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.365 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.365 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.365 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.365 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.366 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.366 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.366 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.366 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.366 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.366 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.366 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.366 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.366 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.h9wobfk88b.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ouhgkzthum-{0}-h9wobfk88b-h9wobfk88b.gz' -2026-01-28 14:11:17.366 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.366 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.h9wobfk88b.pdb - 200 42806 application/octet-stream 1.6663ms -2026-01-28 14:11:17.372 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.sff8ai0aia.pdb - null null -2026-01-28 14:11:17.372 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.373 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.373 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.373 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.373 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.373 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.373 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.373 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.373 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.373 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.373 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.373 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.373 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.373 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.374 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.374 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.374 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.374 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.374 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.374 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.374 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.374 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.374 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.sff8ai0aia.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xdm6fxeedd-{0}-sff8ai0aia-sff8ai0aia.gz' -2026-01-28 14:11:17.374 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.375 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.sff8ai0aia.pdb - 200 18145 application/octet-stream 2.6938ms -2026-01-28 14:11:17.380 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.6hy2xofs6k.pdb - null null -2026-01-28 14:11:17.380 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.380 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.380 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.380 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.380 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.381 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.381 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.381 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.381 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.381 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.381 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.381 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.381 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.381 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.381 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.382 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.6hy2xofs6k.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wvossyu6ah-{0}-6hy2xofs6k-6hy2xofs6k.gz' -2026-01-28 14:11:17.382 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.382 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.6hy2xofs6k.pdb - 200 41322 application/octet-stream 2.4003ms -2026-01-28 14:11:17.387 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.phiqfrt9c2.pdb - null null -2026-01-28 14:11:17.387 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.388 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.388 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.388 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.388 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.388 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.388 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.388 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.388 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.388 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.388 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.388 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.388 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.388 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.388 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.389 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.389 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.389 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.389 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.phiqfrt9c2.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mq253tbkc6-{0}-phiqfrt9c2-phiqfrt9c2.gz' -2026-01-28 14:11:17.389 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.390 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.phiqfrt9c2.pdb - 200 28197 application/octet-stream 2.4847ms -2026-01-28 14:11:17.395 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.Application.Contracts.lnhr5y4bfl.pdb - null null -2026-01-28 14:11:17.395 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.395 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.395 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.395 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.395 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.395 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.395 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.396 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.396 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.396 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.396 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.396 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.396 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.396 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.396 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.396 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.397 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Account.Application.Contracts.lnhr5y4bfl.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uzxye9p8cy-{0}-lnhr5y4bfl-lnhr5y4bfl.gz' -2026-01-28 14:11:17.397 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.397 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.Application.Contracts.lnhr5y4bfl.pdb - 200 19021 application/octet-stream 1.7388ms -2026-01-28 14:11:17.401 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.HttpApi.Client.vbwanrrdq2.pdb - null null -2026-01-28 14:11:17.402 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.402 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.402 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.402 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.402 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.402 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.402 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.402 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.402 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.402 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.402 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.402 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.402 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.402 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.402 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.402 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.402 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.402 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.402 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.402 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.402 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.402 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.403 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Account.HttpApi.Client.vbwanrrdq2.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ntmq6e7ewr-{0}-vbwanrrdq2-vbwanrrdq2.gz' -2026-01-28 14:11:17.403 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.403 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.HttpApi.Client.vbwanrrdq2.pdb - 200 18073 application/octet-stream 1.79ms -2026-01-28 14:11:17.410 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.hpzdukhxsy.pdb - null null -2026-01-28 14:11:17.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.410 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.410 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.410 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.410 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.410 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.410 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.411 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.411 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.411 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.411 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.411 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.411 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.411 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.411 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.411 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.hpzdukhxsy.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\eoau05i0af-{0}-hpzdukhxsy-hpzdukhxsy.gz' -2026-01-28 14:11:17.411 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.411 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.hpzdukhxsy.pdb - 200 25305 application/octet-stream 1.7233ms -2026-01-28 14:11:17.416 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Contracts.4guztbzukr.pdb - null null -2026-01-28 14:11:17.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.417 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.417 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.417 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.417 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.417 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.417 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.417 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.417 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.417 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.417 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.417 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.417 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.417 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.418 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.418 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.Contracts.4guztbzukr.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ur1wb3r0pv-{0}-4guztbzukr-4guztbzukr.gz' -2026-01-28 14:11:17.418 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.418 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Contracts.4guztbzukr.pdb - 200 26921 application/octet-stream 1.78ms -2026-01-28 14:11:17.423 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.3fgrvz25ex.pdb - null null -2026-01-28 14:11:17.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.424 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.424 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.425 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.425 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.425 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.425 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.425 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.425 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.425 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.425 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.426 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Auditing.3fgrvz25ex.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\o0dl3ao57v-{0}-3fgrvz25ex-3fgrvz25ex.gz' -2026-01-28 14:11:17.426 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.426 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.3fgrvz25ex.pdb - 200 29913 application/octet-stream 2.2646ms -2026-01-28 14:11:17.430 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.Contracts.ad5k0tpyib.pdb - null null -2026-01-28 14:11:17.430 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.430 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.430 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.430 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.430 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.430 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.430 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.430 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.430 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.430 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.430 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.430 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.430 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.430 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.431 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.431 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.431 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.431 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.431 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.431 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.431 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.431 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.431 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Auditing.Contracts.ad5k0tpyib.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wqxp9ykz4o-{0}-ad5k0tpyib-ad5k0tpyib.gz' -2026-01-28 14:11:17.431 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.431 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.Contracts.ad5k0tpyib.pdb - 200 14417 application/octet-stream 1.8116ms -2026-01-28 14:11:17.435 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AuditLogging.Domain.Shared.er7pf6ix9i.pdb - null null -2026-01-28 14:11:17.436 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.436 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.436 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.436 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.436 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.436 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.436 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.436 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.436 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.436 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.436 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.436 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.436 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.436 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.436 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.436 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.436 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.436 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.436 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.436 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.436 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.437 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.437 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AuditLogging.Domain.Shared.er7pf6ix9i.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5199po5zxq-{0}-er7pf6ix9i-er7pf6ix9i.gz' -2026-01-28 14:11:17.437 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.437 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AuditLogging.Domain.Shared.er7pf6ix9i.pdb - 200 16493 application/octet-stream 1.8357ms -2026-01-28 14:11:17.442 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.c2wpqbl74n.pdb - null null -2026-01-28 14:11:17.442 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.442 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.442 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.442 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.442 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.442 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.442 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.442 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.442 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.442 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.442 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.442 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.442 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.442 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.443 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.443 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.443 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.443 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.443 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.443 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.443 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.443 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.443 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Authorization.c2wpqbl74n.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sb9kt3tht9-{0}-c2wpqbl74n-c2wpqbl74n.gz' -2026-01-28 14:11:17.443 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.443 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.c2wpqbl74n.pdb - 200 41330 application/octet-stream 1.7168ms -2026-01-28 14:11:17.450 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.Abstractions.njkrkpdqox.pdb - null null -2026-01-28 14:11:17.450 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.450 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.450 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.450 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.450 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.451 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.451 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.451 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.451 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.451 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.451 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.451 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.451 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.451 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.451 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.451 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.451 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.451 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.451 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.451 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.451 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.451 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.452 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Authorization.Abstractions.njkrkpdqox.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\09yc6y4n5e-{0}-njkrkpdqox-njkrkpdqox.gz' -2026-01-28 14:11:17.452 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.452 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.Abstractions.njkrkpdqox.pdb - 200 27181 application/octet-stream 2.3143ms -2026-01-28 14:11:17.467 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.gjl6v1jjym.pdb - null null -2026-01-28 14:11:17.467 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.467 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.467 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.467 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.467 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.467 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.467 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.467 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.467 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.468 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.468 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.468 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.468 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.468 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.468 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.468 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.468 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.468 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.469 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Autofac.gjl6v1jjym.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jpkrtenkjs-{0}-gjl6v1jjym-gjl6v1jjym.gz' -2026-01-28 14:11:17.469 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.470 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.gjl6v1jjym.pdb - 200 18693 application/octet-stream 2.8289ms -2026-01-28 14:11:17.479 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundJobs.Domain.Shared.5vpn00cswb.pdb - null null -2026-01-28 14:11:17.479 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.479 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.479 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.479 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.479 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.479 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.479 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.479 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.479 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.479 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.479 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.479 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.479 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.479 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.480 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.480 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.480 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.480 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.480 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.480 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.480 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.480 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.480 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BackgroundJobs.Domain.Shared.5vpn00cswb.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\htaazompkm-{0}-5vpn00cswb-5vpn00cswb.gz' -2026-01-28 14:11:17.480 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.480 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundJobs.Domain.Shared.5vpn00cswb.pdb - 200 13221 application/octet-stream 1.4777ms -2026-01-28 14:11:17.492 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundWorkers.huyj44uu0k.pdb - null null -2026-01-28 14:11:17.492 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.493 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.493 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.493 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.493 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.493 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.493 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.493 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.493 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.493 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.493 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.493 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.493 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.493 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.493 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.493 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.493 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.493 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.493 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.493 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.493 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.493 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.494 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BackgroundWorkers.huyj44uu0k.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ei0v3zqng-{0}-huyj44uu0k-huyj44uu0k.gz' -2026-01-28 14:11:17.494 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.494 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundWorkers.huyj44uu0k.pdb - 200 19469 application/octet-stream 1.758ms -2026-01-28 14:11:17.498 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Caching.x1qmvuwbas.pdb - null null -2026-01-28 14:11:17.499 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.499 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.499 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.499 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.499 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.499 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.499 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.499 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.499 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.499 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.499 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.499 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.499 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.499 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.499 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.499 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.499 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.499 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.499 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.499 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.499 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.500 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.500 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Caching.x1qmvuwbas.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wokijgaifq-{0}-x1qmvuwbas-x1qmvuwbas.gz' -2026-01-28 14:11:17.500 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.500 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Caching.x1qmvuwbas.pdb - 200 37286 application/octet-stream 1.8051ms -2026-01-28 14:11:17.505 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Castle.Core.b02it10il0.pdb - null null -2026-01-28 14:11:17.506 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.506 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.506 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.506 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.506 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.506 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.506 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.506 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.506 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.506 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.506 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.506 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.506 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.506 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.506 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.506 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.506 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.506 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.506 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.507 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.507 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.507 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.507 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Castle.Core.b02it10il0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dte7v0ocsr-{0}-b02it10il0-b02it10il0.gz' -2026-01-28 14:11:17.507 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.507 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Castle.Core.b02it10il0.pdb - 200 15221 application/octet-stream 2.045ms -2026-01-28 14:11:17.512 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Core.t1nnzj3qxb.pdb - null null -2026-01-28 14:11:17.513 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.513 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.513 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.513 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.513 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.513 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.513 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.513 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.513 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.513 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.513 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.513 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.513 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.513 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.513 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.513 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.513 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.513 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.513 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.513 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.513 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.514 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.515 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Core.t1nnzj3qxb.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c42x4ftr8l-{0}-t1nnzj3qxb-t1nnzj3qxb.gz' -2026-01-28 14:11:17.515 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.515 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Core.t1nnzj3qxb.pdb - 200 148177 application/octet-stream 2.5457ms -2026-01-28 14:11:17.520 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Data.9rv6w6qyku.pdb - null null -2026-01-28 14:11:17.520 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.520 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.520 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.520 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.520 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.521 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.521 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.521 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.521 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.521 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.521 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.521 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.521 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.521 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.521 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.521 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.521 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.521 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.521 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.521 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.521 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.521 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.522 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Data.9rv6w6qyku.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ze3wjukds-{0}-9rv6w6qyku-9rv6w6qyku.gz' -2026-01-28 14:11:17.522 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.522 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Data.9rv6w6qyku.pdb - 200 21821 application/octet-stream 2.2815ms -2026-01-28 14:11:17.529 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Ddd.Application.Contracts.giee71sla7.pdb - null null -2026-01-28 14:11:17.529 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.529 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.529 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.529 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.529 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.529 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.529 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.529 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.529 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.529 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.529 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.529 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.529 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.529 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.530 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.530 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.530 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.530 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.530 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.530 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.530 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.530 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.530 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Ddd.Application.Contracts.giee71sla7.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5aiafzhp1m-{0}-giee71sla7-giee71sla7.gz' -2026-01-28 14:11:17.530 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.530 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Ddd.Application.Contracts.giee71sla7.pdb - 200 23417 application/octet-stream 1.4939ms -2026-01-28 14:11:17.535 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.DistributedLocking.Abstractions.65nua6uxpe.pdb - null null -2026-01-28 14:11:17.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.535 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.535 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.535 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.535 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.536 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.549 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.549 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.549 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.549 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.549 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.549 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.549 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.549 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.550 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.550 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.550 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.550 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.550 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.550 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.550 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.550 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.550 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.DistributedLocking.Abstractions.65nua6uxpe.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\a8j0sb24cp-{0}-65nua6uxpe-65nua6uxpe.gz' -2026-01-28 14:11:17.550 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.550 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.DistributedLocking.Abstractions.65nua6uxpe.pdb - 200 14657 application/octet-stream 15.3097ms -2026-01-28 14:11:17.555 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.iceog8f4b1.pdb - null null -2026-01-28 14:11:17.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.555 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.555 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.555 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.555 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.556 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.556 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.556 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.556 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.556 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.556 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.556 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.556 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.556 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.556 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.556 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.556 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.556 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.556 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.556 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.556 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.556 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.557 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.EventBus.iceog8f4b1.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c7ycdiyl76-{0}-iceog8f4b1-iceog8f4b1.gz' -2026-01-28 14:11:17.557 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.557 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.iceog8f4b1.pdb - 200 37630 application/octet-stream 1.7872ms -2026-01-28 14:11:17.562 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.Abstractions.xi5e4z12z9.pdb - null null -2026-01-28 14:11:17.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.562 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.563 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.563 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.563 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.563 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.563 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.563 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.563 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.563 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.563 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.563 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.563 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.563 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.563 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.563 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.563 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.563 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.563 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.EventBus.Abstractions.xi5e4z12z9.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\w7l86von3o-{0}-xi5e4z12z9-xi5e4z12z9.gz' -2026-01-28 14:11:17.563 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.563 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.Abstractions.xi5e4z12z9.pdb - 200 20237 application/octet-stream 1.4191ms -2026-01-28 14:11:17.569 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ExceptionHandling.25h2gy8c5p.pdb - null null -2026-01-28 14:11:17.569 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.569 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.569 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.569 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.569 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.569 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.569 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.569 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.569 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.569 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.569 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.569 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.569 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.569 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.570 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.570 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.570 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.570 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.570 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.570 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.570 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.570 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.570 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ExceptionHandling.25h2gy8c5p.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\m6s0vb39gb-{0}-25h2gy8c5p-25h2gy8c5p.gz' -2026-01-28 14:11:17.570 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.570 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ExceptionHandling.25h2gy8c5p.pdb - 200 20157 application/octet-stream 1.7603ms -2026-01-28 14:11:17.576 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Application.Contracts.0urd6kcrgp.pdb - null null -2026-01-28 14:11:17.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.577 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.577 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.577 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.577 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.577 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.577 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.577 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.577 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.577 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.577 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.577 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.577 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.577 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.578 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.578 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Application.Contracts.0urd6kcrgp.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0ru1qvb3x4-{0}-0urd6kcrgp-0urd6kcrgp.gz' -2026-01-28 14:11:17.578 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.578 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Application.Contracts.0urd6kcrgp.pdb - 200 16981 application/octet-stream 1.5907ms -2026-01-28 14:11:17.582 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Domain.Shared.4mozmqu5fv.pdb - null null -2026-01-28 14:11:17.583 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.583 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.583 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.583 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.583 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.583 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.583 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.583 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.583 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.583 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.583 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.583 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.583 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.583 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.583 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.583 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.583 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.583 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.583 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.583 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.583 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.583 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.584 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Domain.Shared.4mozmqu5fv.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dnjx07a9gy-{0}-4mozmqu5fv-4mozmqu5fv.gz' -2026-01-28 14:11:17.584 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.584 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Domain.Shared.4mozmqu5fv.pdb - 200 18405 application/octet-stream 1.4996ms -2026-01-28 14:11:17.589 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.HttpApi.Client.3n7n0nm412.pdb - null null -2026-01-28 14:11:17.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.589 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.589 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.589 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.589 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.590 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.590 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.590 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.590 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.590 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.590 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.590 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.590 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.590 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.590 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.590 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.590 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.590 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.590 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.590 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.590 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.590 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.591 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.HttpApi.Client.3n7n0nm412.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xephdxvmqy-{0}-3n7n0nm412-3n7n0nm412.gz' -2026-01-28 14:11:17.591 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.591 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.HttpApi.Client.3n7n0nm412.pdb - 200 16661 application/octet-stream 1.6759ms -2026-01-28 14:11:17.595 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Features.e0wztgo5kc.pdb - null null -2026-01-28 14:11:17.596 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.596 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.596 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.596 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.596 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.596 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.596 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.596 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.596 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.596 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.596 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.596 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.596 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.596 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.596 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.596 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.596 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.596 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.596 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.596 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.596 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.596 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.597 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Features.e0wztgo5kc.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lwwrm2rnuk-{0}-e0wztgo5kc-e0wztgo5kc.gz' -2026-01-28 14:11:17.597 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.597 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Features.e0wztgo5kc.pdb - 200 31093 application/octet-stream 1.4748ms -2026-01-28 14:11:17.602 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.GlobalFeatures.i3mx9avsa1.pdb - null null -2026-01-28 14:11:17.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.602 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.602 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.602 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.602 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.602 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.602 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.602 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.602 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.602 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.603 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.603 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.GlobalFeatures.i3mx9avsa1.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8hrz94lbbq-{0}-i3mx9avsa1-i3mx9avsa1.gz' -2026-01-28 14:11:17.603 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.603 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.GlobalFeatures.i3mx9avsa1.pdb - 200 20401 application/octet-stream 1.6017ms -2026-01-28 14:11:17.609 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Guids.trl9ec6i34.pdb - null null -2026-01-28 14:11:17.609 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.609 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.609 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.609 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.609 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.610 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.610 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.610 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.610 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.610 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.610 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.610 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.610 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.610 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.610 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.610 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.610 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.610 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.610 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.610 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.610 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.610 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.611 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Guids.trl9ec6i34.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0qqhgjay94-{0}-trl9ec6i34-trl9ec6i34.gz' -2026-01-28 14:11:17.611 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.611 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Guids.trl9ec6i34.pdb - 200 14061 application/octet-stream 1.5925ms -2026-01-28 14:11:17.616 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.e49tj9fcht.pdb - null null -2026-01-28 14:11:17.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.616 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.616 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.616 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.616 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.616 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.616 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.617 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.617 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.617 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.617 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.617 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.617 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.617 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.617 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.617 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.e49tj9fcht.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b3mu9af069-{0}-e49tj9fcht-e49tj9fcht.gz' -2026-01-28 14:11:17.617 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.617 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.e49tj9fcht.pdb - 200 31453 application/octet-stream 1.5161ms -2026-01-28 14:11:17.621 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Abstractions.k3c9afe7hi.pdb - null null -2026-01-28 14:11:17.621 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.621 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.621 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.621 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.621 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.622 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.622 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.622 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.622 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.622 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.622 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.622 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.622 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.622 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.622 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.622 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.622 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.622 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.622 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.622 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.622 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.622 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.623 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Abstractions.k3c9afe7hi.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j4y3kuv6se-{0}-k3c9afe7hi-k3c9afe7hi.gz' -2026-01-28 14:11:17.623 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.623 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Abstractions.k3c9afe7hi.pdb - 200 13525 application/octet-stream 2.0688ms -2026-01-28 14:11:17.627 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.yru01o8vkp.pdb - null null -2026-01-28 14:11:17.628 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.628 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.628 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.628 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.628 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.628 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.628 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.628 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.628 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.628 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.628 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.628 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.628 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.628 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.628 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.628 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.628 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.628 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.628 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.628 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.628 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.628 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.629 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.yru01o8vkp.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ttya30eyt8-{0}-yru01o8vkp-yru01o8vkp.gz' -2026-01-28 14:11:17.629 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.629 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.yru01o8vkp.pdb - 200 38918 application/octet-stream 1.6499ms -2026-01-28 14:11:17.634 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.3tflefedmx.pdb - null null -2026-01-28 14:11:17.634 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.634 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.634 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.634 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.634 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.634 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.635 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.635 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.635 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.635 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.635 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.635 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.635 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.635 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.635 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.635 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.IdentityModel.3tflefedmx.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\d3rz4s2afx-{0}-3tflefedmx-3tflefedmx.gz' -2026-01-28 14:11:17.635 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.636 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.3tflefedmx.pdb - 200 16433 application/octet-stream 1.5818ms -2026-01-28 14:11:17.642 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Application.Contracts.csmzqgy4d0.pdb - null null -2026-01-28 14:11:17.642 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.642 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.643 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.643 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.643 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.643 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.643 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.643 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.643 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.643 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.643 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.643 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.643 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.643 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.643 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.644 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Application.Contracts.csmzqgy4d0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\h1go2ee35q-{0}-csmzqgy4d0-csmzqgy4d0.gz' -2026-01-28 14:11:17.644 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.644 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Application.Contracts.csmzqgy4d0.pdb - 200 20665 application/octet-stream 1.6813ms -2026-01-28 14:11:17.649 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Domain.Shared.earp2x5g6u.pdb - null null -2026-01-28 14:11:17.649 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.649 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.649 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.650 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.650 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.650 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.650 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.650 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.650 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.650 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.650 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.650 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.650 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.650 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.650 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.650 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.650 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.650 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.650 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.650 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.650 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.650 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.651 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Domain.Shared.earp2x5g6u.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wq3qylwiyp-{0}-earp2x5g6u-earp2x5g6u.gz' -2026-01-28 14:11:17.651 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.651 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Domain.Shared.earp2x5g6u.pdb - 200 23785 application/octet-stream 1.6606ms -2026-01-28 14:11:17.658 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.HttpApi.Client.4ey4wjeneg.pdb - null null -2026-01-28 14:11:17.658 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.658 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.658 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.658 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.658 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.659 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.659 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.659 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.659 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.659 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.659 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.659 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.659 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.659 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.659 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.660 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.HttpApi.Client.4ey4wjeneg.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0u48eqlsj4-{0}-4ey4wjeneg-4ey4wjeneg.gz' -2026-01-28 14:11:17.660 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.660 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.HttpApi.Client.4ey4wjeneg.pdb - 200 23337 application/octet-stream 1.717ms -2026-01-28 14:11:17.665 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.IdentityModel.biic7mtw2y.pdb - null null -2026-01-28 14:11:17.665 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.666 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.666 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.666 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.666 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.666 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.666 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.666 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.666 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.666 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.666 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.666 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.666 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.666 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.666 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.667 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.IdentityModel.biic7mtw2y.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\poi5v0je1c-{0}-biic7mtw2y-biic7mtw2y.gz' -2026-01-28 14:11:17.667 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.667 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.IdentityModel.biic7mtw2y.pdb - 200 20817 application/octet-stream 1.4418ms -2026-01-28 14:11:17.671 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.wxbyyf07mz.pdb - null null -2026-01-28 14:11:17.672 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.672 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.672 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.672 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.672 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.672 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.672 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.672 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.672 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.672 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.672 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.672 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.672 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.672 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.673 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.673 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.673 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.673 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.673 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.673 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.673 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.673 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.673 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.wxbyyf07mz.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rrchruuh0t-{0}-wxbyyf07mz-wxbyyf07mz.gz' -2026-01-28 14:11:17.673 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.673 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.wxbyyf07mz.pdb - 200 13757 application/octet-stream 1.9186ms -2026-01-28 14:11:17.677 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.Abstractions.b6z6t2mhzy.pdb - null null -2026-01-28 14:11:17.678 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.678 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.678 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.678 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.678 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.678 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.678 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.678 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.678 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.678 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.678 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.678 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.678 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.678 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.678 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.678 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.678 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.678 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.678 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.678 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.678 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.678 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.679 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.Abstractions.b6z6t2mhzy.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\u9w5uxptpu-{0}-b6z6t2mhzy-b6z6t2mhzy.gz' -2026-01-28 14:11:17.679 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.679 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.Abstractions.b6z6t2mhzy.pdb - 200 13249 application/octet-stream 1.5656ms -2026-01-28 14:11:17.683 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.SystemTextJson.rdlvucrzj7.pdb - null null -2026-01-28 14:11:17.683 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.683 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.684 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.684 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.684 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.684 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.684 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.684 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.684 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.684 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.684 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.684 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.684 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.684 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.684 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.684 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.684 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.684 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.684 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.684 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.684 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.684 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.685 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.SystemTextJson.rdlvucrzj7.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4rl2glc87e-{0}-rdlvucrzj7-rdlvucrzj7.gz' -2026-01-28 14:11:17.685 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.685 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.SystemTextJson.rdlvucrzj7.pdb - 200 21501 application/octet-stream 1.5235ms -2026-01-28 14:11:17.690 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.ellkzq2obz.pdb - null null -2026-01-28 14:11:17.690 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.691 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.691 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.691 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.691 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.691 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.691 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.691 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.691 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.691 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.691 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.691 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.691 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.691 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.691 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.692 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Localization.ellkzq2obz.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9jz0202bvx-{0}-ellkzq2obz-ellkzq2obz.gz' -2026-01-28 14:11:17.692 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.692 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.ellkzq2obz.pdb - 200 34682 application/octet-stream 1.611ms -2026-01-28 14:11:17.696 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.Abstractions.e2czzeh6g0.pdb - null null -2026-01-28 14:11:17.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.697 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.697 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.697 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.697 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.697 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.697 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.697 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.697 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.697 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.697 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.697 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.697 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.697 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.698 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.698 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Localization.Abstractions.e2czzeh6g0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nql43ug6yv-{0}-e2czzeh6g0-e2czzeh6g0.gz' -2026-01-28 14:11:17.698 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.698 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.Abstractions.e2czzeh6g0.pdb - 200 16505 application/octet-stream 1.7081ms -2026-01-28 14:11:17.704 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Mapperly.xzmrwcbuer.pdb - null null -2026-01-28 14:11:17.704 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.704 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.704 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.704 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.704 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.705 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.705 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.705 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.705 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.705 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.705 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.705 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.705 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.705 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.705 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.705 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.705 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.705 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.705 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.705 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.705 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.705 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.706 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Mapperly.xzmrwcbuer.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ir90d0l0q4-{0}-xzmrwcbuer-xzmrwcbuer.gz' -2026-01-28 14:11:17.706 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.706 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Mapperly.xzmrwcbuer.pdb - 200 18489 application/octet-stream 2.1681ms -2026-01-28 14:11:17.710 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Minify.jd3swzgz81.pdb - null null -2026-01-28 14:11:17.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.711 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.711 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.711 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.711 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.711 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.711 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.711 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.711 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.711 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.711 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.711 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.711 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.711 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.711 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.712 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Minify.jd3swzgz81.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6nicogsytc-{0}-jd3swzgz81-jd3swzgz81.gz' -2026-01-28 14:11:17.712 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.712 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Minify.jd3swzgz81.pdb - 200 14637 application/octet-stream 2.0464ms -2026-01-28 14:11:17.717 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.m645p8frzn.pdb - null null -2026-01-28 14:11:17.717 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.717 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.717 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.717 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.717 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.717 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.717 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.717 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.717 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.717 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.717 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.717 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.717 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.718 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.718 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.718 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.718 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.718 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.718 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.718 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.718 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.718 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.718 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MultiTenancy.m645p8frzn.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xypgrhxtpa-{0}-m645p8frzn-m645p8frzn.gz' -2026-01-28 14:11:17.718 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.719 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.m645p8frzn.pdb - 200 21073 application/octet-stream 1.7168ms -2026-01-28 14:11:17.724 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.Abstractions.6usxju90tg.pdb - null null -2026-01-28 14:11:17.724 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.724 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.724 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.724 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.724 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.725 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.725 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.725 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.725 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.725 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.725 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.725 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.725 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.725 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.725 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.725 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.725 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.725 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.725 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.725 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.725 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.725 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.726 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MultiTenancy.Abstractions.6usxju90tg.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bwd6m19o6e-{0}-6usxju90tg-6usxju90tg.gz' -2026-01-28 14:11:17.726 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.726 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.Abstractions.6usxju90tg.pdb - 200 19661 application/octet-stream 1.869ms -2026-01-28 14:11:17.731 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectExtending.vubnqxtt45.pdb - null null -2026-01-28 14:11:17.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.731 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.731 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.731 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.731 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.731 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.731 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.731 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.731 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.731 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.731 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.731 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.731 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.731 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.732 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.732 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ObjectExtending.vubnqxtt45.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wybocaa0up-{0}-vubnqxtt45-vubnqxtt45.gz' -2026-01-28 14:11:17.732 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.732 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectExtending.vubnqxtt45.pdb - 200 31977 application/octet-stream 1.5961ms -2026-01-28 14:11:17.739 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectMapping.5ggcg7w9e7.pdb - null null -2026-01-28 14:11:17.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.740 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.740 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.740 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.740 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.740 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.740 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.740 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.740 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.740 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.740 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.740 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.740 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.740 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.740 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.741 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ObjectMapping.5ggcg7w9e7.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fsnac4k4sd-{0}-5ggcg7w9e7-5ggcg7w9e7.gz' -2026-01-28 14:11:17.741 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.741 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectMapping.5ggcg7w9e7.pdb - 200 17133 application/octet-stream 1.6338ms -2026-01-28 14:11:17.747 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.OpenIddict.Domain.Shared.z584yb9x48.pdb - null null -2026-01-28 14:11:17.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.747 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.747 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.747 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.747 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.747 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.747 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.748 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.748 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.748 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.748 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.748 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.748 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.748 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.748 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.748 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.OpenIddict.Domain.Shared.z584yb9x48.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ofhohlcsdd-{0}-z584yb9x48-z584yb9x48.gz' -2026-01-28 14:11:17.748 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.748 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.OpenIddict.Domain.Shared.z584yb9x48.pdb - 200 17397 application/octet-stream 1.3746ms -2026-01-28 14:11:17.753 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Application.Contracts.yiquol1hlc.pdb - null null -2026-01-28 14:11:17.754 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.754 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.754 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.754 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.754 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.754 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.754 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.754 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.754 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.754 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.754 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.754 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.754 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.754 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.754 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.754 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.754 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.754 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.754 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.754 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.754 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.755 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.756 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Application.Contracts.yiquol1hlc.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0j5tpaf1fb-{0}-yiquol1hlc-yiquol1hlc.gz' -2026-01-28 14:11:17.756 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.756 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Application.Contracts.yiquol1hlc.pdb - 200 18373 application/octet-stream 2.2685ms -2026-01-28 14:11:17.761 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Domain.Shared.vduqctl6j9.pdb - null null -2026-01-28 14:11:17.761 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.761 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.761 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.761 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.761 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.762 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.762 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.762 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.762 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.762 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.762 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.762 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.762 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.762 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.762 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.763 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Domain.Shared.vduqctl6j9.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c9ti4wxngh-{0}-vduqctl6j9-vduqctl6j9.gz' -2026-01-28 14:11:17.763 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.763 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Domain.Shared.vduqctl6j9.pdb - 200 16501 application/octet-stream 1.5211ms -2026-01-28 14:11:17.767 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.HttpApi.Client.3dsrqtlur0.pdb - null null -2026-01-28 14:11:17.767 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.767 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.767 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.767 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.767 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.767 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.767 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.767 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.767 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.767 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.767 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.767 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.767 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.767 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.767 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.767 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.767 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.768 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.768 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.768 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.768 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.768 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.768 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.HttpApi.Client.3dsrqtlur0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7d7e24takc-{0}-3dsrqtlur0-3dsrqtlur0.gz' -2026-01-28 14:11:17.768 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.768 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.HttpApi.Client.3dsrqtlur0.pdb - 200 18361 application/octet-stream 1.5778ms -2026-01-28 14:11:17.772 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.RemoteServices.f0xptgiufw.pdb - null null -2026-01-28 14:11:17.773 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.773 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.773 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.773 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.773 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.773 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.773 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.773 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.773 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.773 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.773 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.773 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.773 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.773 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.773 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.773 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.773 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.773 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.773 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.773 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.773 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.774 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.774 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.RemoteServices.f0xptgiufw.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uib6a0l2w6-{0}-f0xptgiufw-f0xptgiufw.gz' -2026-01-28 14:11:17.774 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.774 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.RemoteServices.f0xptgiufw.pdb - 200 16053 application/octet-stream 1.8199ms -2026-01-28 14:11:17.779 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Security.zhp0sm48kb.pdb - null null -2026-01-28 14:11:17.779 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.779 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.779 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.779 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.779 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.779 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.779 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.779 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.779 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.779 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.779 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.779 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.779 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.779 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.780 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.780 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.780 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.780 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.780 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.780 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.780 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.780 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.781 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Security.zhp0sm48kb.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sx6n9iy4yj-{0}-zhp0sm48kb-zhp0sm48kb.gz' -2026-01-28 14:11:17.781 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.781 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Security.zhp0sm48kb.pdb - 200 29941 application/octet-stream 1.9214ms -2026-01-28 14:11:17.785 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Serialization.iselyci50i.pdb - null null -2026-01-28 14:11:17.785 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.785 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.785 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.785 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.785 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.786 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.786 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.786 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.786 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.786 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.786 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.786 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.786 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.786 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.786 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.787 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Serialization.iselyci50i.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ohz7m9cvuj-{0}-iselyci50i-iselyci50i.gz' -2026-01-28 14:11:17.787 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.787 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Serialization.iselyci50i.pdb - 200 13901 application/octet-stream 1.5523ms -2026-01-28 14:11:17.791 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Application.Contracts.oa8ze5tkwx.pdb - null null -2026-01-28 14:11:17.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.791 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.791 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.791 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.791 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.792 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.792 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.792 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.792 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.792 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.792 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.792 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.792 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.792 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.792 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.793 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Application.Contracts.oa8ze5tkwx.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n5hx9tj0h8-{0}-oa8ze5tkwx-oa8ze5tkwx.gz' -2026-01-28 14:11:17.793 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.793 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Application.Contracts.oa8ze5tkwx.pdb - 200 17249 application/octet-stream 2.2379ms -2026-01-28 14:11:17.797 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Domain.Shared.rb0zy7dgue.pdb - null null -2026-01-28 14:11:17.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.798 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.798 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.798 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.798 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.798 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.798 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.798 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.798 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.798 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.798 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.798 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.798 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.798 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.799 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.799 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Domain.Shared.rb0zy7dgue.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gpxmodrted-{0}-rb0zy7dgue-rb0zy7dgue.gz' -2026-01-28 14:11:17.799 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.799 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Domain.Shared.rb0zy7dgue.pdb - 200 15881 application/octet-stream 1.7858ms -2026-01-28 14:11:17.804 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.HttpApi.Client.219qgzx23p.pdb - null null -2026-01-28 14:11:17.804 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.804 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.804 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.804 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.804 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.805 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.805 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.805 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.805 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.805 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.805 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.805 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.805 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.805 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.805 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.805 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.805 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.805 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.805 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.805 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.805 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.805 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.806 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.HttpApi.Client.219qgzx23p.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vwkga7y8v6-{0}-219qgzx23p-219qgzx23p.gz' -2026-01-28 14:11:17.806 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.806 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.HttpApi.Client.219qgzx23p.pdb - 200 17273 application/octet-stream 2.1139ms -2026-01-28 14:11:17.811 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Settings.zg210hgmt5.pdb - null null -2026-01-28 14:11:17.811 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.811 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.811 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.811 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.811 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.811 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.811 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.811 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.812 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.812 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.812 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.812 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.812 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.812 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.812 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.812 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.812 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.812 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.812 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.812 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.812 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.812 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.813 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Settings.zg210hgmt5.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\69ib14dhz4-{0}-zg210hgmt5-zg210hgmt5.gz' -2026-01-28 14:11:17.813 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.813 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Settings.zg210hgmt5.pdb - 200 24709 application/octet-stream 1.925ms -2026-01-28 14:11:17.818 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Application.Contracts.2kqwaqfq07.pdb - null null -2026-01-28 14:11:17.818 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.819 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.819 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.819 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.819 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.819 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.819 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.819 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.819 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.819 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.819 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.819 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.819 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.819 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.819 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.820 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Application.Contracts.2kqwaqfq07.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\usk06ilw8g-{0}-2kqwaqfq07-2kqwaqfq07.gz' -2026-01-28 14:11:17.820 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.820 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Application.Contracts.2kqwaqfq07.pdb - 200 16305 application/octet-stream 1.6888ms -2026-01-28 14:11:17.824 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Domain.Shared.8e6fpjlw3z.pdb - null null -2026-01-28 14:11:17.824 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.824 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.824 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.824 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.824 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.824 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.824 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.824 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.824 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.824 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.824 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.825 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.825 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.825 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.825 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.825 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.825 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.825 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.825 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.825 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.825 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.825 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.826 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Domain.Shared.8e6fpjlw3z.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\byh2ge6bdr-{0}-8e6fpjlw3z-8e6fpjlw3z.gz' -2026-01-28 14:11:17.826 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.826 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Domain.Shared.8e6fpjlw3z.pdb - 200 15609 application/octet-stream 1.7926ms -2026-01-28 14:11:17.830 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.HttpApi.Client.0ep6vejlyv.pdb - null null -2026-01-28 14:11:17.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.830 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.830 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.830 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.830 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.830 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.830 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.831 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.831 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.831 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.831 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.831 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.831 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.831 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.831 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.831 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.HttpApi.Client.0ep6vejlyv.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b6ncobn1go-{0}-0ep6vejlyv-0ep6vejlyv.gz' -2026-01-28 14:11:17.831 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.831 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.HttpApi.Client.0ep6vejlyv.pdb - 200 17253 application/octet-stream 1.5447ms -2026-01-28 14:11:17.836 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Threading.ltl7sj60qd.pdb - null null -2026-01-28 14:11:17.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.836 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.836 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.836 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.836 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.837 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.837 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.837 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.837 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.837 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.837 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.837 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.837 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.837 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.837 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.838 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Threading.ltl7sj60qd.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\m4kji2jf2d-{0}-ltl7sj60qd-ltl7sj60qd.gz' -2026-01-28 14:11:17.838 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.838 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Threading.ltl7sj60qd.pdb - 200 22745 application/octet-stream 1.7396ms -2026-01-28 14:11:17.843 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Timing.4ite7giifl.pdb - null null -2026-01-28 14:11:17.843 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.843 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.843 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.843 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.843 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.844 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.844 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.844 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.844 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.844 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.844 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.844 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.844 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.844 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.844 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.844 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.844 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.844 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.844 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.844 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.844 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.844 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.845 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Timing.4ite7giifl.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ku2s5mtpx-{0}-4ite7giifl-4ite7giifl.gz' -2026-01-28 14:11:17.845 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.845 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Timing.4ite7giifl.pdb - 200 17233 application/octet-stream 1.5242ms -2026-01-28 14:11:17.848 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.hbvsia4uct.pdb - null null -2026-01-28 14:11:17.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.849 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.849 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.849 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.849 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.849 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.849 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.849 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.849 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.849 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.849 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.850 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.UI.hbvsia4uct.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ojvava7kjz-{0}-hbvsia4uct-hbvsia4uct.gz' -2026-01-28 14:11:17.850 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.850 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.hbvsia4uct.pdb - 200 15269 application/octet-stream 1.3817ms -2026-01-28 14:11:17.853 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.Navigation.xd013kg4jh.pdb - null null -2026-01-28 14:11:17.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.854 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.854 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.854 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.854 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.854 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.854 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.854 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.854 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.854 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.854 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.854 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.854 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.854 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.854 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.855 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.UI.Navigation.xd013kg4jh.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\opi85np659-{0}-xd013kg4jh-xd013kg4jh.gz' -2026-01-28 14:11:17.855 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.855 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.Navigation.xd013kg4jh.pdb - 200 25665 application/octet-stream 1.4065ms -2026-01-28 14:11:17.859 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Uow.re76cfcetz.pdb - null null -2026-01-28 14:11:17.859 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.859 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.859 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.859 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.859 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.860 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.860 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.860 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.860 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.860 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.860 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.860 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.860 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.860 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.860 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.860 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.860 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.860 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.860 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.860 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.860 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.860 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.861 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Uow.re76cfcetz.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\37xxpsk7fy-{0}-re76cfcetz-re76cfcetz.gz' -2026-01-28 14:11:17.861 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.861 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Uow.re76cfcetz.pdb - 200 26921 application/octet-stream 1.6418ms -2026-01-28 14:11:17.865 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Abstractions.8nynefv6wf.pdb - null null -2026-01-28 14:11:17.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.866 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.866 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.866 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.866 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.866 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.866 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.866 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.866 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.866 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.866 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.867 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Users.Abstractions.8nynefv6wf.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\02tit97twy-{0}-8nynefv6wf-8nynefv6wf.gz' -2026-01-28 14:11:17.867 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.867 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Abstractions.8nynefv6wf.pdb - 200 16949 application/octet-stream 1.5379ms -2026-01-28 14:11:17.871 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Domain.Shared.l4ascx0wfo.pdb - null null -2026-01-28 14:11:17.871 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.871 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.871 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.871 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.871 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.871 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.871 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.871 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.871 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.871 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.871 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.871 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.871 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.871 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.871 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.871 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.871 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.871 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.871 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.871 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.871 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.871 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.872 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Users.Domain.Shared.l4ascx0wfo.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\i5q2ei5dis-{0}-l4ascx0wfo-l4ascx0wfo.gz' -2026-01-28 14:11:17.872 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.872 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Domain.Shared.l4ascx0wfo.pdb - 200 13285 application/octet-stream 1.4822ms -2026-01-28 14:11:17.877 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.ksfguea92v.pdb - null null -2026-01-28 14:11:17.877 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.877 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.877 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.877 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.877 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.877 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.877 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.877 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.877 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.877 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.877 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.877 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.877 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.877 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.877 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.877 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.877 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.877 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.877 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.877 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.877 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.878 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.878 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Validation.ksfguea92v.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wypl5pd007-{0}-ksfguea92v-ksfguea92v.gz' -2026-01-28 14:11:17.878 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.878 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.ksfguea92v.pdb - 200 24513 application/octet-stream 1.522ms -2026-01-28 14:11:17.882 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.Abstractions.zjvjxeb6lj.pdb - null null -2026-01-28 14:11:17.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.883 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.883 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.883 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.883 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.883 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.883 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.883 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.883 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.883 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.883 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.883 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.883 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.883 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.883 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.884 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Validation.Abstractions.zjvjxeb6lj.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mb6vj9j06o-{0}-zjvjxeb6lj-zjvjxeb6lj.gz' -2026-01-28 14:11:17.884 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.884 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.Abstractions.zjvjxeb6lj.pdb - 200 14137 application/octet-stream 1.5391ms -2026-01-28 14:11:17.888 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.VirtualFileSystem.kcqfs0t7tk.pdb - null null -2026-01-28 14:11:17.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.888 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.888 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.888 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.888 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.888 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.888 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.889 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.889 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.889 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.889 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.889 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.889 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.889 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.889 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.889 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.VirtualFileSystem.kcqfs0t7tk.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9vnkhoiruq-{0}-kcqfs0t7tk-kcqfs0t7tk.gz' -2026-01-28 14:11:17.889 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.889 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.VirtualFileSystem.kcqfs0t7tk.pdb - 200 21449 application/octet-stream 1.3595ms -2026-01-28 14:11:17.893 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.2ctxo9q0pu.pdb - null null -2026-01-28 14:11:17.893 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.893 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.893 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.893 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.893 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.893 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.894 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.894 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.894 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.894 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.894 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.894 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.894 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.894 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.894 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.894 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.894 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.894 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.894 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.894 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.894 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.894 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.895 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.2ctxo9q0pu.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\21kkcfw31s-{0}-2ctxo9q0pu-2ctxo9q0pu.gz' -2026-01-28 14:11:17.895 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.895 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.2ctxo9q0pu.pdb - 200 32145 application/octet-stream 2.5001ms -2026-01-28 14:11:17.901 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Autofac.le1wnuzdja.wasm - null null -2026-01-28 14:11:17.901 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.902 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.902 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.902 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.902 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.902 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.902 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.902 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.902 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.902 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.902 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.902 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.902 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.902 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.902 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.902 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.902 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.902 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.902 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.902 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.902 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.902 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.905 +03:00 [INF] Sending file. Request path: '_framework/Autofac.le1wnuzdja.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\le2bmj2hd0-{0}-le1wnuzdja-le1wnuzdja.gz' -2026-01-28 14:11:17.905 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.905 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Autofac.le1wnuzdja.wasm - 200 375661 application/wasm 4.4873ms -2026-01-28 14:11:17.934 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Autofac.Extensions.DependencyInjection.slmisa3m0h.wasm - null null -2026-01-28 14:11:17.934 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.934 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.934 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.934 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.934 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.935 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.935 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.935 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.935 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.935 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.935 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.935 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.935 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.935 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.935 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.935 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.935 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.935 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.935 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.935 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.935 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.935 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.936 +03:00 [INF] Sending file. Request path: '_framework/Autofac.Extensions.DependencyInjection.slmisa3m0h.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4h1lb8bivh-{0}-slmisa3m0h-slmisa3m0h.gz' -2026-01-28 14:11:17.936 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.936 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Autofac.Extensions.DependencyInjection.slmisa3m0h.wasm - 200 28470 application/wasm 1.9462ms -2026-01-28 14:11:17.940 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Autofac.Extras.DynamicProxy.tlrq82knod.wasm - null null -2026-01-28 14:11:17.941 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.941 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.941 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.941 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.941 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.941 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.941 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.941 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.941 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.941 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.941 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.941 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.941 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.941 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.941 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.941 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.941 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.941 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.941 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.941 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.941 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.941 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.942 +03:00 [INF] Sending file. Request path: '_framework/Autofac.Extras.DynamicProxy.tlrq82knod.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5nm56h6008-{0}-tlrq82knod-tlrq82knod.gz' -2026-01-28 14:11:17.942 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.942 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Autofac.Extras.DynamicProxy.tlrq82knod.wasm - 200 20278 application/wasm 1.7822ms -2026-01-28 14:11:17.946 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Castle.Core.dr7ya1fwgr.wasm - null null -2026-01-28 14:11:17.947 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.947 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.947 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.947 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.947 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.947 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.947 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.947 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.947 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.947 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.947 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.947 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.947 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.947 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.947 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.947 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.947 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.947 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.947 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.947 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.947 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.947 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.949 +03:00 [INF] Sending file. Request path: '_framework/Castle.Core.dr7ya1fwgr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mehy9ugib8-{0}-dr7ya1fwgr-dr7ya1fwgr.gz' -2026-01-28 14:11:17.949 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.949 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Castle.Core.dr7ya1fwgr.wasm - 200 388461 application/wasm 3.1357ms -2026-01-28 14:11:17.955 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Castle.Core.AsyncInterceptor.phbi0db4mk.wasm - null null -2026-01-28 14:11:17.955 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.955 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.955 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.955 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.955 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.955 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.955 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.955 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.955 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.955 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.955 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.955 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.955 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.955 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.956 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.956 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.956 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.956 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.956 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.956 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.956 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.956 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.956 +03:00 [INF] Sending file. Request path: '_framework/Castle.Core.AsyncInterceptor.phbi0db4mk.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dnds4j2x25-{0}-phbi0db4mk-phbi0db4mk.gz' -2026-01-28 14:11:17.956 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.956 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Castle.Core.AsyncInterceptor.phbi0db4mk.wasm - 200 19254 application/wasm 1.7254ms -2026-01-28 14:11:17.961 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Duende.IdentityModel.w8uizqq8rq.wasm - null null -2026-01-28 14:11:17.961 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.961 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.962 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.962 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.962 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.962 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.962 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.962 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.962 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.962 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.962 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.962 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.962 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.962 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.963 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.963 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.963 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.963 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.963 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.963 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.963 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.963 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.965 +03:00 [INF] Sending file. Request path: '_framework/Duende.IdentityModel.w8uizqq8rq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2h3cgpc6ac-{0}-w8uizqq8rq-w8uizqq8rq.gz' -2026-01-28 14:11:17.965 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.965 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Duende.IdentityModel.w8uizqq8rq.wasm - 200 202580 application/wasm 4.3827ms -2026-01-28 14:11:17.971 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/JetBrains.Annotations.30nyqsrum5.wasm - null null -2026-01-28 14:11:17.972 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.972 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.972 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.972 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.972 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.972 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.972 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.972 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.972 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.972 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.972 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.972 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.972 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.972 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.972 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.972 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.972 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.972 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.972 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.972 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.972 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.973 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.974 +03:00 [INF] Sending file. Request path: '_framework/JetBrains.Annotations.30nyqsrum5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6sdzj3kgop-{0}-30nyqsrum5-30nyqsrum5.gz' -2026-01-28 14:11:17.974 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.974 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/JetBrains.Annotations.30nyqsrum5.wasm - 200 122181 application/wasm 2.5727ms -2026-01-28 14:11:17.979 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Authorization.f7yamg8acn.wasm - null null -2026-01-28 14:11:17.980 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.980 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.980 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.980 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.980 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.980 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.980 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.980 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.980 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.980 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.980 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.980 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.980 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.980 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.980 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.980 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.980 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.980 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.980 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.980 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.980 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.980 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.981 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Authorization.f7yamg8acn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\y8t8qzdrbk-{0}-f7yamg8acn-f7yamg8acn.gz' -2026-01-28 14:11:17.981 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.981 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Authorization.f7yamg8acn.wasm - 200 45371 application/wasm 1.8294ms -2026-01-28 14:11:17.986 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.i180xx2qq9.wasm - null null -2026-01-28 14:11:17.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.987 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.987 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.987 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.987 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.987 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.987 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.987 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.987 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.987 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.987 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.987 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.987 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.987 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.988 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.990 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.i180xx2qq9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\00mrq6s2ss-{0}-i180xx2qq9-i180xx2qq9.gz' -2026-01-28 14:11:17.990 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.990 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.i180xx2qq9.wasm - 200 388973 application/wasm 3.2229ms -2026-01-28 14:11:17.996 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Authorization.8nosel0t6a.wasm - null null -2026-01-28 14:11:17.997 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.997 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:17.997 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:17.997 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:17.997 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.997 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:17.997 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:17.997 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:17.997 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:17.997 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:17.997 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:17.997 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.997 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:17.997 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:17.997 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:17.997 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:17.997 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:17.997 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:17.997 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:17.997 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:17.997 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:17.997 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.998 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.Authorization.8nosel0t6a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b9vfzkzuzt-{0}-8nosel0t6a-8nosel0t6a.gz' -2026-01-28 14:11:17.998 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:17.998 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Authorization.8nosel0t6a.wasm - 200 23862 application/wasm 1.6972ms -2026-01-28 14:11:18.003 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Forms.au92kshad9.wasm - null null -2026-01-28 14:11:18.003 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.003 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.003 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.003 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.003 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.004 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.004 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.004 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.004 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.004 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.004 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.004 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.004 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.004 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.004 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.004 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.004 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.004 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.004 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.004 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.004 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.004 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.005 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.Forms.au92kshad9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0l9h2m1r4h-{0}-au92kshad9-au92kshad9.gz' -2026-01-28 14:11:18.005 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.005 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Forms.au92kshad9.wasm - 200 37691 application/wasm 2.1942ms -2026-01-28 14:11:18.010 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Web.gl9seasc22.wasm - null null -2026-01-28 14:11:18.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.011 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.011 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.012 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.012 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.012 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.012 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.012 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.012 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.012 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.012 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.013 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.Web.gl9seasc22.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fqoi4if8m2-{0}-gl9seasc22-gl9seasc22.gz' -2026-01-28 14:11:18.013 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.013 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Web.gl9seasc22.wasm - 200 179023 application/wasm 2.6772ms -2026-01-28 14:11:18.018 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.9qaxkpf6y7.wasm - null null -2026-01-28 14:11:18.018 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.019 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.019 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.019 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.019 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.019 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.019 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.019 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.019 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.019 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.019 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.019 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.019 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.019 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.019 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.019 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.019 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.019 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.019 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.019 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.019 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.019 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.020 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.WebAssembly.9qaxkpf6y7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4vwfdqnp17-{0}-9qaxkpf6y7-9qaxkpf6y7.gz' -2026-01-28 14:11:18.020 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.020 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.9qaxkpf6y7.wasm - 200 155978 application/wasm 2.4866ms -2026-01-28 14:11:18.025 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.q8d1vzef3m.wasm - null null -2026-01-28 14:11:18.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.026 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.026 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.026 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.026 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.026 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.026 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.026 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.026 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.026 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.026 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.026 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.026 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.027 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.027 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.028 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.q8d1vzef3m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\19o2at4dip-{0}-q8d1vzef3m-q8d1vzef3m.gz' -2026-01-28 14:11:18.028 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.028 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.q8d1vzef3m.wasm - 200 96064 application/wasm 3.4915ms -2026-01-28 14:11:18.032 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Metadata.begmnasal1.wasm - null null -2026-01-28 14:11:18.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.033 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.033 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.033 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.033 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.033 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.033 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.033 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.033 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.033 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.033 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.034 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Metadata.begmnasal1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\94aawuaijs-{0}-begmnasal1-begmnasal1.gz' -2026-01-28 14:11:18.034 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.034 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Metadata.begmnasal1.wasm - 200 5942 application/wasm 1.706ms -2026-01-28 14:11:18.038 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.WebUtilities.6cgd80d0to.wasm - null null -2026-01-28 14:11:18.038 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.039 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.039 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.039 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.039 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.039 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.039 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.039 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.039 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.039 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.039 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.039 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.039 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.039 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.039 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.040 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.WebUtilities.6cgd80d0to.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sk2xioyf5m-{0}-6cgd80d0to-6cgd80d0to.gz' -2026-01-28 14:11:18.040 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.040 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.WebUtilities.6cgd80d0to.wasm - 200 97088 application/wasm 2.4507ms -2026-01-28 14:11:18.045 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Bcl.AsyncInterfaces.a6wsrpgfw5.wasm - null null -2026-01-28 14:11:18.045 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.045 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.045 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.045 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.045 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.046 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.046 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.046 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.046 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.046 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.046 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.046 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.046 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.046 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.046 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.047 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Bcl.AsyncInterfaces.a6wsrpgfw5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\efezora84v-{0}-a6wsrpgfw5-a6wsrpgfw5.gz' -2026-01-28 14:11:18.047 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.047 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Bcl.AsyncInterfaces.a6wsrpgfw5.wasm - 200 9526 application/wasm 2.0175ms -2026-01-28 14:11:18.051 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.u1l3a5juxx.wasm - null null -2026-01-28 14:11:18.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.052 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.052 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.052 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.052 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.052 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.052 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.052 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.052 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.052 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.052 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.052 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.052 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.052 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.052 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.053 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.u1l3a5juxx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wloi09r5kq-{0}-u1l3a5juxx-u1l3a5juxx.gz' -2026-01-28 14:11:18.053 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.053 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.u1l3a5juxx.wasm - 200 56123 application/wasm 2.1444ms -2026-01-28 14:11:18.058 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Abstractions.vvlexwbaez.wasm - null null -2026-01-28 14:11:18.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.059 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.059 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.060 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.060 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.060 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.060 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.060 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.060 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.060 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.060 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.061 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Caching.Abstractions.vvlexwbaez.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b1crvod4be-{0}-vvlexwbaez-vvlexwbaez.gz' -2026-01-28 14:11:18.061 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.061 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Abstractions.vvlexwbaez.wasm - 200 27446 application/wasm 2.283ms -2026-01-28 14:11:18.065 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Hybrid.u0s8zqcpy7.wasm - null null -2026-01-28 14:11:18.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.066 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.066 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.066 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.066 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.066 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.067 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.067 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.067 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.067 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.067 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.067 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.067 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.067 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.067 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.067 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.068 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Caching.Hybrid.u0s8zqcpy7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\t7frkttiob-{0}-u0s8zqcpy7-u0s8zqcpy7.gz' -2026-01-28 14:11:18.068 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.068 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Hybrid.u0s8zqcpy7.wasm - 200 85824 application/wasm 2.2623ms -2026-01-28 14:11:18.072 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Memory.6z3ajjz4f1.wasm - null null -2026-01-28 14:11:18.073 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.073 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.073 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.073 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.073 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.073 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.073 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.073 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.073 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.073 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.073 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.073 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.073 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.073 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.073 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.073 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.073 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.073 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.073 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.073 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.073 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.073 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.074 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Caching.Memory.6z3ajjz4f1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6gi3ua4ioz-{0}-6z3ajjz4f1-6z3ajjz4f1.gz' -2026-01-28 14:11:18.074 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.074 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Memory.6z3ajjz4f1.wasm - 200 37691 application/wasm 1.8065ms -2026-01-28 14:11:18.079 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.x8wh4xd62i.wasm - null null -2026-01-28 14:11:18.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.079 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.079 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.079 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.079 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.079 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.079 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.080 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.080 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.080 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.080 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.080 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.080 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.080 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.080 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.080 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.x8wh4xd62i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\h1kacpcskm-{0}-x8wh4xd62i-x8wh4xd62i.gz' -2026-01-28 14:11:18.080 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.080 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.x8wh4xd62i.wasm - 200 34619 application/wasm 1.6688ms -2026-01-28 14:11:18.084 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Abstractions.sgloa63pwd.wasm - null null -2026-01-28 14:11:18.085 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.085 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.085 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.085 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.085 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.085 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.085 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.085 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.085 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.085 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.085 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.085 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.085 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.085 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.086 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.086 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.086 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.086 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.086 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.086 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.086 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.086 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.086 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.Abstractions.sgloa63pwd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\zxi0ykhieh-{0}-sgloa63pwd-sgloa63pwd.gz' -2026-01-28 14:11:18.086 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.086 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Abstractions.sgloa63pwd.wasm - 200 18230 application/wasm 1.9773ms -2026-01-28 14:11:18.092 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Binder.3jwzw3qxt4.wasm - null null -2026-01-28 14:11:18.093 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.093 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.093 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.093 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.093 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.093 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.093 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.093 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.093 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.093 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.093 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.093 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.093 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.093 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.094 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.094 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.094 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.094 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.094 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.094 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.094 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.094 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.095 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.Binder.3jwzw3qxt4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ko014cnbr7-{0}-3jwzw3qxt4-3jwzw3qxt4.gz' -2026-01-28 14:11:18.095 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.095 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Binder.3jwzw3qxt4.wasm - 200 33083 application/wasm 2.4432ms -2026-01-28 14:11:18.099 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.CommandLine.z1qo7xx5ru.wasm - null null -2026-01-28 14:11:18.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.100 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.100 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.100 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.100 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.100 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.100 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.100 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.100 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.100 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.100 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.100 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.100 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.100 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.100 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.101 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.CommandLine.z1qo7xx5ru.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0qcnzm5lmb-{0}-z1qo7xx5ru-z1qo7xx5ru.gz' -2026-01-28 14:11:18.101 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.101 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.CommandLine.z1qo7xx5ru.wasm - 200 15158 application/wasm 1.7785ms -2026-01-28 14:11:18.105 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.EnvironmentVariables.3gcxsk3zbu.wasm - null null -2026-01-28 14:11:18.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.105 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.106 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.106 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.106 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.106 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.106 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.106 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.106 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.106 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.106 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.106 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.106 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.106 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.106 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.106 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.106 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.106 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.106 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.106 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.106 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.106 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.107 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.EnvironmentVariables.3gcxsk3zbu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\urvjz3sczp-{0}-3gcxsk3zbu-3gcxsk3zbu.gz' -2026-01-28 14:11:18.107 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.107 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.EnvironmentVariables.3gcxsk3zbu.wasm - 200 11574 application/wasm 1.8859ms -2026-01-28 14:11:18.112 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.FileExtensions.phra2kqghi.wasm - null null -2026-01-28 14:11:18.112 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.112 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.112 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.113 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.113 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.113 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.113 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.113 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.113 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.113 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.113 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.113 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.113 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.113 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.113 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.113 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.113 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.113 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.113 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.113 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.113 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.113 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.114 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.FileExtensions.phra2kqghi.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6yhtz7i0uq-{0}-phra2kqghi-phra2kqghi.gz' -2026-01-28 14:11:18.114 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.114 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.FileExtensions.phra2kqghi.wasm - 200 18230 application/wasm 1.7854ms -2026-01-28 14:11:18.118 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Json.9udmvturlf.wasm - null null -2026-01-28 14:11:18.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.118 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.118 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.118 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.118 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.118 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.118 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.118 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.119 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.119 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.119 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.119 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.119 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.119 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.119 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.119 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.Json.9udmvturlf.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jn8nx9ltxb-{0}-9udmvturlf-9udmvturlf.gz' -2026-01-28 14:11:18.119 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.119 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Json.9udmvturlf.wasm - 200 17718 application/wasm 1.6242ms -2026-01-28 14:11:18.124 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.UserSecrets.86yue58ssu.wasm - null null -2026-01-28 14:11:18.125 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.125 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.125 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.125 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.125 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.125 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.126 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.126 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.126 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.126 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.126 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.126 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.126 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.126 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.126 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.126 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.126 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.126 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.126 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.126 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.126 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.126 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.127 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.UserSecrets.86yue58ssu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wlq0vssna7-{0}-86yue58ssu-86yue58ssu.gz' -2026-01-28 14:11:18.127 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.127 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.UserSecrets.86yue58ssu.wasm - 200 16182 application/wasm 2.724ms -2026-01-28 14:11:18.133 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.92ulj88j6e.wasm - null null -2026-01-28 14:11:18.134 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.134 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.134 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.134 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.134 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.134 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.134 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.134 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.134 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.134 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.134 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.134 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.134 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.134 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.134 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.134 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.134 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.134 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.134 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.134 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.134 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.134 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.135 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.DependencyInjection.92ulj88j6e.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ap6jjl5cdc-{0}-92ulj88j6e-92ulj88j6e.gz' -2026-01-28 14:11:18.135 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.136 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.92ulj88j6e.wasm - 200 85312 application/wasm 2.4177ms -2026-01-28 14:11:18.143 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.qzg75988t9.wasm - null null -2026-01-28 14:11:18.144 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.145 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.145 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.145 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.145 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.145 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.145 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.145 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.145 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.145 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.145 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.145 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.145 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.145 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.145 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.145 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.145 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.146 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.147 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.DependencyInjection.Abstractions.qzg75988t9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2yinc5vl42-{0}-qzg75988t9-qzg75988t9.gz' -2026-01-28 14:11:18.147 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.147 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.qzg75988t9.wasm - 200 55611 application/wasm 4.1301ms -2026-01-28 14:11:18.153 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.tgzcelqpkb.wasm - null null -2026-01-28 14:11:18.153 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.153 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.153 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.153 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.153 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.153 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.153 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.153 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.153 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.153 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.153 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.153 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.153 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.153 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.154 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.154 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.154 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.154 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.154 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.154 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.154 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.154 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.155 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Diagnostics.tgzcelqpkb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\q77258df46-{0}-tgzcelqpkb-tgzcelqpkb.gz' -2026-01-28 14:11:18.155 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.155 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.tgzcelqpkb.wasm - 200 25910 application/wasm 2.2624ms -2026-01-28 14:11:18.161 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.Abstractions.hq61ozpvxa.wasm - null null -2026-01-28 14:11:18.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.162 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.162 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.162 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.162 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.162 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.162 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.163 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.163 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.163 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.163 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.163 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.163 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.163 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.163 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.163 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Diagnostics.Abstractions.hq61ozpvxa.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\hlwf1zkx1t-{0}-hq61ozpvxa-hq61ozpvxa.gz' -2026-01-28 14:11:18.163 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.163 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.Abstractions.hq61ozpvxa.wasm - 200 20790 application/wasm 2.6544ms -2026-01-28 14:11:18.167 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Abstractions.wbhloeatw3.wasm - null null -2026-01-28 14:11:18.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.168 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.168 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.169 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.169 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.169 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.169 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.169 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.169 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.169 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.169 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.169 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Abstractions.wbhloeatw3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\hwi4k0i86u-{0}-wbhloeatw3-wbhloeatw3.gz' -2026-01-28 14:11:18.169 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.169 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Abstractions.wbhloeatw3.wasm - 200 13110 application/wasm 2.0024ms -2026-01-28 14:11:18.174 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Composite.z8bwpsdnc0.wasm - null null -2026-01-28 14:11:18.175 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.175 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.175 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.175 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.175 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.175 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.175 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.175 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.176 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.176 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.176 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.176 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.176 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.176 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.176 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.176 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.176 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.176 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.176 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.176 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.176 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.176 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.177 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Composite.z8bwpsdnc0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9or5ity2wj-{0}-z8bwpsdnc0-z8bwpsdnc0.gz' -2026-01-28 14:11:18.177 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.177 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Composite.z8bwpsdnc0.wasm - 200 8502 application/wasm 2.2731ms -2026-01-28 14:11:18.182 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Embedded.ptqvg1m34t.wasm - null null -2026-01-28 14:11:18.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.183 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.183 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.183 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.183 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.183 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.183 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.183 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.183 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.183 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.183 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.183 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.183 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.183 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.184 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Embedded.ptqvg1m34t.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gud3t43je0-{0}-ptqvg1m34t-ptqvg1m34t.gz' -2026-01-28 14:11:18.184 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.184 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Embedded.ptqvg1m34t.wasm - 200 23350 application/wasm 1.6121ms -2026-01-28 14:11:18.189 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Physical.y5k56zvg10.wasm - null null -2026-01-28 14:11:18.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.190 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.190 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.190 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.190 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.190 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.190 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.190 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.190 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.190 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.190 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.192 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Physical.y5k56zvg10.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\02df65jx0j-{0}-y5k56zvg10-y5k56zvg10.gz' -2026-01-28 14:11:18.192 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.192 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Physical.y5k56zvg10.wasm - 200 35131 application/wasm 2.887ms -2026-01-28 14:11:18.199 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileSystemGlobbing.4cqycihgg0.wasm - null null -2026-01-28 14:11:18.199 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.199 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.199 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.199 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.199 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.199 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.199 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.199 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.199 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.199 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.199 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.199 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.199 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.199 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.200 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.200 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.200 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.200 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.200 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.200 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.200 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.200 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.201 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileSystemGlobbing.4cqycihgg0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4328gy858z-{0}-4cqycihgg0-4cqycihgg0.gz' -2026-01-28 14:11:18.201 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.201 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileSystemGlobbing.4cqycihgg0.wasm - 200 37691 application/wasm 2.0481ms -2026-01-28 14:11:18.207 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Hosting.Abstractions.5v78u2d057.wasm - null null -2026-01-28 14:11:18.207 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.208 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.208 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.208 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.208 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.208 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.208 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.208 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.208 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.208 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.208 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.208 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.208 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.208 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.208 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.208 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.208 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.208 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.208 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.208 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.208 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.209 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.209 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Hosting.Abstractions.5v78u2d057.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0bjpxbow7h-{0}-5v78u2d057-5v78u2d057.gz' -2026-01-28 14:11:18.209 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.210 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Hosting.Abstractions.5v78u2d057.wasm - 200 43835 application/wasm 2.6116ms -2026-01-28 14:11:18.215 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Http.apre2arxjd.wasm - null null -2026-01-28 14:11:18.215 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.215 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.215 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.215 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.215 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.215 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.215 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.215 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.215 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.215 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.215 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.215 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.215 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.215 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.216 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.216 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.216 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.216 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.216 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.216 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.216 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.216 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.217 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Http.apre2arxjd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ocorhjn9ks-{0}-apre2arxjd-apre2arxjd.gz' -2026-01-28 14:11:18.217 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.217 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Http.apre2arxjd.wasm - 200 82752 application/wasm 1.859ms -2026-01-28 14:11:18.226 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.mml9tf1r1w.wasm - null null -2026-01-28 14:11:18.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.227 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.227 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.227 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.227 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.227 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.227 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.228 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.228 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.228 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.228 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.228 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.228 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.228 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.228 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.230 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Localization.mml9tf1r1w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uqdbs11skp-{0}-mml9tf1r1w-mml9tf1r1w.gz' -2026-01-28 14:11:18.230 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.230 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.mml9tf1r1w.wasm - 200 21302 application/wasm 4.192ms -2026-01-28 14:11:18.245 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.Abstractions.80p7fyumuw.wasm - null null -2026-01-28 14:11:18.245 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.245 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.245 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.245 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.245 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.246 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.246 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.246 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.246 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.246 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.246 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.246 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.246 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.246 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.246 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.246 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.246 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.246 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.246 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.246 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.246 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.246 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.247 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Localization.Abstractions.80p7fyumuw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j8jaks8ba9-{0}-80p7fyumuw-80p7fyumuw.gz' -2026-01-28 14:11:18.247 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.247 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.Abstractions.80p7fyumuw.wasm - 200 9014 application/wasm 2.1472ms -2026-01-28 14:11:18.254 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.05o184w673.wasm - null null -2026-01-28 14:11:18.254 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.255 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.255 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.255 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.255 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.255 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.255 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.255 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.255 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.255 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.255 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.255 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.255 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.255 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.256 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.256 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Logging.05o184w673.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1cbwctdp50-{0}-05o184w673-05o184w673.gz' -2026-01-28 14:11:18.256 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.257 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.05o184w673.wasm - 200 41275 application/wasm 2.6498ms -2026-01-28 14:11:18.264 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.Abstractions.hwa38jh90v.wasm - null null -2026-01-28 14:11:18.265 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.265 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.265 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.265 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.265 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.265 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.265 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.265 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.265 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.265 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.265 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.265 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.265 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.265 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.266 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.266 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.266 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.266 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.266 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.266 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.266 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.266 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.267 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Logging.Abstractions.hwa38jh90v.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\zatd8kwe6z-{0}-hwa38jh90v-hwa38jh90v.gz' -2026-01-28 14:11:18.267 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.267 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.Abstractions.hwa38jh90v.wasm - 200 56635 application/wasm 2.1869ms -2026-01-28 14:11:18.273 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.zsk78mkyl2.wasm - null null -2026-01-28 14:11:18.274 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.274 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.274 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.274 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.274 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.274 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.274 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.274 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.274 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.274 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.274 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.274 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.274 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.274 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.274 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.274 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.274 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.274 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.274 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.274 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.274 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.274 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.275 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Options.zsk78mkyl2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nx5gv127wz-{0}-zsk78mkyl2-zsk78mkyl2.gz' -2026-01-28 14:11:18.275 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.275 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.zsk78mkyl2.wasm - 200 55099 application/wasm 2.6166ms -2026-01-28 14:11:18.281 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.ConfigurationExtensions.qltknulxmy.wasm - null null -2026-01-28 14:11:18.282 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.282 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.282 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.282 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.282 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.282 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.282 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.282 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.282 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.282 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.282 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.282 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.282 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.282 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.283 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.283 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.283 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.283 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.283 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.283 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.283 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.283 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.283 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Options.ConfigurationExtensions.qltknulxmy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\eycsz92dw7-{0}-qltknulxmy-qltknulxmy.gz' -2026-01-28 14:11:18.283 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.283 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.ConfigurationExtensions.qltknulxmy.wasm - 200 11574 application/wasm 2.0411ms -2026-01-28 14:11:18.289 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Primitives.51b5spqlwz.wasm - null null -2026-01-28 14:11:18.290 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.290 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.290 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.290 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.290 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.290 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.290 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.290 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.290 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.290 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.290 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.290 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.290 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.290 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.290 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.290 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.290 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.290 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.290 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.290 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.290 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.290 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.291 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Primitives.51b5spqlwz.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dtxltxy254-{0}-51b5spqlwz-51b5spqlwz.gz' -2026-01-28 14:11:18.291 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.291 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Primitives.51b5spqlwz.wasm - 200 34619 application/wasm 2.2416ms -2026-01-28 14:11:18.297 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Validation.vibclmvzbq.wasm - null null -2026-01-28 14:11:18.298 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.298 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.298 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.298 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.298 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.298 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.298 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.298 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.298 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.298 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.298 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.298 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.298 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.298 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.298 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.298 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.298 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.298 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.298 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.298 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.298 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.299 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.299 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Validation.vibclmvzbq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wxjaiwsnh4-{0}-vibclmvzbq-vibclmvzbq.gz' -2026-01-28 14:11:18.299 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.299 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Validation.vibclmvzbq.wasm - 200 33083 application/wasm 2.375ms -2026-01-28 14:11:18.351 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Abstractions.fm59ec96sb.wasm - null null -2026-01-28 14:11:18.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.355 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.355 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.355 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.355 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.355 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.355 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.355 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.355 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.355 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.355 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.355 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.355 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.355 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.355 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.355 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.355 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.355 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.355 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.355 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.355 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.356 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.356 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.Abstractions.fm59ec96sb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pw25ps676d-{0}-fm59ec96sb-fm59ec96sb.gz' -2026-01-28 14:11:18.356 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.356 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Abstractions.fm59ec96sb.wasm - 200 9014 application/wasm 5.2025ms -2026-01-28 14:11:18.383 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.JsonWebTokens.d706uu8nnf.wasm - null null -2026-01-28 14:11:18.383 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.383 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.383 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.383 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.383 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.383 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.383 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.383 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.383 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.383 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.383 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.383 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.383 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.383 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.384 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.384 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.384 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.384 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.384 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.384 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.384 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.384 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.385 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.JsonWebTokens.d706uu8nnf.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0ly9bxx2uc-{0}-d706uu8nnf-d706uu8nnf.gz' -2026-01-28 14:11:18.385 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.385 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.JsonWebTokens.d706uu8nnf.wasm - 200 161610 application/wasm 2.7385ms -2026-01-28 14:11:18.392 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Logging.lzotatrep2.wasm - null null -2026-01-28 14:11:18.393 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.393 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.393 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.393 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.393 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.393 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.393 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.393 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.393 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.393 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.393 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.393 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.393 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.393 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.393 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.393 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.394 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.394 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.394 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.394 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.394 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.394 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.394 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.Logging.lzotatrep2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\az540fuh9f-{0}-lzotatrep2-lzotatrep2.gz' -2026-01-28 14:11:18.394 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.394 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Logging.lzotatrep2.wasm - 200 26422 application/wasm 2.3811ms -2026-01-28 14:11:18.400 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Tokens.zeqz59uvkx.wasm - null null -2026-01-28 14:11:18.400 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.400 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.400 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.400 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.400 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.401 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.401 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.401 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.401 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.401 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.401 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.401 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.401 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.401 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.401 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.401 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.401 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.401 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.401 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.401 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.401 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.401 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.403 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.Tokens.zeqz59uvkx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pe5jdgvqrx-{0}-zeqz59uvkx-zeqz59uvkx.gz' -2026-01-28 14:11:18.403 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.403 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Tokens.zeqz59uvkx.wasm - 200 374125 application/wasm 3.223ms -2026-01-28 14:11:18.409 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.kksrzpvoig.wasm - null null -2026-01-28 14:11:18.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.410 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.410 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.410 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.410 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.410 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.410 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.410 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.411 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.411 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.411 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.411 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.411 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.411 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.411 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.412 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.JSInterop.kksrzpvoig.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fulott20a4-{0}-kksrzpvoig-kksrzpvoig.gz' -2026-01-28 14:11:18.412 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.412 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.kksrzpvoig.wasm - 200 64827 application/wasm 2.557ms -2026-01-28 14:11:18.416 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.WebAssembly.9udcqny0aq.wasm - null null -2026-01-28 14:11:18.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.417 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.417 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.417 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.417 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.417 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.417 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.417 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.417 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.417 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.417 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.417 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.417 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.417 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.417 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.418 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.JSInterop.WebAssembly.9udcqny0aq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9m4wklcqem-{0}-9udcqny0aq-9udcqny0aq.gz' -2026-01-28 14:11:18.418 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.418 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.WebAssembly.9udcqny0aq.wasm - 200 14646 application/wasm 1.6998ms -2026-01-28 14:11:18.423 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Net.Http.Headers.dqwvlhacs5.wasm - null null -2026-01-28 14:11:18.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.424 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.424 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.424 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.424 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.424 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.424 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.424 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.424 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.424 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.424 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.425 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Net.Http.Headers.dqwvlhacs5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\awoyestlxb-{0}-dqwvlhacs5-dqwvlhacs5.gz' -2026-01-28 14:11:18.425 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.425 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Net.Http.Headers.dqwvlhacs5.wasm - 200 75072 application/wasm 2.2286ms -2026-01-28 14:11:18.432 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MudBlazor.0eq8xpu5ec.wasm - null null -2026-01-28 14:11:18.432 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.432 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.432 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.432 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.432 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.433 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.433 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.433 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.433 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.433 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.433 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.433 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.433 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.433 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.433 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.433 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.433 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.433 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.433 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.433 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.433 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.433 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.498 +03:00 [INF] Sending file. Request path: '_framework/MudBlazor.0eq8xpu5ec.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c8dbqtqx23-{0}-0eq8xpu5ec-0eq8xpu5ec.gz' -2026-01-28 14:11:18.498 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.498 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MudBlazor.0eq8xpu5ec.wasm - 200 9246396 application/wasm 65.9463ms -2026-01-28 14:11:18.520 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Context.y5n2fi0oo0.wasm - null null -2026-01-28 14:11:18.520 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.520 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.520 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.521 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.521 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.521 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.521 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.521 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.521 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.521 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.521 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.521 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.521 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.521 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.521 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.521 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.521 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.521 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.521 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.521 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.521 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.522 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.522 +03:00 [INF] Sending file. Request path: '_framework/Nito.AsyncEx.Context.y5n2fi0oo0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6cfa8ozy3y-{0}-y5n2fi0oo0-y5n2fi0oo0.gz' -2026-01-28 14:11:18.522 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.522 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Context.y5n2fi0oo0.wasm - 200 13622 application/wasm 2.695ms -2026-01-28 14:11:18.532 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Tasks.pmw3wnkbvb.wasm - null null -2026-01-28 14:11:18.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.535 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.535 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.535 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.535 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.535 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.535 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.535 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.535 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.535 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.536 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.536 +03:00 [INF] Sending file. Request path: '_framework/Nito.AsyncEx.Tasks.pmw3wnkbvb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pw3yczwgxh-{0}-pmw3wnkbvb-pmw3wnkbvb.gz' -2026-01-28 14:11:18.536 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.536 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Tasks.pmw3wnkbvb.wasm - 200 35643 application/wasm 4.749ms -2026-01-28 14:11:18.545 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Nito.Disposables.86nxvj1yiv.wasm - null null -2026-01-28 14:11:18.546 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.546 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.546 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.546 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.546 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.546 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.546 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.546 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.546 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.546 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.546 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.546 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.546 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.546 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.547 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.547 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.547 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.547 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.547 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.547 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.547 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.547 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.548 +03:00 [INF] Sending file. Request path: '_framework/Nito.Disposables.86nxvj1yiv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4m6819m7ll-{0}-86nxvj1yiv-86nxvj1yiv.gz' -2026-01-28 14:11:18.548 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.548 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Nito.Disposables.86nxvj1yiv.wasm - 200 22326 application/wasm 2.6726ms -2026-01-28 14:11:18.554 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/NUglify.p1yxori32v.wasm - null null -2026-01-28 14:11:18.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.555 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.555 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.555 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.555 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.555 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.555 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.555 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.555 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.555 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.555 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.555 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.555 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.555 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.556 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.564 +03:00 [INF] Sending file. Request path: '_framework/NUglify.p1yxori32v.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2fi9048uqb-{0}-p1yxori32v-p1yxori32v.gz' -2026-01-28 14:11:18.564 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.564 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/NUglify.p1yxori32v.wasm - 200 637333 application/wasm 10.5249ms -2026-01-28 14:11:18.592 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/OpenIddict.Abstractions.xc5u4bcwuv.wasm - null null -2026-01-28 14:11:18.593 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.593 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.593 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.593 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.593 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.593 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.593 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.593 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.593 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.593 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.593 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.593 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.593 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.593 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.594 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.594 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.594 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.594 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.594 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.594 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.594 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.594 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.596 +03:00 [INF] Sending file. Request path: '_framework/OpenIddict.Abstractions.xc5u4bcwuv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\46s7kaf9kj-{0}-xc5u4bcwuv-xc5u4bcwuv.gz' -2026-01-28 14:11:18.596 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.596 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/OpenIddict.Abstractions.xc5u4bcwuv.wasm - 200 380269 application/wasm 3.3534ms -2026-01-28 14:11:18.601 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Riok.Mapperly.Abstractions.bgo5wowxjs.wasm - null null -2026-01-28 14:11:18.601 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.601 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.601 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.601 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.601 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.601 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.601 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.601 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.601 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.601 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.601 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.601 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.601 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.601 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.602 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.602 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.602 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.602 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.602 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.602 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.602 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.602 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.602 +03:00 [INF] Sending file. Request path: '_framework/Riok.Mapperly.Abstractions.bgo5wowxjs.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3d5qji182j-{0}-bgo5wowxjs-bgo5wowxjs.gz' -2026-01-28 14:11:18.602 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.602 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Riok.Mapperly.Abstractions.bgo5wowxjs.wasm - 200 33083 application/wasm 1.7292ms -2026-01-28 14:11:18.607 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.CodeDom.fbxkfrockh.wasm - null null -2026-01-28 14:11:18.608 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.608 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.608 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.608 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.608 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.608 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.608 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.608 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.608 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.608 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.608 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.608 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.608 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.608 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.609 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.609 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.609 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.609 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.609 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.609 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.609 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.609 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.610 +03:00 [INF] Sending file. Request path: '_framework/System.CodeDom.fbxkfrockh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j53ve7gv1w-{0}-fbxkfrockh-fbxkfrockh.gz' -2026-01-28 14:11:18.610 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.610 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.CodeDom.fbxkfrockh.wasm - 200 174415 application/wasm 3.1026ms -2026-01-28 14:11:18.614 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.EventLog.x6zrz89c6o.wasm - null null -2026-01-28 14:11:18.615 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.615 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.615 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.615 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.615 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.615 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.615 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.615 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.615 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.615 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.615 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.615 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.616 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.616 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.616 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.616 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.616 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.616 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.616 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.EventLog.x6zrz89c6o.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j2puov35am-{0}-x6zrz89c6o-x6zrz89c6o.gz' -2026-01-28 14:11:18.616 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.616 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.EventLog.x6zrz89c6o.wasm - 200 41787 application/wasm 1.9203ms -2026-01-28 14:11:18.621 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IdentityModel.Tokens.Jwt.5tt1rwyygx.wasm - null null -2026-01-28 14:11:18.622 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.622 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.622 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.622 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.622 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.622 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.622 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.622 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.622 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.622 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.622 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.622 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.622 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.622 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.623 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.623 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.623 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.623 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.623 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.623 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.623 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.623 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.624 +03:00 [INF] Sending file. Request path: '_framework/System.IdentityModel.Tokens.Jwt.5tt1rwyygx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tr0pha0myb-{0}-5tt1rwyygx-5tt1rwyygx.gz' -2026-01-28 14:11:18.624 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.624 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IdentityModel.Tokens.Jwt.5tt1rwyygx.wasm - 200 81216 application/wasm 2.9035ms -2026-01-28 14:11:18.629 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.Dynamic.Core.2czhr4esfi.wasm - null null -2026-01-28 14:11:18.630 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.630 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.630 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.630 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.630 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.630 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.630 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.630 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.630 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.630 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.630 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.630 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.630 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.630 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.630 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.630 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.630 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.630 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.630 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.630 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.630 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.630 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.632 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.Dynamic.Core.2czhr4esfi.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\i8w7eyc5en-{0}-2czhr4esfi-2czhr4esfi.gz' -2026-01-28 14:11:18.632 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.632 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.Dynamic.Core.2czhr4esfi.wasm - 200 240985 application/wasm 3.0183ms -2026-01-28 14:11:18.637 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Management.ot1u48wl1s.wasm - null null -2026-01-28 14:11:18.637 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.637 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.637 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.637 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.637 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.638 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.638 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.638 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.638 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.638 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.638 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.638 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.638 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.638 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.638 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.638 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.638 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.638 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.638 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.638 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.638 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.638 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.639 +03:00 [INF] Sending file. Request path: '_framework/System.Management.ot1u48wl1s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\evjyfukwb1-{0}-ot1u48wl1s-ot1u48wl1s.gz' -2026-01-28 14:11:18.639 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.639 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Management.ot1u48wl1s.wasm - 200 63803 application/wasm 2.4852ms -2026-01-28 14:11:18.645 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/TimeZoneConverter.halbc9brmz.wasm - null null -2026-01-28 14:11:18.645 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.645 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.645 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.645 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.645 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.646 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.646 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.646 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.646 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.646 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.646 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.646 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.646 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.646 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.646 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.647 +03:00 [INF] Sending file. Request path: '_framework/TimeZoneConverter.halbc9brmz.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xqev0b9yez-{0}-halbc9brmz-halbc9brmz.gz' -2026-01-28 14:11:18.647 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.647 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/TimeZoneConverter.halbc9brmz.wasm - 200 63803 application/wasm 2.0018ms -2026-01-28 14:11:18.651 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.CSharp.aars8n89vy.wasm - null null -2026-01-28 14:11:18.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.652 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.652 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.652 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.652 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.652 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.652 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.652 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.652 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.652 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.652 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.652 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.652 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.652 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.653 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.654 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.CSharp.aars8n89vy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\esvbxkosdi-{0}-aars8n89vy-aars8n89vy.gz' -2026-01-28 14:11:18.654 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.655 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.CSharp.aars8n89vy.wasm - 200 301411 application/wasm 3.456ms -2026-01-28 14:11:18.660 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.Core.upxd87cdr1.wasm - null null -2026-01-28 14:11:18.660 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.660 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.660 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.660 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.660 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.660 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.660 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.660 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.660 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.660 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.660 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.660 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.660 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.660 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.661 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.661 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.661 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.661 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.661 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.661 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.661 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.661 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.663 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.VisualBasic.Core.upxd87cdr1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jc5kei53j8-{0}-upxd87cdr1-upxd87cdr1.gz' -2026-01-28 14:11:18.663 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.663 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.Core.upxd87cdr1.wasm - 200 418674 application/wasm 3.3675ms -2026-01-28 14:11:18.667 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.lo3va0ewdb.wasm - null null -2026-01-28 14:11:18.668 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.668 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.668 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.668 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.668 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.668 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.668 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.668 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.668 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.668 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.668 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.668 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.668 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.668 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.668 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.668 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.668 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.668 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.668 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.668 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.668 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.669 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.669 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.VisualBasic.lo3va0ewdb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\57p19o16fi-{0}-lo3va0ewdb-lo3va0ewdb.gz' -2026-01-28 14:11:18.669 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.669 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.lo3va0ewdb.wasm - 200 6966 application/wasm 2.0736ms -2026-01-28 14:11:18.674 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Primitives.xf0i7ifc2c.wasm - null null -2026-01-28 14:11:18.674 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.674 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.674 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.674 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.674 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.675 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.675 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.675 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.675 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.675 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.675 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.675 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.675 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.675 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.675 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.675 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.675 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.675 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.675 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.675 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.675 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.675 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.676 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Win32.Primitives.xf0i7ifc2c.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\p8pizku5xb-{0}-xf0i7ifc2c-xf0i7ifc2c.gz' -2026-01-28 14:11:18.676 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.676 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Primitives.xf0i7ifc2c.wasm - 200 5430 application/wasm 1.6987ms -2026-01-28 14:11:18.680 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Registry.egcs66c38p.wasm - null null -2026-01-28 14:11:18.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.680 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.680 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.680 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.680 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.680 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.680 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.681 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.681 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.681 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.681 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.681 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.681 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.681 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.681 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.681 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Win32.Registry.egcs66c38p.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ouubhvk51-{0}-egcs66c38p-egcs66c38p.gz' -2026-01-28 14:11:18.681 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.681 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Registry.egcs66c38p.wasm - 200 22838 application/wasm 1.8118ms -2026-01-28 14:11:18.685 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.AppContext.229uy454et.wasm - null null -2026-01-28 14:11:18.685 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.685 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.685 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.685 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.685 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.686 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.686 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.686 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.686 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.686 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.686 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.686 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.686 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.686 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.686 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.686 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.686 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.686 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.686 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.686 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.686 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.686 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.687 +03:00 [INF] Sending file. Request path: '_framework/System.AppContext.229uy454et.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vtyu92lgvy-{0}-229uy454et-229uy454et.gz' -2026-01-28 14:11:18.687 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.687 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.AppContext.229uy454et.wasm - 200 4918 application/wasm 1.879ms -2026-01-28 14:11:18.690 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Buffers.ffy4vk49sl.wasm - null null -2026-01-28 14:11:18.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.691 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.691 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.691 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.691 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.691 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.691 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.691 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.691 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.691 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.691 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.691 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.691 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.691 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.691 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.692 +03:00 [INF] Sending file. Request path: '_framework/System.Buffers.ffy4vk49sl.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\abrvn071f9-{0}-ffy4vk49sl-ffy4vk49sl.gz' -2026-01-28 14:11:18.692 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.692 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Buffers.ffy4vk49sl.wasm - 200 4918 application/wasm 1.5932ms -2026-01-28 14:11:18.696 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.Concurrent.vwjty21qm0.wasm - null null -2026-01-28 14:11:18.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.697 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.697 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.697 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.697 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.697 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.697 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.697 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.697 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.697 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.697 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.697 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.697 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.697 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.697 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.698 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.Concurrent.vwjty21qm0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5kmfc755lz-{0}-vwjty21qm0-vwjty21qm0.gz' -2026-01-28 14:11:18.698 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.698 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.Concurrent.vwjty21qm0.wasm - 200 78656 application/wasm 2.0366ms -2026-01-28 14:11:18.703 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.Immutable.62ow9webvq.wasm - null null -2026-01-28 14:11:18.704 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.704 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.704 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.704 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.704 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.704 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.704 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.704 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.704 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.704 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.704 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.704 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.704 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.704 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.704 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.704 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.704 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.704 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.704 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.704 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.704 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.704 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.706 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.Immutable.62ow9webvq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\y8eoflnwlp-{0}-62ow9webvq-62ow9webvq.gz' -2026-01-28 14:11:18.706 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.706 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.Immutable.62ow9webvq.wasm - 200 240985 application/wasm 2.4907ms -2026-01-28 14:11:18.710 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.NonGeneric.8znze2bng9.wasm - null null -2026-01-28 14:11:18.710 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.710 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.710 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.710 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.710 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.710 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.710 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.710 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.710 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.710 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.710 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.710 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.710 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.710 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.711 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.711 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.711 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.711 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.711 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.711 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.711 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.711 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.712 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.NonGeneric.8znze2bng9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\iq26svu8f5-{0}-8znze2bng9-8znze2bng9.gz' -2026-01-28 14:11:18.712 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.712 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.NonGeneric.8znze2bng9.wasm - 200 37691 application/wasm 1.9676ms -2026-01-28 14:11:18.716 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.Specialized.xek5hgzu5v.wasm - null null -2026-01-28 14:11:18.716 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.716 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.716 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.716 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.716 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.716 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.716 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.716 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.716 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.716 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.716 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.716 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.716 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.716 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.717 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.717 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.717 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.717 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.717 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.717 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.717 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.717 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.717 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.Specialized.xek5hgzu5v.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4cpzjuj3r0-{0}-xek5hgzu5v-xek5hgzu5v.gz' -2026-01-28 14:11:18.717 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.717 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.Specialized.xek5hgzu5v.wasm - 200 37691 application/wasm 1.8778ms -2026-01-28 14:11:18.722 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.0nghqyig8i.wasm - null null -2026-01-28 14:11:18.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.723 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.723 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.723 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.723 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.723 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.723 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.723 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.723 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.723 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.723 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.723 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.723 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.723 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.723 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.724 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.0nghqyig8i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rssb0afnfp-{0}-0nghqyig8i-0nghqyig8i.gz' -2026-01-28 14:11:18.724 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.724 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.0nghqyig8i.wasm - 200 102725 application/wasm 1.939ms -2026-01-28 14:11:18.728 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Annotations.x5puxnf36m.wasm - null null -2026-01-28 14:11:18.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.729 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.729 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.729 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.729 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.729 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.729 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.729 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.729 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.729 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.729 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.729 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.729 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.729 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.729 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.730 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.Annotations.x5puxnf36m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sxzb8xtw7k-{0}-x5puxnf36m-x5puxnf36m.gz' -2026-01-28 14:11:18.731 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.731 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Annotations.x5puxnf36m.wasm - 200 92480 application/wasm 2.3808ms -2026-01-28 14:11:18.734 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.DataAnnotations.w951woxztj.wasm - null null -2026-01-28 14:11:18.735 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.735 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.735 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.735 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.735 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.735 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.735 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.735 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.735 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.735 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.735 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.735 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.735 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.735 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.735 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.735 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.735 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.735 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.735 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.735 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.735 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.736 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.736 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.DataAnnotations.w951woxztj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\koqxcel3zt-{0}-w951woxztj-w951woxztj.gz' -2026-01-28 14:11:18.736 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.736 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.DataAnnotations.w951woxztj.wasm - 200 6454 application/wasm 1.7974ms -2026-01-28 14:11:18.740 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.EventBasedAsync.xxfp6nuzvv.wasm - null null -2026-01-28 14:11:18.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.740 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.740 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.740 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.740 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.740 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.740 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.741 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.741 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.741 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.741 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.741 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.741 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.741 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.741 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.741 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.EventBasedAsync.xxfp6nuzvv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vq3ormnt3h-{0}-xxfp6nuzvv-xxfp6nuzvv.gz' -2026-01-28 14:11:18.741 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.741 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.EventBasedAsync.xxfp6nuzvv.wasm - 200 16182 application/wasm 1.7473ms -2026-01-28 14:11:18.746 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Primitives.lfp6xvb2nc.wasm - null null -2026-01-28 14:11:18.746 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.746 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.746 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.746 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.746 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.747 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.747 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.747 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.747 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.747 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.747 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.747 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.747 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.747 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.747 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.748 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.Primitives.lfp6xvb2nc.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\f7c6808jvl-{0}-lfp6xvb2nc-lfp6xvb2nc.gz' -2026-01-28 14:11:18.748 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.748 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Primitives.lfp6xvb2nc.wasm - 200 32054 application/wasm 2.1168ms -2026-01-28 14:11:18.752 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.TypeConverter.b6pminnty5.wasm - null null -2026-01-28 14:11:18.753 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.753 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.753 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.753 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.753 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.753 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.753 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.753 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.753 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.753 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.753 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.753 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.753 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.753 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.753 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.753 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.753 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.753 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.753 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.753 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.753 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.753 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.755 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.TypeConverter.b6pminnty5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lj5t7hnftt-{0}-b6pminnty5-b6pminnty5.gz' -2026-01-28 14:11:18.755 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.755 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.TypeConverter.b6pminnty5.wasm - 200 306531 application/wasm 3.0002ms -2026-01-28 14:11:18.759 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.1kxs5658en.wasm - null null -2026-01-28 14:11:18.760 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.760 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.760 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.760 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.760 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.760 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.760 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.760 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.760 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.760 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.760 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.760 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.760 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.760 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.760 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.760 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.760 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.760 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.760 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.760 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.760 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.760 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.761 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.1kxs5658en.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3bfqm2cg1o-{0}-1kxs5658en-1kxs5658en.gz' -2026-01-28 14:11:18.761 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.761 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.1kxs5658en.wasm - 200 5942 application/wasm 1.9748ms -2026-01-28 14:11:18.765 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Configuration.dfuzh9rwie.wasm - null null -2026-01-28 14:11:18.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.766 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.766 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.766 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.766 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.766 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.766 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.766 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.766 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.766 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.766 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.766 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.766 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.766 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.767 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.767 +03:00 [INF] Sending file. Request path: '_framework/System.Configuration.dfuzh9rwie.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xe6xuwrov9-{0}-dfuzh9rwie-dfuzh9rwie.gz' -2026-01-28 14:11:18.767 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.767 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Configuration.dfuzh9rwie.wasm - 200 9014 application/wasm 1.9996ms -2026-01-28 14:11:18.771 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Console.5bpbf67g8o.wasm - null null -2026-01-28 14:11:18.771 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.772 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.772 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.772 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.772 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.772 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.772 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.772 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.772 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.772 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.772 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.772 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.772 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.772 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.772 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.772 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.772 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.772 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.772 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.772 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.772 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.772 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.773 +03:00 [INF] Sending file. Request path: '_framework/System.Console.5bpbf67g8o.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6mvz9phqs1-{0}-5bpbf67g8o-5bpbf67g8o.gz' -2026-01-28 14:11:18.773 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.773 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Console.5bpbf67g8o.wasm - 200 43835 application/wasm 1.7598ms -2026-01-28 14:11:18.776 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Core.zxsh7ohdyg.wasm - null null -2026-01-28 14:11:18.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.777 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.777 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.777 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.777 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.777 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.777 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.777 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.777 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.777 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.777 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.777 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.777 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.777 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.777 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.777 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.777 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.777 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.777 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.777 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.777 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.777 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.778 +03:00 [INF] Sending file. Request path: '_framework/System.Core.zxsh7ohdyg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\cubawh6yyf-{0}-zxsh7ohdyg-zxsh7ohdyg.gz' -2026-01-28 14:11:18.778 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.778 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Core.zxsh7ohdyg.wasm - 200 13110 application/wasm 1.606ms -2026-01-28 14:11:18.782 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Data.Common.f0gomia98j.wasm - null null -2026-01-28 14:11:18.782 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.782 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.782 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.782 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.782 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.782 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.782 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.782 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.782 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.782 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.782 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.782 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.782 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.782 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.783 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.783 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.783 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.783 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.783 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.783 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.783 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.783 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.787 +03:00 [INF] Sending file. Request path: '_framework/System.Data.Common.f0gomia98j.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1c47smzjbl-{0}-f0gomia98j-f0gomia98j.gz' -2026-01-28 14:11:18.787 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.788 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Data.Common.f0gomia98j.wasm - 200 1008076 application/wasm 5.9523ms -2026-01-28 14:11:18.794 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Data.DataSetExtensions.3k3coynn1w.wasm - null null -2026-01-28 14:11:18.795 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.795 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.795 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.795 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.795 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.795 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.795 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.795 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.795 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.795 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.795 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.795 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.795 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.795 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.795 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.795 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.795 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.795 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.795 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.795 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.795 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.795 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.796 +03:00 [INF] Sending file. Request path: '_framework/System.Data.DataSetExtensions.3k3coynn1w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ud5iprd0cp-{0}-3k3coynn1w-3k3coynn1w.gz' -2026-01-28 14:11:18.796 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.796 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Data.DataSetExtensions.3k3coynn1w.wasm - 200 5430 application/wasm 1.9054ms -2026-01-28 14:11:18.800 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Data.d1s9ppg3o7.wasm - null null -2026-01-28 14:11:18.800 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.800 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.800 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.800 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.800 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.801 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.801 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.801 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.801 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.801 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.801 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.801 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.801 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.801 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.801 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.801 +03:00 [INF] Sending file. Request path: '_framework/System.Data.d1s9ppg3o7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\z59k6pwvr9-{0}-d1s9ppg3o7-d1s9ppg3o7.gz' -2026-01-28 14:11:18.801 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.802 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Data.d1s9ppg3o7.wasm - 200 15158 application/wasm 1.7684ms -2026-01-28 14:11:18.805 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Contracts.yj802auekg.wasm - null null -2026-01-28 14:11:18.806 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.806 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.806 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.806 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.806 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.806 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.806 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.806 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.806 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.806 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.806 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.806 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.806 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.806 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.806 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.806 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.806 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.806 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.806 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.806 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.806 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.806 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.807 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Contracts.yj802auekg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\895yo00sin-{0}-yj802auekg-yj802auekg.gz' -2026-01-28 14:11:18.807 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.807 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Contracts.yj802auekg.wasm - 200 5942 application/wasm 1.7709ms -2026-01-28 14:11:18.811 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Debug.d3luf33vju.wasm - null null -2026-01-28 14:11:18.811 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.811 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.811 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.811 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.811 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.811 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.811 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.811 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.811 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.811 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.811 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.811 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.811 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.811 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.812 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.812 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.812 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.812 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.812 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.812 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.812 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.812 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.812 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Debug.d3luf33vju.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\eplp8tl5qp-{0}-d3luf33vju-d3luf33vju.gz' -2026-01-28 14:11:18.812 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.812 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Debug.d3luf33vju.wasm - 200 5430 application/wasm 1.8458ms -2026-01-28 14:11:18.818 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.DiagnosticSource.4iwxfpqf71.wasm - null null -2026-01-28 14:11:18.818 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.818 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.818 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.818 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.818 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.818 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.818 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.818 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.818 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.818 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.818 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.818 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.818 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.819 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.819 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.819 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.819 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.819 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.819 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.819 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.819 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.819 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.821 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.DiagnosticSource.4iwxfpqf71.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1hb9b6viqf-{0}-4iwxfpqf71-4iwxfpqf71.gz' -2026-01-28 14:11:18.821 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.821 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.DiagnosticSource.4iwxfpqf71.wasm - 200 192335 application/wasm 2.9769ms -2026-01-28 14:11:18.824 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.FileVersionInfo.pqffbmgf59.wasm - null null -2026-01-28 14:11:18.825 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.825 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.825 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.825 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.825 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.825 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.825 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.825 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.825 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.825 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.825 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.825 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.825 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.825 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.825 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.825 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.825 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.825 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.825 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.825 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.825 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.826 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.826 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.FileVersionInfo.pqffbmgf59.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s56fv99ax6-{0}-pqffbmgf59-pqffbmgf59.gz' -2026-01-28 14:11:18.826 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.826 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.FileVersionInfo.pqffbmgf59.wasm - 200 12598 application/wasm 2.0981ms -2026-01-28 14:11:18.830 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Process.hgedtugxkh.wasm - null null -2026-01-28 14:11:18.831 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.831 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.831 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.831 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.831 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.831 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.831 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.831 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.831 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.831 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.831 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.831 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.831 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.831 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.831 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.831 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.831 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.831 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.831 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.831 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.831 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.831 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.832 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Process.hgedtugxkh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ulvoxvx0qx-{0}-hgedtugxkh-hgedtugxkh.gz' -2026-01-28 14:11:18.832 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.832 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Process.hgedtugxkh.wasm - 200 46395 application/wasm 2.011ms -2026-01-28 14:11:18.836 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.StackTrace.apl6dmc0ay.wasm - null null -2026-01-28 14:11:18.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.837 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.837 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.837 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.837 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.837 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.837 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.837 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.837 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.837 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.837 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.838 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.StackTrace.apl6dmc0ay.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b4bxks5sgj-{0}-apl6dmc0ay-apl6dmc0ay.gz' -2026-01-28 14:11:18.838 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.838 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.StackTrace.apl6dmc0ay.wasm - 200 15670 application/wasm 1.6436ms -2026-01-28 14:11:18.842 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.TextWriterTraceListener.p621ruagc5.wasm - null null -2026-01-28 14:11:18.842 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.842 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.842 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.842 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.842 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.842 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.842 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.842 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.842 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.842 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.842 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.842 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.842 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.842 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.843 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.843 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.843 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.843 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.843 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.843 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.843 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.843 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.843 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.TextWriterTraceListener.p621ruagc5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0rz7u0vbo5-{0}-p621ruagc5-p621ruagc5.gz' -2026-01-28 14:11:18.843 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.844 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.TextWriterTraceListener.p621ruagc5.wasm - 200 21302 application/wasm 1.8359ms -2026-01-28 14:11:18.847 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Tools.f5hnfusd9n.wasm - null null -2026-01-28 14:11:18.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.848 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.848 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.848 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.848 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.848 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.848 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.848 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.848 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.848 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.848 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.848 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.848 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.848 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.848 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.849 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Tools.f5hnfusd9n.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rtkunlcxi7-{0}-f5hnfusd9n-f5hnfusd9n.gz' -2026-01-28 14:11:18.849 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.849 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Tools.f5hnfusd9n.wasm - 200 4918 application/wasm 1.7778ms -2026-01-28 14:11:18.854 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.TraceSource.z6jsaoha6p.wasm - null null -2026-01-28 14:11:18.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.854 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.854 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.854 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.854 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.854 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.854 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.854 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.855 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.855 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.855 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.855 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.855 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.855 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.855 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.855 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.855 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.TraceSource.z6jsaoha6p.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3okia77zo6-{0}-z6jsaoha6p-z6jsaoha6p.gz' -2026-01-28 14:11:18.855 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.855 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.TraceSource.z6jsaoha6p.wasm - 200 48443 application/wasm 1.7762ms -2026-01-28 14:11:18.865 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Tracing.d1w6x6c56c.wasm - null null -2026-01-28 14:11:18.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.866 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.866 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.866 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.866 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.866 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.866 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.866 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.866 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.866 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.866 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.867 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Tracing.d1w6x6c56c.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bl5rt2o9qk-{0}-d1w6x6c56c-d1w6x6c56c.gz' -2026-01-28 14:11:18.867 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.867 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Tracing.d1w6x6c56c.wasm - 200 5942 application/wasm 1.7168ms -2026-01-28 14:11:18.876 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Drawing.Primitives.l0kpbmmg5r.wasm - null null -2026-01-28 14:11:18.877 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.877 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.877 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.877 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.877 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.877 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.877 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.877 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.877 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.877 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.877 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.877 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.877 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.877 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.877 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.877 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.877 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.877 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.877 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.877 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.877 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.878 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.878 +03:00 [INF] Sending file. Request path: '_framework/System.Drawing.Primitives.l0kpbmmg5r.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mnh24cyvjl-{0}-l0kpbmmg5r-l0kpbmmg5r.gz' -2026-01-28 14:11:18.878 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.878 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Drawing.Primitives.l0kpbmmg5r.wasm - 200 54587 application/wasm 2.0489ms -2026-01-28 14:11:18.883 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Drawing.ur4stg427u.wasm - null null -2026-01-28 14:11:18.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.883 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.883 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.883 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.883 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.884 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.884 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.884 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.884 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.884 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.884 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.884 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.884 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.884 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.884 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.884 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.884 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.884 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.884 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.884 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.884 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.884 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.885 +03:00 [INF] Sending file. Request path: '_framework/System.Drawing.ur4stg427u.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tcko64rf2o-{0}-ur4stg427u-ur4stg427u.gz' -2026-01-28 14:11:18.885 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.885 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Drawing.ur4stg427u.wasm - 200 10038 application/wasm 1.6747ms -2026-01-28 14:11:18.889 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Dynamic.Runtime.hhm1961hd1.wasm - null null -2026-01-28 14:11:18.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.890 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.890 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.890 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.890 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.890 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.890 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.890 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.890 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.890 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.890 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.890 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.890 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.890 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.890 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.891 +03:00 [INF] Sending file. Request path: '_framework/System.Dynamic.Runtime.hhm1961hd1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bmbd8giz1p-{0}-hhm1961hd1-hhm1961hd1.gz' -2026-01-28 14:11:18.891 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.891 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Dynamic.Runtime.hhm1961hd1.wasm - 200 5942 application/wasm 1.7077ms -2026-01-28 14:11:18.896 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Formats.Asn1.9b1kh77dim.wasm - null null -2026-01-28 14:11:18.896 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.896 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.896 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.896 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.896 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.897 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.897 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.897 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.897 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.897 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.897 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.897 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.897 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.897 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.897 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.897 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.897 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.897 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.897 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.897 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.897 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.897 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.898 +03:00 [INF] Sending file. Request path: '_framework/System.Formats.Asn1.9b1kh77dim.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3nsgkkymfm-{0}-9b1kh77dim-9b1kh77dim.gz' -2026-01-28 14:11:18.898 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.898 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Formats.Asn1.9b1kh77dim.wasm - 200 86848 application/wasm 2.1031ms -2026-01-28 14:11:18.903 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Formats.Tar.pwu9oiomot.wasm - null null -2026-01-28 14:11:18.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.903 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.903 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.903 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.903 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.904 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.904 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.904 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.904 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.904 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.904 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.904 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.904 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.904 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.904 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.904 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.904 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.904 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.904 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.904 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.904 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.904 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.905 +03:00 [INF] Sending file. Request path: '_framework/System.Formats.Tar.pwu9oiomot.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\hazqfqk5pt-{0}-pwu9oiomot-pwu9oiomot.gz' -2026-01-28 14:11:18.905 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.905 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Formats.Tar.pwu9oiomot.wasm - 200 28470 application/wasm 1.8081ms -2026-01-28 14:11:18.909 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Globalization.Calendars.w6686c3eg8.wasm - null null -2026-01-28 14:11:18.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.909 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.910 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.910 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.910 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.910 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.910 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.910 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.910 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.910 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.910 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.910 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.911 +03:00 [INF] Sending file. Request path: '_framework/System.Globalization.Calendars.w6686c3eg8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\095aowv2ry-{0}-w6686c3eg8-w6686c3eg8.gz' -2026-01-28 14:11:18.911 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.911 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Globalization.Calendars.w6686c3eg8.wasm - 200 5430 application/wasm 1.7554ms -2026-01-28 14:11:18.915 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Globalization.Extensions.koczvzp0tt.wasm - null null -2026-01-28 14:11:18.915 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.916 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.916 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.916 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.916 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.916 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.916 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.916 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.916 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.916 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.916 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.916 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.916 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.916 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.916 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.916 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.916 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.916 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.916 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.916 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.916 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.916 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.917 +03:00 [INF] Sending file. Request path: '_framework/System.Globalization.Extensions.koczvzp0tt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dl0jfhz19c-{0}-koczvzp0tt-koczvzp0tt.gz' -2026-01-28 14:11:18.917 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.917 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Globalization.Extensions.koczvzp0tt.wasm - 200 4918 application/wasm 1.7568ms -2026-01-28 14:11:18.920 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Globalization.k8m97q3m8s.wasm - null null -2026-01-28 14:11:18.921 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.921 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.921 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.921 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.921 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.921 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.921 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.921 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.921 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.921 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.921 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.921 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.921 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.921 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.922 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.922 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.922 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.922 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.922 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.922 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.922 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.922 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.922 +03:00 [INF] Sending file. Request path: '_framework/System.Globalization.k8m97q3m8s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8q1hdhcajb-{0}-k8m97q3m8s-k8m97q3m8s.gz' -2026-01-28 14:11:18.922 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.922 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Globalization.k8m97q3m8s.wasm - 200 5430 application/wasm 1.6432ms -2026-01-28 14:11:18.927 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.Brotli.66hvl0dk85.wasm - null null -2026-01-28 14:11:18.927 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.927 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.927 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.927 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.927 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.928 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.928 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.928 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.928 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.928 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.928 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.928 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.928 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.928 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.928 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.928 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.928 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.928 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.928 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.928 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.928 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.928 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.929 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Compression.Brotli.66hvl0dk85.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\klv0zda5b4-{0}-66hvl0dk85-66hvl0dk85.gz' -2026-01-28 14:11:18.929 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.929 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.Brotli.66hvl0dk85.wasm - 200 18230 application/wasm 2.5881ms -2026-01-28 14:11:18.936 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.FileSystem.jhbp0nl2b8.wasm - null null -2026-01-28 14:11:18.937 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.937 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.937 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.937 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.937 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.937 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.937 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.937 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.937 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.937 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.937 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.937 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.937 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.937 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.937 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.937 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.937 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.937 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.937 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.937 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.937 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.937 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.938 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Compression.FileSystem.jhbp0nl2b8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3qa8sgt8n1-{0}-jhbp0nl2b8-jhbp0nl2b8.gz' -2026-01-28 14:11:18.938 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.938 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.FileSystem.jhbp0nl2b8.wasm - 200 4918 application/wasm 1.5651ms -2026-01-28 14:11:18.944 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.ZipFile.nap78ewmdw.wasm - null null -2026-01-28 14:11:18.945 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.945 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.945 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.945 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.945 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.945 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.945 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.945 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.945 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.945 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.945 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.945 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.945 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.945 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.946 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.946 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.946 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.946 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.946 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.946 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.946 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.946 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.946 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Compression.ZipFile.nap78ewmdw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s0uvr55768-{0}-nap78ewmdw-nap78ewmdw.gz' -2026-01-28 14:11:18.946 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.947 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.ZipFile.nap78ewmdw.wasm - 200 43323 application/wasm 2.1081ms -2026-01-28 14:11:18.952 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.wjdy7ns833.wasm - null null -2026-01-28 14:11:18.953 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.953 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.953 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.953 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.953 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.953 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.953 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.953 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.953 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.953 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.953 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.953 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.953 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.953 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.953 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.953 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.953 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.953 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.953 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.953 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.953 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.954 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.955 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Compression.wjdy7ns833.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b9wmrmes1g-{0}-wjdy7ns833-wjdy7ns833.gz' -2026-01-28 14:11:18.955 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.955 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.wjdy7ns833.wasm - 200 157514 application/wasm 3.1995ms -2026-01-28 14:11:18.973 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.AccessControl.eod3jwbqn7.wasm - null null -2026-01-28 14:11:18.974 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.974 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.974 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.974 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.974 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.974 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.974 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.974 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.974 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.974 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.974 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.974 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.974 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.974 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.974 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.974 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.974 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.974 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.974 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.974 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.975 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.975 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.975 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.AccessControl.eod3jwbqn7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dxkig4l83f-{0}-eod3jwbqn7-eod3jwbqn7.gz' -2026-01-28 14:11:18.975 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.975 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.AccessControl.eod3jwbqn7.wasm - 200 21814 application/wasm 1.9907ms -2026-01-28 14:11:18.980 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.DriveInfo.driq9z3dvq.wasm - null null -2026-01-28 14:11:18.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.981 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.981 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.981 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.981 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.981 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.981 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.981 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.981 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.981 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.981 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.981 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.981 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.981 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.982 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.982 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.DriveInfo.driq9z3dvq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\53tiabgbqz-{0}-driq9z3dvq-driq9z3dvq.gz' -2026-01-28 14:11:18.982 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.982 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.DriveInfo.driq9z3dvq.wasm - 200 13622 application/wasm 1.9421ms -2026-01-28 14:11:18.989 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.Primitives.81fwc35czq.wasm - null null -2026-01-28 14:11:18.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.990 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.990 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.990 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.990 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.990 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.990 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.991 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.991 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.991 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.991 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.991 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.991 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.991 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.991 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.992 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.Primitives.81fwc35czq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3hdbxu1ccm-{0}-81fwc35czq-81fwc35czq.gz' -2026-01-28 14:11:18.992 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.992 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.Primitives.81fwc35czq.wasm - 200 4918 application/wasm 2.219ms -2026-01-28 14:11:18.998 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.Watcher.adgwo4kuza.wasm - null null -2026-01-28 14:11:18.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.998 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:18.998 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:18.998 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:18.998 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.998 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:18.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:18.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:18.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:18.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:18.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:18.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:18.998 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:18.999 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:18.999 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:18.999 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:18.999 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:18.999 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:18.999 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:18.999 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:18.999 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.999 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.Watcher.adgwo4kuza.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0nk9uqd91z-{0}-adgwo4kuza-adgwo4kuza.gz' -2026-01-28 14:11:18.999 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:18.999 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.Watcher.adgwo4kuza.wasm - 200 22838 application/wasm 1.9165ms -2026-01-28 14:11:19.005 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.bwu3sqaj6h.wasm - null null -2026-01-28 14:11:19.006 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.006 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.006 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.006 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.006 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.006 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.006 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.006 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.006 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.006 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.006 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.006 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.006 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.006 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.006 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.006 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.006 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.006 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.006 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.006 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.006 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.006 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.007 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.bwu3sqaj6h.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0oeun214in-{0}-bwu3sqaj6h-bwu3sqaj6h.gz' -2026-01-28 14:11:19.007 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.007 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.bwu3sqaj6h.wasm - 200 5430 application/wasm 1.9426ms -2026-01-28 14:11:19.014 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.IsolatedStorage.h5a2uwu0ao.wasm - null null -2026-01-28 14:11:19.015 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.015 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.015 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.015 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.015 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.015 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.015 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.015 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.015 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.015 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.015 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.015 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.015 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.015 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.016 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.016 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.016 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.016 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.016 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.016 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.016 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.016 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.017 +03:00 [INF] Sending file. Request path: '_framework/System.IO.IsolatedStorage.h5a2uwu0ao.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wxrt5vpq1k-{0}-h5a2uwu0ao-h5a2uwu0ao.gz' -2026-01-28 14:11:19.017 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.017 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.IsolatedStorage.h5a2uwu0ao.wasm - 200 24886 application/wasm 3.2572ms -2026-01-28 14:11:19.026 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.MemoryMappedFiles.7rigkgafok.wasm - null null -2026-01-28 14:11:19.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.026 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.027 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.027 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.027 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.027 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.027 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.027 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.027 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.027 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.027 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.027 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.027 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.027 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.027 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.027 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.027 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.027 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.027 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.027 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.027 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.027 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.028 +03:00 [INF] Sending file. Request path: '_framework/System.IO.MemoryMappedFiles.7rigkgafok.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vyic7lxnxv-{0}-7rigkgafok-7rigkgafok.gz' -2026-01-28 14:11:19.028 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.028 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.MemoryMappedFiles.7rigkgafok.wasm - 200 39739 application/wasm 2.5978ms -2026-01-28 14:11:19.035 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipelines.pq56wwa14f.wasm - null null -2026-01-28 14:11:19.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.035 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.035 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.035 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.035 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.035 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.035 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.035 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.035 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.035 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.035 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.035 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.035 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.035 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.036 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.036 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Pipelines.pq56wwa14f.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\a08rh4wqum-{0}-pq56wwa14f-pq56wwa14f.gz' -2026-01-28 14:11:19.036 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.036 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipelines.pq56wwa14f.wasm - 200 67904 application/wasm 1.9175ms -2026-01-28 14:11:19.043 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipes.AccessControl.orawgey7bd.wasm - null null -2026-01-28 14:11:19.043 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.043 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.043 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.043 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.043 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.044 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.044 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.044 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.044 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.044 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.044 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.044 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.044 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.044 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.044 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.045 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Pipes.AccessControl.orawgey7bd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\l16mq4yf9p-{0}-orawgey7bd-orawgey7bd.gz' -2026-01-28 14:11:19.045 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.045 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipes.AccessControl.orawgey7bd.wasm - 200 13110 application/wasm 2.699ms -2026-01-28 14:11:19.051 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipes.qv5hx9ne5m.wasm - null null -2026-01-28 14:11:19.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.052 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.052 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.052 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.052 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.052 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.052 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.052 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.052 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.052 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.052 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.052 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.052 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.052 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.052 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.053 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Pipes.qv5hx9ne5m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\r2irkbzfn5-{0}-qv5hx9ne5m-qv5hx9ne5m.gz' -2026-01-28 14:11:19.053 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.053 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipes.qv5hx9ne5m.wasm - 200 32054 application/wasm 1.6999ms -2026-01-28 14:11:19.058 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.UnmanagedMemoryStream.zjpuh62vtt.wasm - null null -2026-01-28 14:11:19.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.059 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.059 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.060 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.060 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.060 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.060 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.060 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.060 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.060 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.060 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.061 +03:00 [INF] Sending file. Request path: '_framework/System.IO.UnmanagedMemoryStream.zjpuh62vtt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\u2mfjvv6a6-{0}-zjpuh62vtt-zjpuh62vtt.gz' -2026-01-28 14:11:19.061 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.061 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.UnmanagedMemoryStream.zjpuh62vtt.wasm - 200 5430 application/wasm 2.537ms -2026-01-28 14:11:19.066 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.kdm5se4z4i.wasm - null null -2026-01-28 14:11:19.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.066 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.066 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.066 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.066 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.066 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.066 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.067 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.067 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.067 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.067 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.067 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.067 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.067 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.067 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.067 +03:00 [INF] Sending file. Request path: '_framework/System.IO.kdm5se4z4i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tx0zr2bfyn-{0}-kdm5se4z4i-kdm5se4z4i.gz' -2026-01-28 14:11:19.067 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.067 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.kdm5se4z4i.wasm - 200 5430 application/wasm 1.4275ms -2026-01-28 14:11:19.074 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.AsyncEnumerable.24q069vvmu.wasm - null null -2026-01-28 14:11:19.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.075 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.075 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.075 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.075 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.075 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.075 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.075 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.075 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.075 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.075 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.075 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.075 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.075 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.075 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.075 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.075 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.075 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.075 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.075 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.075 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.075 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.078 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.AsyncEnumerable.24q069vvmu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c7lzsfjd6q-{0}-24q069vvmu-24q069vvmu.gz' -2026-01-28 14:11:19.078 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.079 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.AsyncEnumerable.24q069vvmu.wasm - 200 446327 application/wasm 4.5771ms -2026-01-28 14:11:19.085 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.Expressions.5vac4cfeo2.wasm - null null -2026-01-28 14:11:19.086 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.086 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.086 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.086 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.086 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.086 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.086 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.086 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.086 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.086 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.086 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.086 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.086 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.086 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.086 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.086 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.086 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.086 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.086 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.086 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.086 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.086 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.089 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.Expressions.5vac4cfeo2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ofq1bjb4ny-{0}-5vac4cfeo2-5vac4cfeo2.gz' -2026-01-28 14:11:19.089 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.089 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.Expressions.5vac4cfeo2.wasm - 200 565131 application/wasm 3.7113ms -2026-01-28 14:11:19.099 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.Parallel.wec9zwybs3.wasm - null null -2026-01-28 14:11:19.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.099 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.099 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.100 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.100 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.100 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.100 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.100 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.100 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.100 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.100 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.107 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.Parallel.wec9zwybs3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gqwqnnwtf4-{0}-wec9zwybs3-wec9zwybs3.gz' -2026-01-28 14:11:19.107 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.108 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.Parallel.wec9zwybs3.wasm - 200 212820 application/wasm 8.9903ms -2026-01-28 14:11:19.133 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.Queryable.aacsqokaru.wasm - null null -2026-01-28 14:11:19.134 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.134 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.134 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.134 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.134 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.134 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.134 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.134 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.134 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.134 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.134 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.134 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.134 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.134 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.134 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.134 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.135 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.135 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.135 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.135 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.135 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.135 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.136 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.Queryable.aacsqokaru.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6oa4hfxdqf-{0}-aacsqokaru-aacsqokaru.gz' -2026-01-28 14:11:19.136 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.136 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.Queryable.aacsqokaru.wasm - 200 68416 application/wasm 2.9704ms -2026-01-28 14:11:19.142 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.xsk9czcoz7.wasm - null null -2026-01-28 14:11:19.143 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.143 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.143 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.143 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.143 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.143 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.143 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.143 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.143 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.143 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.143 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.143 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.143 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.143 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.144 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.144 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.144 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.144 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.144 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.144 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.144 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.144 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.145 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.xsk9czcoz7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xukhwpcysr-{0}-xsk9czcoz7-xsk9czcoz7.gz' -2026-01-28 14:11:19.145 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.145 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.xsk9czcoz7.wasm - 200 190799 application/wasm 3.2612ms -2026-01-28 14:11:19.151 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Memory.av3iy8oqe6.wasm - null null -2026-01-28 14:11:19.152 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.152 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.152 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.152 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.152 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.152 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.152 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.152 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.152 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.152 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.152 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.152 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.152 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.152 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.153 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.153 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.153 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.153 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.153 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.153 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.153 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.153 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.153 +03:00 [INF] Sending file. Request path: '_framework/System.Memory.av3iy8oqe6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\20k8bcs2ry-{0}-av3iy8oqe6-av3iy8oqe6.gz' -2026-01-28 14:11:19.153 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.153 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Memory.av3iy8oqe6.wasm - 200 45371 application/wasm 1.9337ms -2026-01-28 14:11:19.160 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Http.Json.f5ti54ia1a.wasm - null null -2026-01-28 14:11:19.160 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.160 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.160 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.160 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.160 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.160 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.160 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.160 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.160 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.160 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.160 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.160 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.160 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.160 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.160 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.160 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.160 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.160 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.160 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.160 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.160 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.161 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.162 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Http.Json.f5ti54ia1a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\hdhp2fv8el-{0}-f5ti54ia1a-f5ti54ia1a.gz' -2026-01-28 14:11:19.162 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.162 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Http.Json.f5ti54ia1a.wasm - 200 45883 application/wasm 2.1193ms -2026-01-28 14:11:19.167 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Http.xnexopyo77.wasm - null null -2026-01-28 14:11:19.167 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.167 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.167 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.167 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.167 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.167 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.167 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.167 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.167 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.167 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.167 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.167 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.167 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.167 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.167 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.167 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.167 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.167 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.167 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.167 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.167 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.168 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.169 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Http.xnexopyo77.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5zhsh7htpt-{0}-xnexopyo77-xnexopyo77.gz' -2026-01-28 14:11:19.169 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.169 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Http.xnexopyo77.wasm - 200 286046 application/wasm 2.9405ms -2026-01-28 14:11:19.177 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.HttpListener.qea3lr0ivv.wasm - null null -2026-01-28 14:11:19.177 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.177 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.177 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.177 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.177 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.177 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.178 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.178 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.178 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.178 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.178 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.178 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.178 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.178 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.178 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.178 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.178 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.178 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.178 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.178 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.178 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.178 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.179 +03:00 [INF] Sending file. Request path: '_framework/System.Net.HttpListener.qea3lr0ivv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xstee2l2o3-{0}-qea3lr0ivv-qea3lr0ivv.gz' -2026-01-28 14:11:19.179 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.179 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.HttpListener.qea3lr0ivv.wasm - 200 45883 application/wasm 2.5998ms -2026-01-28 14:11:19.184 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Mail.kabvwy0nwb.wasm - null null -2026-01-28 14:11:19.185 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.185 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.185 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.185 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.185 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.185 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.185 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.185 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.185 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.206 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.206 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.206 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.206 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.206 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.206 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.206 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.206 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.207 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.208 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Mail.kabvwy0nwb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\brj66r630l-{0}-kabvwy0nwb-kabvwy0nwb.gz' -2026-01-28 14:11:19.208 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.208 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Mail.kabvwy0nwb.wasm - 200 95040 application/wasm 23.3781ms -2026-01-28 14:11:19.214 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.NameResolution.r77xqyi48e.wasm - null null -2026-01-28 14:11:19.214 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.214 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.214 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.214 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.214 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.214 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.214 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.214 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.214 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.214 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.214 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.214 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.214 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.214 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.214 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.214 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.214 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.215 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.215 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.215 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.215 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.215 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.215 +03:00 [INF] Sending file. Request path: '_framework/System.Net.NameResolution.r77xqyi48e.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0muzq1nn1l-{0}-r77xqyi48e-r77xqyi48e.gz' -2026-01-28 14:11:19.215 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.215 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.NameResolution.r77xqyi48e.wasm - 200 14134 application/wasm 1.4652ms -2026-01-28 14:11:19.220 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.NetworkInformation.4y8ae4b47g.wasm - null null -2026-01-28 14:11:19.220 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.220 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.220 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.220 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.220 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.220 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.220 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.220 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.220 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.220 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.220 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.220 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.220 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.220 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.221 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.221 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.221 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.221 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.221 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.221 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.221 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.221 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.221 +03:00 [INF] Sending file. Request path: '_framework/System.Net.NetworkInformation.4y8ae4b47g.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\t7lf75pu6w-{0}-4y8ae4b47g-4y8ae4b47g.gz' -2026-01-28 14:11:19.221 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.221 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.NetworkInformation.4y8ae4b47g.wasm - 200 32054 application/wasm 1.6291ms -2026-01-28 14:11:19.227 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Ping.fb39s7nqmu.wasm - null null -2026-01-28 14:11:19.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.228 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.228 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.229 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.229 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.229 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.229 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.229 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.229 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.229 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.229 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.229 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Ping.fb39s7nqmu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1qhthfilvz-{0}-fb39s7nqmu-fb39s7nqmu.gz' -2026-01-28 14:11:19.229 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.229 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Ping.fb39s7nqmu.wasm - 200 17718 application/wasm 1.732ms -2026-01-28 14:11:19.234 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Primitives.2oo4pve6tx.wasm - null null -2026-01-28 14:11:19.235 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.235 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.235 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.235 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.235 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.235 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.235 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.235 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.235 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.235 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.235 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.235 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.235 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.235 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.235 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.235 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.235 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.235 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.235 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.235 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.235 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.235 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.236 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Primitives.2oo4pve6tx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xxez8u380e-{0}-2oo4pve6tx-2oo4pve6tx.gz' -2026-01-28 14:11:19.237 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.237 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Primitives.2oo4pve6tx.wasm - 200 97088 application/wasm 2.451ms -2026-01-28 14:11:19.243 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Quic.wedsu6m1ok.wasm - null null -2026-01-28 14:11:19.244 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.244 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.244 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.244 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.244 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.244 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.244 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.244 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.244 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.244 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.244 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.244 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.244 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.244 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.245 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.245 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.245 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.245 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.245 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.245 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.245 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.245 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.245 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Quic.wedsu6m1ok.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mavmo5ad6x-{0}-wedsu6m1ok-wedsu6m1ok.gz' -2026-01-28 14:11:19.245 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.246 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Quic.wedsu6m1ok.wasm - 200 28982 application/wasm 2.3926ms -2026-01-28 14:11:19.251 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Requests.dd8um1v0v4.wasm - null null -2026-01-28 14:11:19.252 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.252 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.252 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.252 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.252 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.252 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.252 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.252 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.252 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.252 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.252 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.252 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.252 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.252 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.252 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.252 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.252 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.252 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.252 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.252 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.252 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.252 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.253 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Requests.dd8um1v0v4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\g8osyueis5-{0}-dd8um1v0v4-dd8um1v0v4.gz' -2026-01-28 14:11:19.253 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.253 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Requests.dd8um1v0v4.wasm - 200 55611 application/wasm 1.7249ms -2026-01-28 14:11:19.259 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Security.j01yc12epg.wasm - null null -2026-01-28 14:11:19.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.260 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.260 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.260 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.260 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.260 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.260 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.260 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.260 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.260 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.260 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.260 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.260 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.260 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.260 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.260 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.260 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.260 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.260 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.261 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.261 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.261 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.262 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Security.j01yc12epg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vd1ks16ws6-{0}-j01yc12epg-j01yc12epg.gz' -2026-01-28 14:11:19.262 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.262 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Security.j01yc12epg.wasm - 200 104261 application/wasm 3.3592ms -2026-01-28 14:11:19.267 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.ServerSentEvents.n20pwunwwa.wasm - null null -2026-01-28 14:11:19.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.268 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.268 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.268 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.268 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.268 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.268 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.268 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.268 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.268 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.269 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.269 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.269 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.269 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.269 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.269 +03:00 [INF] Sending file. Request path: '_framework/System.Net.ServerSentEvents.n20pwunwwa.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rp6twqxirl-{0}-n20pwunwwa-n20pwunwwa.gz' -2026-01-28 14:11:19.269 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.269 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.ServerSentEvents.n20pwunwwa.wasm - 200 30518 application/wasm 2.1305ms -2026-01-28 14:11:19.275 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.ServicePoint.6qgdmrxct2.wasm - null null -2026-01-28 14:11:19.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.276 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.276 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.276 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.276 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.276 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.276 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.276 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.276 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.276 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.276 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.276 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.276 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.276 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.277 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.277 +03:00 [INF] Sending file. Request path: '_framework/System.Net.ServicePoint.6qgdmrxct2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v7t97n1u19-{0}-6qgdmrxct2-6qgdmrxct2.gz' -2026-01-28 14:11:19.277 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.277 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.ServicePoint.6qgdmrxct2.wasm - 200 4918 application/wasm 2.18ms -2026-01-28 14:11:19.284 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Sockets.0jj55xk9rv.wasm - null null -2026-01-28 14:11:19.284 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.284 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.284 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.284 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.284 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.285 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.285 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.285 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.285 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.285 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.285 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.285 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.285 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.285 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.285 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.285 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.285 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.285 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.285 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.285 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.285 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.285 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.285 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Sockets.0jj55xk9rv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\i4k589b7bn-{0}-0jj55xk9rv-0jj55xk9rv.gz' -2026-01-28 14:11:19.285 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.286 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Sockets.0jj55xk9rv.wasm - 200 64315 application/wasm 1.6841ms -2026-01-28 14:11:19.292 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebClient.3wc74qco9q.wasm - null null -2026-01-28 14:11:19.293 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.293 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.293 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.293 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.293 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.293 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.293 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.293 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.293 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.293 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.293 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.293 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.293 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.293 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.293 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.293 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.293 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.294 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.294 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.294 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.294 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.294 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.295 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebClient.3wc74qco9q.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9mnjsb8x3q-{0}-3wc74qco9q-3wc74qco9q.gz' -2026-01-28 14:11:19.295 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.295 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebClient.3wc74qco9q.wasm - 200 45883 application/wasm 2.6943ms -2026-01-28 14:11:19.303 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebHeaderCollection.4ybcvi6krs.wasm - null null -2026-01-28 14:11:19.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.303 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.303 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.303 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.303 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.303 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.303 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.304 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.304 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.304 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.304 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.304 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.304 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.304 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.304 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.305 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebHeaderCollection.4ybcvi6krs.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\apet8won7e-{0}-4ybcvi6krs-4ybcvi6krs.gz' -2026-01-28 14:11:19.305 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.305 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebHeaderCollection.4ybcvi6krs.wasm - 200 22838 application/wasm 2.1112ms -2026-01-28 14:11:19.313 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebProxy.zxvs9bwlaq.wasm - null null -2026-01-28 14:11:19.314 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.314 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.314 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.314 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.314 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.314 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.314 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.314 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.314 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.314 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.314 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.314 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.314 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.314 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.315 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.315 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.315 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.315 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.315 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.315 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.315 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.315 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.316 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebProxy.zxvs9bwlaq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n8e7iy8bgt-{0}-zxvs9bwlaq-zxvs9bwlaq.gz' -2026-01-28 14:11:19.316 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.316 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebProxy.zxvs9bwlaq.wasm - 200 11574 application/wasm 2.8959ms -2026-01-28 14:11:19.322 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebSockets.Client.n57nf3z1br.wasm - null null -2026-01-28 14:11:19.323 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.323 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.323 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.323 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.323 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.323 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.323 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.323 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.323 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.323 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.323 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.323 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.323 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.323 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.323 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.323 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.323 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.323 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.323 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.323 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.323 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.324 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.324 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebSockets.Client.n57nf3z1br.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rnseevpeje-{0}-n57nf3z1br-n57nf3z1br.gz' -2026-01-28 14:11:19.324 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.324 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebSockets.Client.n57nf3z1br.wasm - 200 42299 application/wasm 2.5607ms -2026-01-28 14:11:19.333 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebSockets.i3475fl55i.wasm - null null -2026-01-28 14:11:19.333 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.334 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.334 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.334 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.334 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.334 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.334 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.334 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.334 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.334 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.334 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.334 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.334 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.334 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.334 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.335 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebSockets.i3475fl55i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fixxlx5x95-{0}-i3475fl55i-i3475fl55i.gz' -2026-01-28 14:11:19.335 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.335 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebSockets.i3475fl55i.wasm - 200 98629 application/wasm 2.3803ms -2026-01-28 14:11:19.341 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.2jb9y9tls4.wasm - null null -2026-01-28 14:11:19.342 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.342 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.342 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.342 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.342 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.342 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.342 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.342 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.342 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.342 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.342 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.342 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.342 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.342 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.342 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.342 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.342 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.342 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.342 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.342 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.342 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.343 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.343 +03:00 [INF] Sending file. Request path: '_framework/System.Net.2jb9y9tls4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sdhyils1a8-{0}-2jb9y9tls4-2jb9y9tls4.gz' -2026-01-28 14:11:19.343 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.343 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.2jb9y9tls4.wasm - 200 6966 application/wasm 2.1044ms -2026-01-28 14:11:19.349 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Numerics.Vectors.tjoypuu8wa.wasm - null null -2026-01-28 14:11:19.349 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.349 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.349 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.349 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.349 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.349 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.349 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.349 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.349 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.349 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.349 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.349 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.349 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.349 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.350 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.350 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.350 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.350 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.350 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.350 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.350 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.350 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.350 +03:00 [INF] Sending file. Request path: '_framework/System.Numerics.Vectors.tjoypuu8wa.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\52qfucpyv5-{0}-tjoypuu8wa-tjoypuu8wa.gz' -2026-01-28 14:11:19.350 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.350 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Numerics.Vectors.tjoypuu8wa.wasm - 200 5430 application/wasm 1.5598ms -2026-01-28 14:11:19.355 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Numerics.zb6snwiiqo.wasm - null null -2026-01-28 14:11:19.356 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.356 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.356 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.356 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.356 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.356 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.356 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.356 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.356 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.356 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.356 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.356 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.356 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.356 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.356 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.356 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.356 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.357 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.357 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.357 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.357 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.357 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.357 +03:00 [INF] Sending file. Request path: '_framework/System.Numerics.zb6snwiiqo.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3mhjbwzot4-{0}-zb6snwiiqo-zb6snwiiqo.gz' -2026-01-28 14:11:19.357 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.357 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Numerics.zb6snwiiqo.wasm - 200 4918 application/wasm 1.7803ms -2026-01-28 14:11:19.363 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ObjectModel.qra8ipv6cl.wasm - null null -2026-01-28 14:11:19.364 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.364 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.364 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.364 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.364 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.364 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.364 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.364 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.364 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.364 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.364 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.364 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.364 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.364 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.364 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.364 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.364 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.364 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.364 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.364 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.364 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.364 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.364 +03:00 [INF] Sending file. Request path: '_framework/System.ObjectModel.qra8ipv6cl.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\69h7jimh8b-{0}-qra8ipv6cl-qra8ipv6cl.gz' -2026-01-28 14:11:19.364 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.365 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ObjectModel.qra8ipv6cl.wasm - 200 31030 application/wasm 1.392ms -2026-01-28 14:11:19.369 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.DataContractSerialization.cdaesawoob.wasm - null null -2026-01-28 14:11:19.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.370 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.370 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.370 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.370 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.370 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.370 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.370 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.370 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.370 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.370 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.370 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.370 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.370 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.370 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.374 +03:00 [INF] Sending file. Request path: '_framework/System.Private.DataContractSerialization.cdaesawoob.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xukodscfdt-{0}-cdaesawoob-cdaesawoob.gz' -2026-01-28 14:11:19.374 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.375 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.DataContractSerialization.cdaesawoob.wasm - 200 849331 application/wasm 5.2344ms -2026-01-28 14:11:19.384 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.Uri.d7c7uu4en8.wasm - null null -2026-01-28 14:11:19.384 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.384 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.384 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.384 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.384 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.385 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.385 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.385 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.385 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.385 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.385 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.385 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.385 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.385 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.385 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.385 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.385 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.385 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.385 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.385 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.385 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.385 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.386 +03:00 [INF] Sending file. Request path: '_framework/System.Private.Uri.d7c7uu4en8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ru8d7hu3hx-{0}-d7c7uu4en8-d7c7uu4en8.gz' -2026-01-28 14:11:19.386 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.386 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.Uri.d7c7uu4en8.wasm - 200 95040 application/wasm 2.0465ms -2026-01-28 14:11:19.415 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.Xml.Linq.yklun9npsh.wasm - null null -2026-01-28 14:11:19.415 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.415 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.415 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.415 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.415 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.415 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.415 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.415 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.415 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.415 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.415 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.415 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.415 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.415 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.416 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.416 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.416 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.416 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.416 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.416 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.416 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.416 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.417 +03:00 [INF] Sending file. Request path: '_framework/System.Private.Xml.Linq.yklun9npsh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wby45u92ah-{0}-yklun9npsh-yklun9npsh.gz' -2026-01-28 14:11:19.417 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.417 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.Xml.Linq.yklun9npsh.wasm - 200 143690 application/wasm 2.2738ms -2026-01-28 14:11:19.422 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.Xml.8fl2owujec.wasm - null null -2026-01-28 14:11:19.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.423 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.423 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.423 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.423 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.423 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.423 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.423 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.423 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.423 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.423 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.423 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.423 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.423 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.424 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.433 +03:00 [INF] Sending file. Request path: '_framework/System.Private.Xml.8fl2owujec.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4tw2sl7qh6-{0}-8fl2owujec-8fl2owujec.gz' -2026-01-28 14:11:19.433 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.433 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.Xml.8fl2owujec.wasm - 200 3096336 application/wasm 10.3859ms -2026-01-28 14:11:19.456 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.DispatchProxy.dur3huf884.wasm - null null -2026-01-28 14:11:19.457 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.457 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.457 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.457 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.457 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.457 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.457 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.457 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.457 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.457 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.457 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.457 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.457 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.457 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.457 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.457 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.457 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.457 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.457 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.457 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.457 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.457 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.458 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.DispatchProxy.dur3huf884.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1vtfgkdvnc-{0}-dur3huf884-dur3huf884.gz' -2026-01-28 14:11:19.458 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.458 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.DispatchProxy.dur3huf884.wasm - 200 27958 application/wasm 1.471ms -2026-01-28 14:11:19.463 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.ILGeneration.pei97jn90w.wasm - null null -2026-01-28 14:11:19.463 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.463 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.463 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.463 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.463 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.463 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.463 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.463 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.463 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.463 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.463 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.463 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.463 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.463 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.463 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.463 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.463 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.463 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.463 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.464 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.464 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.464 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.464 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Emit.ILGeneration.pei97jn90w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v1gyf0d1ub-{0}-pei97jn90w-pei97jn90w.gz' -2026-01-28 14:11:19.464 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.464 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.ILGeneration.pei97jn90w.wasm - 200 5430 application/wasm 1.3908ms -2026-01-28 14:11:19.469 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.Lightweight.ywsyqlj9p1.wasm - null null -2026-01-28 14:11:19.469 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.469 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.469 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.469 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.469 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.469 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.469 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.469 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.469 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.469 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.469 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.469 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.469 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.469 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.469 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.469 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.469 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.469 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.469 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.469 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.469 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.470 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.470 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Emit.Lightweight.ywsyqlj9p1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fhnd5yeiv1-{0}-ywsyqlj9p1-ywsyqlj9p1.gz' -2026-01-28 14:11:19.470 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.470 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.Lightweight.ywsyqlj9p1.wasm - 200 5430 application/wasm 1.5075ms -2026-01-28 14:11:19.477 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.tumhikm19o.wasm - null null -2026-01-28 14:11:19.477 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.477 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.477 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.477 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.477 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.477 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.477 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.477 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.477 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.477 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.477 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.477 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.477 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.477 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.478 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.478 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.478 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.478 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.478 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.478 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.478 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.478 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.479 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Emit.tumhikm19o.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vgtdlzmyp9-{0}-tumhikm19o-tumhikm19o.gz' -2026-01-28 14:11:19.479 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.479 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.tumhikm19o.wasm - 200 122693 application/wasm 2.8024ms -2026-01-28 14:11:19.484 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Extensions.z98cfn5ig8.wasm - null null -2026-01-28 14:11:19.485 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.485 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.485 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.485 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.485 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.485 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.485 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.485 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.485 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.485 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.485 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.485 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.485 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.485 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.485 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.485 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.485 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.485 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.485 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.485 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.485 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.485 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.485 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Extensions.z98cfn5ig8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5188hd084t-{0}-z98cfn5ig8-z98cfn5ig8.gz' -2026-01-28 14:11:19.485 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.486 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Extensions.z98cfn5ig8.wasm - 200 4918 application/wasm 1.3637ms -2026-01-28 14:11:19.491 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Metadata.j4t1n1ywxj.wasm - null null -2026-01-28 14:11:19.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.491 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.491 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.491 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.491 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.491 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.491 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.492 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.492 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.492 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.492 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.492 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.492 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.492 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.492 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.494 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Metadata.j4t1n1ywxj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ih2v39fwix-{0}-j4t1n1ywxj-j4t1n1ywxj.gz' -2026-01-28 14:11:19.494 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.495 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Metadata.j4t1n1ywxj.wasm - 200 493441 application/wasm 3.808ms -2026-01-28 14:11:19.501 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Primitives.p4ntci6hk7.wasm - null null -2026-01-28 14:11:19.501 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.501 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.501 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.501 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.501 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.501 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.501 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.501 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.501 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.501 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.501 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.501 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.501 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.501 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.501 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.501 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.501 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.501 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.501 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.501 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.501 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.502 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.502 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Primitives.p4ntci6hk7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\z9kjf4ns5o-{0}-p4ntci6hk7-p4ntci6hk7.gz' -2026-01-28 14:11:19.502 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.502 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Primitives.p4ntci6hk7.wasm - 200 5430 application/wasm 1.4466ms -2026-01-28 14:11:19.507 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.TypeExtensions.puzzlnwex2.wasm - null null -2026-01-28 14:11:19.507 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.507 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.507 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.507 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.507 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.507 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.507 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.507 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.507 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.507 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.507 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.507 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.507 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.507 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.507 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.507 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.507 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.507 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.507 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.507 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.507 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.507 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.508 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.TypeExtensions.puzzlnwex2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7ukk8euu3c-{0}-puzzlnwex2-puzzlnwex2.gz' -2026-01-28 14:11:19.508 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.508 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.TypeExtensions.puzzlnwex2.wasm - 200 14134 application/wasm 1.478ms -2026-01-28 14:11:19.513 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.lt32pnnkzd.wasm - null null -2026-01-28 14:11:19.513 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.514 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.514 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.514 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.514 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.514 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.514 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.514 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.514 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.514 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.514 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.514 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.514 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.514 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.514 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.514 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.514 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.514 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.514 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.514 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.514 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.514 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.515 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.lt32pnnkzd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5zfqu7bsm3-{0}-lt32pnnkzd-lt32pnnkzd.gz' -2026-01-28 14:11:19.515 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.515 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.lt32pnnkzd.wasm - 200 5942 application/wasm 1.8115ms -2026-01-28 14:11:19.519 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Resources.Reader.c8jfsntxbn.wasm - null null -2026-01-28 14:11:19.520 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.520 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.520 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.520 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.520 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.520 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.520 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.520 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.520 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.520 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.520 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.520 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.520 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.520 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.520 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.520 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.520 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.520 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.520 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.520 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.520 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.520 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.521 +03:00 [INF] Sending file. Request path: '_framework/System.Resources.Reader.c8jfsntxbn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5fcb3hbz6f-{0}-c8jfsntxbn-c8jfsntxbn.gz' -2026-01-28 14:11:19.521 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.521 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Resources.Reader.c8jfsntxbn.wasm - 200 4918 application/wasm 1.6249ms -2026-01-28 14:11:19.526 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Resources.ResourceManager.q30psrnl7u.wasm - null null -2026-01-28 14:11:19.526 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.526 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.526 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.526 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.526 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.526 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.526 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.526 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.526 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.526 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.526 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.526 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.526 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.526 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.526 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.526 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.526 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.526 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.526 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.526 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.527 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.527 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.527 +03:00 [INF] Sending file. Request path: '_framework/System.Resources.ResourceManager.q30psrnl7u.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\k3xfrex2pp-{0}-q30psrnl7u-q30psrnl7u.gz' -2026-01-28 14:11:19.527 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.527 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Resources.ResourceManager.q30psrnl7u.wasm - 200 5430 application/wasm 1.653ms -2026-01-28 14:11:19.533 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Resources.Writer.wvyn0j1lcg.wasm - null null -2026-01-28 14:11:19.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.534 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.534 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.534 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.534 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.534 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.534 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.534 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.534 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.534 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.534 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.535 +03:00 [INF] Sending file. Request path: '_framework/System.Resources.Writer.wvyn0j1lcg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wsg9isam35-{0}-wvyn0j1lcg-wvyn0j1lcg.gz' -2026-01-28 14:11:19.535 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.535 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Resources.Writer.wvyn0j1lcg.wasm - 200 16694 application/wasm 1.5809ms -2026-01-28 14:11:19.540 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.CompilerServices.Unsafe.djrvtrz9tb.wasm - null null -2026-01-28 14:11:19.541 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.541 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.541 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.541 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.541 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.541 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.541 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.541 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.541 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.541 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.541 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.541 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.541 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.541 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.541 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.541 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.541 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.541 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.541 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.541 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.541 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.542 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.542 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.CompilerServices.Unsafe.djrvtrz9tb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\smsvmq9glf-{0}-djrvtrz9tb-djrvtrz9tb.gz' -2026-01-28 14:11:19.542 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.542 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.CompilerServices.Unsafe.djrvtrz9tb.wasm - 200 4918 application/wasm 1.8994ms -2026-01-28 14:11:19.547 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.CompilerServices.VisualC.luekj4crl6.wasm - null null -2026-01-28 14:11:19.548 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.548 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.548 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.548 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.548 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.548 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.548 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.548 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.548 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.548 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.548 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.548 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.548 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.548 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.548 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.548 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.548 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.548 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.548 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.548 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.548 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.548 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.549 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.CompilerServices.VisualC.luekj4crl6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\w5clnjen17-{0}-luekj4crl6-luekj4crl6.gz' -2026-01-28 14:11:19.549 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.549 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.CompilerServices.VisualC.luekj4crl6.wasm - 200 6966 application/wasm 1.5974ms -2026-01-28 14:11:19.553 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Extensions.d5mymlulmr.wasm - null null -2026-01-28 14:11:19.554 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.554 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.554 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.554 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.554 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.554 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.554 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.554 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.554 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.554 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.554 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.554 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.554 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.554 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.554 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.554 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.554 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.554 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.554 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.554 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.554 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.554 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.555 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Extensions.d5mymlulmr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n6jkmkc1vw-{0}-d5mymlulmr-d5mymlulmr.gz' -2026-01-28 14:11:19.555 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.555 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Extensions.d5mymlulmr.wasm - 200 7478 application/wasm 1.4822ms -2026-01-28 14:11:19.561 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Handles.ih3cmfwxzd.wasm - null null -2026-01-28 14:11:19.561 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.561 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.561 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.561 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.561 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.562 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.562 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.562 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.562 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.562 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.562 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.562 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.562 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.562 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.562 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.562 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Handles.ih3cmfwxzd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2b53wjzpk1-{0}-ih3cmfwxzd-ih3cmfwxzd.gz' -2026-01-28 14:11:19.562 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.562 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Handles.ih3cmfwxzd.wasm - 200 5430 application/wasm 1.735ms -2026-01-28 14:11:19.566 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.RuntimeInformation.nvwt5l6jkw.wasm - null null -2026-01-28 14:11:19.567 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.567 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.567 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.567 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.567 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.567 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.567 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.567 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.567 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.567 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.567 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.567 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.567 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.567 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.567 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.567 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.567 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.567 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.567 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.567 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.567 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.567 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.568 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.InteropServices.RuntimeInformation.nvwt5l6jkw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5rxlvv130r-{0}-nvwt5l6jkw-nvwt5l6jkw.gz' -2026-01-28 14:11:19.568 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.568 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.RuntimeInformation.nvwt5l6jkw.wasm - 200 4918 application/wasm 1.4691ms -2026-01-28 14:11:19.574 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.0us88a4qml.wasm - null null -2026-01-28 14:11:19.574 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.574 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.574 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.574 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.574 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.574 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.574 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.574 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.574 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.574 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.574 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.574 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.574 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.574 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.575 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.575 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.575 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.575 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.575 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.575 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.575 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.575 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.575 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.InteropServices.0us88a4qml.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\t1e5pdefro-{0}-0us88a4qml-0us88a4qml.gz' -2026-01-28 14:11:19.575 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.575 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.0us88a4qml.wasm - 200 54587 application/wasm 1.8084ms -2026-01-28 14:11:19.581 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Intrinsics.bd7qf7pr2d.wasm - null null -2026-01-28 14:11:19.581 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.581 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.581 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.582 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.582 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.582 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.582 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.582 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.582 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.582 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.582 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.582 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.582 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.582 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.582 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.582 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.582 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.582 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.582 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.582 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.582 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.582 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.582 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Intrinsics.bd7qf7pr2d.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\q8hyt22w7t-{0}-bd7qf7pr2d-bd7qf7pr2d.gz' -2026-01-28 14:11:19.582 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.583 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Intrinsics.bd7qf7pr2d.wasm - 200 6966 application/wasm 1.4717ms -2026-01-28 14:11:19.587 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Loader.opo019ewpt.wasm - null null -2026-01-28 14:11:19.587 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.587 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.587 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.587 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.587 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.587 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.587 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.587 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.587 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.587 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.587 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.587 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.587 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.587 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.588 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.588 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.588 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.588 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.588 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.588 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.588 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.588 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.588 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Loader.opo019ewpt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lulkrkawwl-{0}-opo019ewpt-opo019ewpt.gz' -2026-01-28 14:11:19.588 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.589 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Loader.opo019ewpt.wasm - 200 5430 application/wasm 1.8583ms -2026-01-28 14:11:19.595 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Numerics.opgppvbdi6.wasm - null null -2026-01-28 14:11:19.595 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.595 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.595 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.595 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.595 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.595 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.595 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.595 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.595 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.595 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.595 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.595 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.595 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.595 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.596 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.596 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.596 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.596 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.596 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.596 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.596 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.596 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.597 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Numerics.opgppvbdi6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\15lzitxs0t-{0}-opgppvbdi6-opgppvbdi6.gz' -2026-01-28 14:11:19.597 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.597 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Numerics.opgppvbdi6.wasm - 200 134986 application/wasm 2.0442ms -2026-01-28 14:11:19.602 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Formatters.seonqd55ks.wasm - null null -2026-01-28 14:11:19.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.602 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.602 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.602 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.603 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.603 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.603 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.603 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.603 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.603 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.603 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.603 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.Formatters.seonqd55ks.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n0v9yl0jh6-{0}-seonqd55ks-seonqd55ks.gz' -2026-01-28 14:11:19.603 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.603 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Formatters.seonqd55ks.wasm - 200 55611 application/wasm 1.5642ms -2026-01-28 14:11:19.608 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Json.zn0mp7kdmp.wasm - null null -2026-01-28 14:11:19.608 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.608 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.609 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.609 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.609 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.609 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.609 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.609 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.609 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.609 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.609 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.609 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.609 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.609 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.609 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.609 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.609 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.609 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.609 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.609 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.609 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.609 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.610 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.Json.zn0mp7kdmp.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wh4w9dsljz-{0}-zn0mp7kdmp-zn0mp7kdmp.gz' -2026-01-28 14:11:19.610 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.610 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Json.zn0mp7kdmp.wasm - 200 5430 application/wasm 1.9648ms -2026-01-28 14:11:19.615 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Primitives.yueinvlj2j.wasm - null null -2026-01-28 14:11:19.615 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.616 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.616 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.616 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.616 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.616 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.616 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.616 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.616 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.616 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.616 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.616 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.Primitives.yueinvlj2j.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n1gdasegta-{0}-yueinvlj2j-yueinvlj2j.gz' -2026-01-28 14:11:19.616 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.617 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Primitives.yueinvlj2j.wasm - 200 13110 application/wasm 1.5576ms -2026-01-28 14:11:19.621 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Xml.v8gymdawqg.wasm - null null -2026-01-28 14:11:19.622 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.622 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.622 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.622 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.622 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.622 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.622 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.622 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.622 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.622 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.622 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.622 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.622 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.622 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.622 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.622 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.622 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.622 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.622 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.622 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.622 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.622 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.623 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.Xml.v8gymdawqg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j0zo8hxl7f-{0}-v8gymdawqg-v8gymdawqg.gz' -2026-01-28 14:11:19.623 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.623 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Xml.v8gymdawqg.wasm - 200 6454 application/wasm 1.8484ms -2026-01-28 14:11:19.628 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.gs7sg0u955.wasm - null null -2026-01-28 14:11:19.629 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.629 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.629 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.629 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.629 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.629 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.629 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.629 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.629 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.629 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.629 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.629 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.629 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.629 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.629 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.629 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.629 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.629 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.629 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.629 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.629 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.629 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.630 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.gs7sg0u955.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c9urnolypd-{0}-gs7sg0u955-gs7sg0u955.gz' -2026-01-28 14:11:19.630 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.630 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.gs7sg0u955.wasm - 200 6966 application/wasm 1.734ms -2026-01-28 14:11:19.651 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.6bp69qbwkj.wasm - null null -2026-01-28 14:11:19.651 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.651 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.651 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.651 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.651 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.651 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.651 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.651 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.651 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.651 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.651 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.651 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.651 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.651 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.652 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.652 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.652 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.652 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.652 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.652 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.652 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.652 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.652 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.6bp69qbwkj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\35jd1dce24-{0}-6bp69qbwkj-6bp69qbwkj.gz' -2026-01-28 14:11:19.652 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.652 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.6bp69qbwkj.wasm - 200 34619 application/wasm 1.4697ms -2026-01-28 14:11:19.657 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.AccessControl.6rjkcrpkiw.wasm - null null -2026-01-28 14:11:19.658 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.658 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.658 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.658 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.658 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.658 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.658 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.658 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.658 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.658 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.658 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.658 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.658 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.658 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.658 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.658 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.658 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.658 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.659 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.659 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.659 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.659 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.659 +03:00 [INF] Sending file. Request path: '_framework/System.Security.AccessControl.6rjkcrpkiw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ad9pnuyu1n-{0}-6rjkcrpkiw-6rjkcrpkiw.gz' -2026-01-28 14:11:19.659 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.660 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.AccessControl.6rjkcrpkiw.wasm - 200 47931 application/wasm 2.247ms -2026-01-28 14:11:19.666 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Claims.hk3ae85l96.wasm - null null -2026-01-28 14:11:19.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.666 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.666 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.666 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.666 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.666 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.666 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.667 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.667 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.667 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.667 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.667 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.667 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.667 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.667 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.667 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Claims.hk3ae85l96.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vbfh1norfg-{0}-hk3ae85l96-hk3ae85l96.gz' -2026-01-28 14:11:19.667 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.667 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Claims.hk3ae85l96.wasm - 200 44859 application/wasm 1.4967ms -2026-01-28 14:11:19.672 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Algorithms.whyyu092ah.wasm - null null -2026-01-28 14:11:19.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.673 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.673 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.673 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.673 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.673 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.673 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.673 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.673 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.673 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.673 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.673 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.673 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.673 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.673 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.674 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Algorithms.whyyu092ah.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lts4eaytip-{0}-whyyu092ah-whyyu092ah.gz' -2026-01-28 14:11:19.674 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.674 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Algorithms.whyyu092ah.wasm - 200 6966 application/wasm 1.6376ms -2026-01-28 14:11:19.679 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Cng.m6se2pcpu2.wasm - null null -2026-01-28 14:11:19.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.679 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.679 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.679 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.679 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.679 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.679 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.679 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.679 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.679 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.680 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.680 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Cng.m6se2pcpu2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fe4hdxl6xd-{0}-m6se2pcpu2-m6se2pcpu2.gz' -2026-01-28 14:11:19.680 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.680 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Cng.m6se2pcpu2.wasm - 200 5942 application/wasm 1.46ms -2026-01-28 14:11:19.684 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Csp.hhoaoktf3s.wasm - null null -2026-01-28 14:11:19.684 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.684 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.684 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.684 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.684 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.684 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.684 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.684 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.684 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.684 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.684 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.684 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.684 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.684 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.685 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.685 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.685 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.685 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.685 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.685 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.685 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.685 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.685 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Csp.hhoaoktf3s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\e6c5growx5-{0}-hhoaoktf3s-hhoaoktf3s.gz' -2026-01-28 14:11:19.685 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.685 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Csp.hhoaoktf3s.wasm - 200 5942 application/wasm 1.2947ms -2026-01-28 14:11:19.689 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Encoding.52vboi33gw.wasm - null null -2026-01-28 14:11:19.690 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.690 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.690 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.690 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.690 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.690 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.690 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.690 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.690 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.690 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.690 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.690 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.690 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.690 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.690 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.690 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.690 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.690 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.690 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.690 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.690 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.690 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.691 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Encoding.52vboi33gw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9nnkgpt0mz-{0}-52vboi33gw-52vboi33gw.gz' -2026-01-28 14:11:19.691 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.691 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Encoding.52vboi33gw.wasm - 200 5430 application/wasm 1.4812ms -2026-01-28 14:11:19.696 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.OpenSsl.ml0tyz68i8.wasm - null null -2026-01-28 14:11:19.696 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.696 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.696 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.696 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.696 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.696 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.696 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.696 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.696 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.696 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.696 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.696 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.696 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.696 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.696 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.696 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.696 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.696 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.696 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.696 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.696 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.696 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.697 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.OpenSsl.ml0tyz68i8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ggd18ngby9-{0}-ml0tyz68i8-ml0tyz68i8.gz' -2026-01-28 14:11:19.697 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.697 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.OpenSsl.ml0tyz68i8.wasm - 200 5430 application/wasm 1.3115ms -2026-01-28 14:11:19.701 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Primitives.1dlu2dh7y8.wasm - null null -2026-01-28 14:11:19.701 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.701 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.701 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.701 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.701 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.702 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.702 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.702 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.702 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.702 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.702 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.702 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.702 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.702 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.702 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.702 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.702 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.702 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.702 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.702 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.702 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.702 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.702 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Primitives.1dlu2dh7y8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ibvt59z0m8-{0}-1dlu2dh7y8-1dlu2dh7y8.gz' -2026-01-28 14:11:19.702 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.702 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Primitives.1dlu2dh7y8.wasm - 200 5430 application/wasm 1.4826ms -2026-01-28 14:11:19.707 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.X509Certificates.6uh0qispd4.wasm - null null -2026-01-28 14:11:19.707 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.707 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.707 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.707 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.707 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.707 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.707 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.707 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.707 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.707 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.707 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.707 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.707 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.707 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.708 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.708 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.708 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.708 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.708 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.708 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.708 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.708 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.708 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.X509Certificates.6uh0qispd4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kv01n2x7di-{0}-6uh0qispd4-6uh0qispd4.gz' -2026-01-28 14:11:19.708 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.708 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.X509Certificates.6uh0qispd4.wasm - 200 6454 application/wasm 1.4941ms -2026-01-28 14:11:19.714 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.mbts90zzn6.wasm - null null -2026-01-28 14:11:19.714 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.714 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.714 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.714 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.714 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.714 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.714 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.714 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.714 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.714 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.714 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.714 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.714 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.714 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.715 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.715 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.715 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.715 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.715 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.715 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.715 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.715 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.717 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.mbts90zzn6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\najz3idkx9-{0}-mbts90zzn6-mbts90zzn6.gz' -2026-01-28 14:11:19.717 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.717 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.mbts90zzn6.wasm - 200 642453 application/wasm 3.1919ms -2026-01-28 14:11:19.724 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Principal.Windows.rp57epmxji.wasm - null null -2026-01-28 14:11:19.724 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.724 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.724 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.724 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.724 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.724 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.724 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.724 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.724 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.724 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.724 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.724 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.724 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.724 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.724 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.724 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.724 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.724 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.724 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.724 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.724 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.725 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.725 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Principal.Windows.rp57epmxji.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6c4gn33xif-{0}-rp57epmxji-rp57epmxji.gz' -2026-01-28 14:11:19.725 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.725 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Principal.Windows.rp57epmxji.wasm - 200 27446 application/wasm 1.5821ms -2026-01-28 14:11:19.730 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Principal.0lplkfn42e.wasm - null null -2026-01-28 14:11:19.730 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.731 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.731 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.731 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.731 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.731 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.731 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.731 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.731 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.731 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.731 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.731 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.731 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.731 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.731 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.731 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Principal.0lplkfn42e.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bapixjfy1p-{0}-0lplkfn42e-0lplkfn42e.gz' -2026-01-28 14:11:19.731 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.731 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Principal.0lplkfn42e.wasm - 200 4918 application/wasm 1.3297ms -2026-01-28 14:11:19.736 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.SecureString.dhwpww24h2.wasm - null null -2026-01-28 14:11:19.736 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.736 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.736 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.736 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.736 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.736 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.736 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.736 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.736 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.736 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.736 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.736 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.736 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.736 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.737 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.737 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.737 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.737 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.737 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.737 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.737 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.737 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.737 +03:00 [INF] Sending file. Request path: '_framework/System.Security.SecureString.dhwpww24h2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\z7kpj97i3q-{0}-dhwpww24h2-dhwpww24h2.gz' -2026-01-28 14:11:19.737 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.737 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.SecureString.dhwpww24h2.wasm - 200 5430 application/wasm 1.5265ms -2026-01-28 14:11:19.742 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.l9hsxb0sdk.wasm - null null -2026-01-28 14:11:19.742 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.742 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.742 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.742 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.742 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.742 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.742 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.742 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.742 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.742 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.742 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.742 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.742 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.742 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.743 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.743 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.743 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.743 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.743 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.743 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.743 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.743 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.743 +03:00 [INF] Sending file. Request path: '_framework/System.Security.l9hsxb0sdk.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4w9pau8lca-{0}-l9hsxb0sdk-l9hsxb0sdk.gz' -2026-01-28 14:11:19.743 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.743 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.l9hsxb0sdk.wasm - 200 7990 application/wasm 1.6793ms -2026-01-28 14:11:19.748 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ServiceModel.Web.zcvkay2idv.wasm - null null -2026-01-28 14:11:19.749 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.749 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.749 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.749 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.749 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.749 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.749 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.749 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.749 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.749 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.749 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.749 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.749 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.749 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.749 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.749 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.749 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.749 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.749 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.749 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.749 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.749 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.750 +03:00 [INF] Sending file. Request path: '_framework/System.ServiceModel.Web.zcvkay2idv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wy542848av-{0}-zcvkay2idv-zcvkay2idv.gz' -2026-01-28 14:11:19.750 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.750 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ServiceModel.Web.zcvkay2idv.wasm - 200 6454 application/wasm 1.5398ms -2026-01-28 14:11:19.754 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ServiceProcess.x10kdcthsy.wasm - null null -2026-01-28 14:11:19.755 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.755 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.755 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.755 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.755 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.755 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.755 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.755 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.755 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.755 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.755 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.755 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.755 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.755 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.755 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.755 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.755 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.755 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.755 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.755 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.755 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.756 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.756 +03:00 [INF] Sending file. Request path: '_framework/System.ServiceProcess.x10kdcthsy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2yoiew09ss-{0}-x10kdcthsy-x10kdcthsy.gz' -2026-01-28 14:11:19.756 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.756 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ServiceProcess.x10kdcthsy.wasm - 200 5430 application/wasm 1.7116ms -2026-01-28 14:11:19.761 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.CodePages.36p8aommvy.wasm - null null -2026-01-28 14:11:19.761 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.761 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.762 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.762 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.762 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.762 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.762 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.762 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.762 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.762 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.762 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.762 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.762 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.762 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.762 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.765 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Encoding.CodePages.36p8aommvy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lrsfp7sbdw-{0}-36p8aommvy-36p8aommvy.gz' -2026-01-28 14:11:19.765 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.765 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.CodePages.36p8aommvy.wasm - 200 732580 application/wasm 3.772ms -2026-01-28 14:11:19.772 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.Extensions.7s9z475qvj.wasm - null null -2026-01-28 14:11:19.772 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.773 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.773 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.773 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.773 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.773 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.773 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.773 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.773 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.773 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.773 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.773 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.773 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.773 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.773 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.773 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.773 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.773 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.773 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.773 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.773 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.773 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.774 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Encoding.Extensions.7s9z475qvj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ij3a13vyp7-{0}-7s9z475qvj-7s9z475qvj.gz' -2026-01-28 14:11:19.774 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.774 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.Extensions.7s9z475qvj.wasm - 200 5430 application/wasm 2.3194ms -2026-01-28 14:11:19.780 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.ldc2rqh80i.wasm - null null -2026-01-28 14:11:19.781 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.781 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.781 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.781 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.781 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.781 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.781 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.781 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.781 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.781 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.781 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.781 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.781 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.781 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.781 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.781 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.781 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.781 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.781 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.781 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.781 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.781 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.782 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Encoding.ldc2rqh80i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\w1z5z4lpop-{0}-ldc2rqh80i-ldc2rqh80i.gz' -2026-01-28 14:11:19.782 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.782 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.ldc2rqh80i.wasm - 200 5430 application/wasm 1.5062ms -2026-01-28 14:11:19.787 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Encodings.Web.8dol48h5sw.wasm - null null -2026-01-28 14:11:19.788 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.788 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.788 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.788 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.788 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.788 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.788 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.788 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.788 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.788 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.788 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.788 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.788 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.788 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.788 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.788 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.788 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.788 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.788 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.788 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.788 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.789 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.789 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Encodings.Web.8dol48h5sw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b5ft8vnha4-{0}-8dol48h5sw-8dol48h5sw.gz' -2026-01-28 14:11:19.789 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.789 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Encodings.Web.8dol48h5sw.wasm - 200 55611 application/wasm 2.2542ms -2026-01-28 14:11:19.797 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Json.3vc5r851ef.wasm - null null -2026-01-28 14:11:19.797 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.797 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.797 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.797 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.797 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.798 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.798 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.798 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.798 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.798 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.798 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.798 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.798 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.798 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.798 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.801 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Json.3vc5r851ef.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\is1y7e0ewf-{0}-3vc5r851ef-3vc5r851ef.gz' -2026-01-28 14:11:19.801 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.801 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Json.3vc5r851ef.wasm - 200 638869 application/wasm 3.953ms -2026-01-28 14:11:19.809 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.RegularExpressions.fa55zq7noc.wasm - null null -2026-01-28 14:11:19.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.810 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.810 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.810 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.810 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.810 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.810 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.810 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.810 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.810 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.810 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.811 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.811 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.811 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.811 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.813 +03:00 [INF] Sending file. Request path: '_framework/System.Text.RegularExpressions.fa55zq7noc.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b5e2kemd87-{0}-fa55zq7noc-fa55zq7noc.gz' -2026-01-28 14:11:19.813 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.813 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.RegularExpressions.fa55zq7noc.wasm - 200 374637 application/wasm 4.1092ms -2026-01-28 14:11:19.821 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.AccessControl.0jx6t23d4a.wasm - null null -2026-01-28 14:11:19.822 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.822 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.822 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.822 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.822 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.822 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.822 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.822 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.822 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.822 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.822 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.822 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.822 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.822 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.823 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.823 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.823 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.823 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.823 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.823 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.823 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.823 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.824 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.AccessControl.0jx6t23d4a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7hxeyq70th-{0}-0jx6t23d4a-0jx6t23d4a.gz' -2026-01-28 14:11:19.824 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.824 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.AccessControl.0jx6t23d4a.wasm - 200 23350 application/wasm 2.5571ms -2026-01-28 14:11:19.831 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Channels.5yls0a3tlo.wasm - null null -2026-01-28 14:11:19.832 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.832 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.832 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.832 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.832 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.832 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.832 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.832 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.832 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.832 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.832 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.832 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.832 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.832 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.832 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.832 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.832 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.832 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.832 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.832 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.832 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.832 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.833 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Channels.5yls0a3tlo.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\yfc45zghwv-{0}-5yls0a3tlo-5yls0a3tlo.gz' -2026-01-28 14:11:19.833 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.833 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Channels.5yls0a3tlo.wasm - 200 56123 application/wasm 1.7902ms -2026-01-28 14:11:19.838 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Overlapped.7fzdvfjpcj.wasm - null null -2026-01-28 14:11:19.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.838 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.838 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.838 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.838 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.839 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.839 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.839 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.839 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.839 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.839 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.839 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.839 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.839 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.839 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.840 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Overlapped.7fzdvfjpcj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1nn32vjcux-{0}-7fzdvfjpcj-7fzdvfjpcj.gz' -2026-01-28 14:11:19.840 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.840 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Overlapped.7fzdvfjpcj.wasm - 200 5430 application/wasm 2.1128ms -2026-01-28 14:11:19.846 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Dataflow.b1bop2hs5a.wasm - null null -2026-01-28 14:11:19.846 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.846 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.846 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.846 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.846 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.847 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.847 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.847 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.847 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.847 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.847 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.847 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.847 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.847 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.847 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.848 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Tasks.Dataflow.b1bop2hs5a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bygxarg1od-{0}-b1bop2hs5a-b1bop2hs5a.gz' -2026-01-28 14:11:19.848 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.848 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Dataflow.b1bop2hs5a.wasm - 200 175439 application/wasm 2.0693ms -2026-01-28 14:11:19.853 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Extensions.w1aib1cdwa.wasm - null null -2026-01-28 14:11:19.853 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.853 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.853 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.853 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.853 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.853 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.853 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.853 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.853 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.853 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.853 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.853 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.853 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.853 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.854 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.854 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.854 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.854 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.854 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.854 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.854 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.854 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.854 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Tasks.Extensions.w1aib1cdwa.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wzcconrhmx-{0}-w1aib1cdwa-w1aib1cdwa.gz' -2026-01-28 14:11:19.854 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.854 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Extensions.w1aib1cdwa.wasm - 200 5430 application/wasm 1.5458ms -2026-01-28 14:11:19.860 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Parallel.k09pj8k6wz.wasm - null null -2026-01-28 14:11:19.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.861 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.861 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.861 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.861 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.861 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.861 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.861 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.861 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.861 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.861 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.861 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.861 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.861 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.861 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.862 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Tasks.Parallel.k09pj8k6wz.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\eo71wakl9t-{0}-k09pj8k6wz-k09pj8k6wz.gz' -2026-01-28 14:11:19.862 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.862 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Parallel.k09pj8k6wz.wasm - 200 51003 application/wasm 1.9563ms -2026-01-28 14:11:19.866 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.ixxtp5uj8k.wasm - null null -2026-01-28 14:11:19.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.867 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.867 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.867 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.867 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.867 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.867 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.867 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.867 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.867 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.867 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.867 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.867 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.867 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.867 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.867 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.867 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.867 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.867 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Tasks.ixxtp5uj8k.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dmqlrfwu1b-{0}-ixxtp5uj8k-ixxtp5uj8k.gz' -2026-01-28 14:11:19.867 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.867 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.ixxtp5uj8k.wasm - 200 6454 application/wasm 1.3123ms -2026-01-28 14:11:19.872 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Thread.oikmdgabjt.wasm - null null -2026-01-28 14:11:19.872 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.872 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.872 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.872 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.872 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.873 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.873 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.873 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.873 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.873 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.873 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.873 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.873 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.873 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.873 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.873 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.873 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.873 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.873 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.873 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.873 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.873 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.873 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Thread.oikmdgabjt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v09yqluov3-{0}-oikmdgabjt-oikmdgabjt.gz' -2026-01-28 14:11:19.873 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.873 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Thread.oikmdgabjt.wasm - 200 5430 application/wasm 1.7791ms -2026-01-28 14:11:19.880 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.ThreadPool.szctd5y8bn.wasm - null null -2026-01-28 14:11:19.880 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.880 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.880 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.880 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.880 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.880 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.880 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.880 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.880 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.880 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.880 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.880 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.880 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.880 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.880 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.880 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.880 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.880 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.880 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.880 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.880 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.880 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.881 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.ThreadPool.szctd5y8bn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jfyqp856kd-{0}-szctd5y8bn-szctd5y8bn.gz' -2026-01-28 14:11:19.881 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.881 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.ThreadPool.szctd5y8bn.wasm - 200 5430 application/wasm 1.4725ms -2026-01-28 14:11:19.885 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Timer.k8rrsskw5o.wasm - null null -2026-01-28 14:11:19.885 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.885 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.885 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.885 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.885 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.885 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.886 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.886 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.886 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.886 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.886 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.886 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.886 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.886 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.886 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.886 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.886 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.886 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.886 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.886 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.886 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.886 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.886 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Timer.k8rrsskw5o.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kw1ofqxbky-{0}-k8rrsskw5o-k8rrsskw5o.gz' -2026-01-28 14:11:19.886 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.886 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Timer.k8rrsskw5o.wasm - 200 4918 application/wasm 1.7397ms -2026-01-28 14:11:19.892 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.s2hrn953g9.wasm - null null -2026-01-28 14:11:19.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.892 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.892 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.892 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.892 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.892 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.893 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.893 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.893 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.893 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.893 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.893 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.893 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.893 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.893 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.893 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.893 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.893 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.893 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.894 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.s2hrn953g9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6obifrcy4d-{0}-s2hrn953g9-s2hrn953g9.gz' -2026-01-28 14:11:19.894 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.894 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.s2hrn953g9.wasm - 200 34619 application/wasm 2.2378ms -2026-01-28 14:11:19.905 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Transactions.Local.nufsb5pyrr.wasm - null null -2026-01-28 14:11:19.905 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.905 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.905 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.905 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.905 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.905 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.905 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.906 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.906 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.906 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.906 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.906 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.906 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.906 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.906 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.906 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.906 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.906 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.907 +03:00 [INF] Sending file. Request path: '_framework/System.Transactions.Local.nufsb5pyrr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vnl4qu3in7-{0}-nufsb5pyrr-nufsb5pyrr.gz' -2026-01-28 14:11:19.907 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.907 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Transactions.Local.nufsb5pyrr.wasm - 200 165711 application/wasm 2.3206ms -2026-01-28 14:11:19.912 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Transactions.3ezo8twol7.wasm - null null -2026-01-28 14:11:19.912 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.912 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.912 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.912 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.912 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.912 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.912 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.912 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.912 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.912 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.912 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.912 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.912 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.912 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.912 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.912 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.912 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.912 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.912 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.913 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.913 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.913 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.913 +03:00 [INF] Sending file. Request path: '_framework/System.Transactions.3ezo8twol7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v8zohqruou-{0}-3ezo8twol7-3ezo8twol7.gz' -2026-01-28 14:11:19.913 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.913 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Transactions.3ezo8twol7.wasm - 200 6454 application/wasm 1.4388ms -2026-01-28 14:11:19.917 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ValueTuple.lle7yi2fzv.wasm - null null -2026-01-28 14:11:19.917 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.917 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.918 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.918 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.918 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.918 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.918 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.918 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.918 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.918 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.918 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.918 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.918 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.918 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.918 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.918 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.918 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.918 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.918 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.918 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.918 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.918 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.918 +03:00 [INF] Sending file. Request path: '_framework/System.ValueTuple.lle7yi2fzv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\io39vdvq9n-{0}-lle7yi2fzv-lle7yi2fzv.gz' -2026-01-28 14:11:19.918 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.919 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ValueTuple.lle7yi2fzv.wasm - 200 5430 application/wasm 1.5152ms -2026-01-28 14:11:19.924 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Web.HttpUtility.u5rdfpwou6.wasm - null null -2026-01-28 14:11:19.924 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.924 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.924 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.924 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.924 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.924 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.924 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.924 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.924 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.924 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.924 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.924 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.924 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.924 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.925 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.925 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.925 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.925 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.925 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.925 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.925 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.925 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.925 +03:00 [INF] Sending file. Request path: '_framework/System.Web.HttpUtility.u5rdfpwou6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rn4buhtgqs-{0}-u5rdfpwou6-u5rdfpwou6.gz' -2026-01-28 14:11:19.925 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.925 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Web.HttpUtility.u5rdfpwou6.wasm - 200 19766 application/wasm 1.4958ms -2026-01-28 14:11:19.930 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Web.wygikf6la5.wasm - null null -2026-01-28 14:11:19.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.931 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.931 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.931 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.931 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.931 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.931 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.931 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.931 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.931 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.931 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.931 +03:00 [INF] Sending file. Request path: '_framework/System.Web.wygikf6la5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ru9f3t39bb-{0}-wygikf6la5-wygikf6la5.gz' -2026-01-28 14:11:19.931 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.931 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Web.wygikf6la5.wasm - 200 4918 application/wasm 1.3557ms -2026-01-28 14:11:19.935 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Windows.axtn86mzz6.wasm - null null -2026-01-28 14:11:19.935 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.935 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.935 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.936 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.936 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.936 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.936 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.936 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.936 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.936 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.936 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.936 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.936 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.936 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.936 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.936 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.936 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.936 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.936 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.936 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.936 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.936 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.936 +03:00 [INF] Sending file. Request path: '_framework/System.Windows.axtn86mzz6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1my90r3byi-{0}-axtn86mzz6-axtn86mzz6.gz' -2026-01-28 14:11:19.936 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.936 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Windows.axtn86mzz6.wasm - 200 5430 application/wasm 1.3321ms -2026-01-28 14:11:19.941 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.Linq.j4b5ce3025.wasm - null null -2026-01-28 14:11:19.941 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.941 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.941 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.941 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.941 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.941 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.942 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.942 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.942 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.942 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.942 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.942 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.942 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.942 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.942 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.942 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.942 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.942 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.942 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.942 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.942 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.942 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.942 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.Linq.j4b5ce3025.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2m6czvvsuo-{0}-j4b5ce3025-j4b5ce3025.gz' -2026-01-28 14:11:19.942 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.942 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.Linq.j4b5ce3025.wasm - 200 5430 application/wasm 1.6188ms -2026-01-28 14:11:19.947 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.ReaderWriter.60z52rxro3.wasm - null null -2026-01-28 14:11:19.947 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.947 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.947 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.947 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.947 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.947 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.947 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.947 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.947 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.947 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.947 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.947 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.947 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.947 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.948 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.948 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.948 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.948 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.948 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.948 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.948 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.948 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.948 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.ReaderWriter.60z52rxro3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rg4isli5jp-{0}-60z52rxro3-60z52rxro3.gz' -2026-01-28 14:11:19.948 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.948 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.ReaderWriter.60z52rxro3.wasm - 200 11574 application/wasm 1.462ms -2026-01-28 14:11:19.952 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.Serialization.pm5yw3aolk.wasm - null null -2026-01-28 14:11:19.953 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.953 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.953 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.953 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.953 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.953 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.953 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.953 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.953 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.953 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.953 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.953 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.953 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.953 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.953 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.953 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.953 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.953 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.953 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.953 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.953 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.953 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.954 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.Serialization.pm5yw3aolk.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\o41cy5pfaz-{0}-pm5yw3aolk-pm5yw3aolk.gz' -2026-01-28 14:11:19.954 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.954 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.Serialization.pm5yw3aolk.wasm - 200 5942 application/wasm 1.4037ms -2026-01-28 14:11:19.958 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XDocument.b4xtw4lbmx.wasm - null null -2026-01-28 14:11:19.958 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.958 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.958 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.958 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.958 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.958 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.958 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.958 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.958 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.958 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.958 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.958 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.958 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.958 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.958 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.958 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.958 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.958 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.958 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.958 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.958 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.959 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.959 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XDocument.b4xtw4lbmx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\veh6k128ug-{0}-b4xtw4lbmx-b4xtw4lbmx.gz' -2026-01-28 14:11:19.959 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.959 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XDocument.b4xtw4lbmx.wasm - 200 5430 application/wasm 1.5459ms -2026-01-28 14:11:19.964 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XPath.XDocument.p6s7bmw3ej.wasm - null null -2026-01-28 14:11:19.964 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.964 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.964 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.964 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.964 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.964 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.964 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.964 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.964 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.964 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.964 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.964 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.964 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.964 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.965 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.965 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.965 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.965 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.965 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.965 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.965 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.965 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.965 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XPath.XDocument.p6s7bmw3ej.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dp2x1o3mj5-{0}-p6s7bmw3ej-p6s7bmw3ej.gz' -2026-01-28 14:11:19.965 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.965 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XPath.XDocument.p6s7bmw3ej.wasm - 200 5430 application/wasm 1.4906ms -2026-01-28 14:11:19.969 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XPath.egozus3d9z.wasm - null null -2026-01-28 14:11:19.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.970 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.970 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.970 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.970 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.970 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.970 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.970 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.970 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.970 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.970 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.970 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.970 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.970 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.970 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.971 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XPath.egozus3d9z.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6kx3a3nw65-{0}-egozus3d9z-egozus3d9z.gz' -2026-01-28 14:11:19.971 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.971 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XPath.egozus3d9z.wasm - 200 5430 application/wasm 1.5494ms -2026-01-28 14:11:19.975 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XmlDocument.771pf23z5h.wasm - null null -2026-01-28 14:11:19.975 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.975 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.975 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.975 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.975 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.976 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.976 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.976 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.976 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.976 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.976 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.976 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.976 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.976 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.976 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.976 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.976 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.976 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.976 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.976 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.976 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.976 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.976 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XmlDocument.771pf23z5h.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mit9lp1cls-{0}-771pf23z5h-771pf23z5h.gz' -2026-01-28 14:11:19.976 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.976 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XmlDocument.771pf23z5h.wasm - 200 5430 application/wasm 1.582ms -2026-01-28 14:11:19.981 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XmlSerializer.h0uogtkh03.wasm - null null -2026-01-28 14:11:19.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.981 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.982 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.982 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.982 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.982 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.982 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.982 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.982 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.982 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.982 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.982 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.982 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.982 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.982 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.982 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.982 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.982 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.982 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.982 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.982 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.982 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.983 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XmlSerializer.h0uogtkh03.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6ubynsl46b-{0}-h0uogtkh03-h0uogtkh03.gz' -2026-01-28 14:11:19.983 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.983 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XmlSerializer.h0uogtkh03.wasm - 200 7478 application/wasm 1.6467ms -2026-01-28 14:11:19.987 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.95nan2l20b.wasm - null null -2026-01-28 14:11:19.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.987 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.987 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.987 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.987 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.988 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.988 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.988 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.988 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.988 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.988 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.988 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.988 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.988 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.988 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.988 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.988 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.988 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.988 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.988 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.988 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.988 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.989 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.95nan2l20b.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pcooe0k5kk-{0}-95nan2l20b-95nan2l20b.gz' -2026-01-28 14:11:19.989 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.989 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.95nan2l20b.wasm - 200 13110 application/wasm 1.7426ms -2026-01-28 14:11:19.994 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.au65xu8d95.wasm - null null -2026-01-28 14:11:19.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.994 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:19.995 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:19.995 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:19.995 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.995 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:19.995 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:19.995 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:19.995 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:19.995 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:19.995 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:19.995 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.995 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:19.995 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:19.995 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:19.995 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:19.995 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:19.995 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:19.995 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:19.995 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:19.995 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:19.995 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.996 +03:00 [INF] Sending file. Request path: '_framework/System.au65xu8d95.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\um28rmltyb-{0}-au65xu8d95-au65xu8d95.gz' -2026-01-28 14:11:19.996 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:19.996 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.au65xu8d95.wasm - 200 39739 application/wasm 1.6474ms -2026-01-28 14:11:20.000 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/WindowsBase.mi3hkxthj8.wasm - null null -2026-01-28 14:11:20.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.000 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.000 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.000 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.000 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.000 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.000 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.000 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.000 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.000 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.000 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.000 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.000 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.000 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.000 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.001 +03:00 [INF] Sending file. Request path: '_framework/WindowsBase.mi3hkxthj8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8syd5uq41h-{0}-mi3hkxthj8-mi3hkxthj8.gz' -2026-01-28 14:11:20.001 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.001 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/WindowsBase.mi3hkxthj8.wasm - 200 5942 application/wasm 1.3114ms -2026-01-28 14:11:20.006 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/mscorlib.uifnjyorgo.wasm - null null -2026-01-28 14:11:20.006 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.006 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.006 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.006 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.006 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.007 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.007 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.007 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.007 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.007 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.007 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.007 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.007 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.007 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.007 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.007 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.007 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.007 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.007 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.007 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.007 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.007 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.007 +03:00 [INF] Sending file. Request path: '_framework/mscorlib.uifnjyorgo.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xpihquz2r5-{0}-uifnjyorgo-uifnjyorgo.gz' -2026-01-28 14:11:20.007 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.007 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/mscorlib.uifnjyorgo.wasm - 200 49467 application/wasm 1.4581ms -2026-01-28 14:11:20.013 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/netstandard.qvqeanc7qr.wasm - null null -2026-01-28 14:11:20.013 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.013 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.013 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.013 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.013 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.014 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.014 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.014 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.014 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.014 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.014 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.014 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.014 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.014 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.014 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.014 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.014 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.014 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.014 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.014 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.014 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.014 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.015 +03:00 [INF] Sending file. Request path: '_framework/netstandard.qvqeanc7qr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ciukkw19kg-{0}-qvqeanc7qr-qvqeanc7qr.gz' -2026-01-28 14:11:20.015 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.015 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/netstandard.qvqeanc7qr.wasm - 200 90432 application/wasm 1.6952ms -2026-01-28 14:11:20.019 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Application.Contracts.uq8ziq260z.wasm - null null -2026-01-28 14:11:20.019 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.019 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.019 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.020 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.020 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.020 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.020 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.020 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.020 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.020 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.020 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.020 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.020 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.020 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.020 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.020 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.020 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.020 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.020 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.020 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.020 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.020 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.020 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Application.Contracts.uq8ziq260z.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0lm5ebgqof-{0}-uq8ziq260z-uq8ziq260z.gz' -2026-01-28 14:11:20.020 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.021 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Application.Contracts.uq8ziq260z.wasm - 200 8502 application/wasm 1.4633ms -2026-01-28 14:11:20.025 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Domain.Shared.a1r7gug13a.wasm - null null -2026-01-28 14:11:20.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.026 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.026 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.026 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.026 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.026 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.026 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.026 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.026 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.026 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.026 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.026 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.026 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.026 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.027 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.027 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Domain.Shared.a1r7gug13a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\qwx72m6fc1-{0}-a1r7gug13a-a1r7gug13a.gz' -2026-01-28 14:11:20.027 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.027 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Domain.Shared.a1r7gug13a.wasm - 200 23350 application/wasm 1.9076ms -2026-01-28 14:11:20.032 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.HttpApi.Client.3wngu4nxgr.wasm - null null -2026-01-28 14:11:20.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.032 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.032 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.032 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.032 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.032 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.032 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.032 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.032 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.033 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.033 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.033 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.HttpApi.Client.3wngu4nxgr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\scloparoeu-{0}-3wngu4nxgr-3wngu4nxgr.gz' -2026-01-28 14:11:20.033 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.033 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.HttpApi.Client.3wngu4nxgr.wasm - 200 7990 application/wasm 1.4373ms -2026-01-28 14:11:20.037 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.Application.Contracts.k8182bqsqt.wasm - null null -2026-01-28 14:11:20.038 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.038 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.038 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.038 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.038 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.038 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.038 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.038 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.038 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.038 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.038 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.038 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.038 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.038 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.039 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.039 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.039 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.039 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.039 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.039 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.039 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.039 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.040 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Account.Application.Contracts.k8182bqsqt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lj6k2ntok7-{0}-k8182bqsqt-k8182bqsqt.gz' -2026-01-28 14:11:20.040 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.040 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.Application.Contracts.k8182bqsqt.wasm - 200 182095 application/wasm 2.4971ms -2026-01-28 14:11:20.046 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.HttpApi.Client.tyjyiionpp.wasm - null null -2026-01-28 14:11:20.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.046 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.046 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.046 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.046 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.046 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.046 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.047 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.047 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.047 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.047 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.047 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.047 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.047 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.047 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.047 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Account.HttpApi.Client.tyjyiionpp.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\am5qy7si0d-{0}-tyjyiionpp-tyjyiionpp.gz' -2026-01-28 14:11:20.047 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.047 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.HttpApi.Client.tyjyiionpp.wasm - 200 36667 application/wasm 1.5354ms -2026-01-28 14:11:20.052 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.w8xtoi4w2w.wasm - null null -2026-01-28 14:11:20.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.052 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.052 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.052 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.052 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.052 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.052 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.052 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.052 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.052 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.052 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.052 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.052 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.052 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.053 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.053 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.w8xtoi4w2w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7rtjnlhdr6-{0}-w8xtoi4w2w-w8xtoi4w2w.gz' -2026-01-28 14:11:20.053 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.053 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.w8xtoi4w2w.wasm - 200 23350 application/wasm 1.3775ms -2026-01-28 14:11:20.058 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.tfobi4ljh9.wasm - null null -2026-01-28 14:11:20.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.059 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.059 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.059 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.059 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.059 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.059 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.059 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.059 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.059 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.059 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.060 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.tfobi4ljh9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dtw2jvq9ko-{0}-tfobi4ljh9-tfobi4ljh9.gz' -2026-01-28 14:11:20.060 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.060 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.tfobi4ljh9.wasm - 200 49979 application/wasm 1.6109ms -2026-01-28 14:11:20.065 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.v2vsbafrsu.wasm - null null -2026-01-28 14:11:20.065 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.065 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.065 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.065 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.065 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.065 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.065 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.065 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.065 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.065 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.065 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.065 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.065 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.065 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.066 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.066 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.066 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.066 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.066 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.066 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.066 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.066 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.066 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.v2vsbafrsu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\314s0gg35t-{0}-v2vsbafrsu-v2vsbafrsu.gz' -2026-01-28 14:11:20.066 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.066 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.v2vsbafrsu.wasm - 200 31030 application/wasm 1.4746ms -2026-01-28 14:11:20.071 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.g96eihnnrd.wasm - null null -2026-01-28 14:11:20.071 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.071 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.071 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.072 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.072 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.072 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.072 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.072 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.072 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.072 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.072 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.072 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.072 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.072 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.072 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.072 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.072 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.072 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.072 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.072 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.072 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.072 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.073 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.g96eihnnrd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xik7tubv32-{0}-g96eihnnrd-g96eihnnrd.gz' -2026-01-28 14:11:20.073 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.073 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.g96eihnnrd.wasm - 200 57659 application/wasm 2.2178ms -2026-01-28 14:11:20.079 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.ysnekz4aln.wasm - null null -2026-01-28 14:11:20.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.079 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.079 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.079 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.079 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.079 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.079 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.079 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.079 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.079 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.079 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.079 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.079 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.080 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.080 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.080 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.ysnekz4aln.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\29y4ttn7p6-{0}-ysnekz4aln-ysnekz4aln.gz' -2026-01-28 14:11:20.080 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.080 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.ysnekz4aln.wasm - 200 56635 application/wasm 1.5843ms -2026-01-28 14:11:20.084 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.9bxiazim84.wasm - null null -2026-01-28 14:11:20.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.084 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.085 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.085 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.085 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.085 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.085 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.085 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.085 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.085 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.085 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.085 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.085 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.085 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.085 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.085 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.085 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.085 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.085 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.085 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.085 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.085 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.085 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.9bxiazim84.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0h6kud88pg-{0}-9bxiazim84-9bxiazim84.gz' -2026-01-28 14:11:20.085 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.085 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.9bxiazim84.wasm - 200 6966 application/wasm 1.3789ms -2026-01-28 14:11:20.090 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.tlnm5w6vzv.wasm - null null -2026-01-28 14:11:20.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.091 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.091 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.091 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.091 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.091 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.091 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.091 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.091 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.091 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.091 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.091 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.091 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.091 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.091 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.092 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.tlnm5w6vzv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\79f9hg2kci-{0}-tlnm5w6vzv-tlnm5w6vzv.gz' -2026-01-28 14:11:20.092 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.092 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.tlnm5w6vzv.wasm - 200 29494 application/wasm 1.493ms -2026-01-28 14:11:20.097 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.vwbrjkm58i.wasm - null null -2026-01-28 14:11:20.097 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.097 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.097 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.097 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.097 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.097 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.097 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.097 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.097 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.097 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.097 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.097 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.097 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.097 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.097 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.097 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.097 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.097 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.097 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.097 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.097 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.098 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.098 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.vwbrjkm58i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v23sh1qt8y-{0}-vwbrjkm58i-vwbrjkm58i.gz' -2026-01-28 14:11:20.098 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.098 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.vwbrjkm58i.wasm - 200 9526 application/wasm 1.3336ms -2026-01-28 14:11:20.102 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.w3letp91lq.wasm - null null -2026-01-28 14:11:20.102 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.103 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.103 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.103 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.103 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.103 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.103 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.103 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.103 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.103 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.103 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.103 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.103 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.103 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.103 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.103 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.w3letp91lq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5xzpephnhm-{0}-w3letp91lq-w3letp91lq.gz' -2026-01-28 14:11:20.103 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.104 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.w3letp91lq.wasm - 200 9526 application/wasm 1.5351ms -2026-01-28 14:11:20.109 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.3jjfqno7lg.wasm - null null -2026-01-28 14:11:20.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.109 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.109 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.109 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.109 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.109 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.109 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.110 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.110 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.110 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.110 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.110 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.110 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.110 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.110 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.110 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.3jjfqno7lg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wywr70k095-{0}-3jjfqno7lg-3jjfqno7lg.gz' -2026-01-28 14:11:20.110 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.110 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.3jjfqno7lg.wasm - 200 53051 application/wasm 1.7852ms -2026-01-28 14:11:20.115 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Contracts.syr4dyw7am.wasm - null null -2026-01-28 14:11:20.115 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.116 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.116 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.116 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.116 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.116 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.116 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.116 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.116 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.116 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.116 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.116 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.Contracts.syr4dyw7am.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ch1l6yg9xg-{0}-syr4dyw7am-syr4dyw7am.gz' -2026-01-28 14:11:20.116 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.116 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Contracts.syr4dyw7am.wasm - 200 32054 application/wasm 1.357ms -2026-01-28 14:11:20.122 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.bu7idw18jp.wasm - null null -2026-01-28 14:11:20.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.122 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.122 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.123 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.123 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.123 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.123 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.123 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.123 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.123 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.123 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.123 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.bu7idw18jp.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6qc21ahd0h-{0}-bu7idw18jp-bu7idw18jp.gz' -2026-01-28 14:11:20.123 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.123 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.bu7idw18jp.wasm - 200 24886 application/wasm 1.6611ms -2026-01-28 14:11:20.128 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.Contracts.ao19uqfxk1.wasm - null null -2026-01-28 14:11:20.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.129 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.129 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.129 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.129 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.129 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.129 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.129 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.129 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.129 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.129 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.130 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Auditing.Contracts.ao19uqfxk1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gvrtk0uenw-{0}-ao19uqfxk1-ao19uqfxk1.gz' -2026-01-28 14:11:20.130 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.130 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.Contracts.ao19uqfxk1.wasm - 200 6454 application/wasm 1.358ms -2026-01-28 14:11:20.134 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.96yxua01gc.wasm - null null -2026-01-28 14:11:20.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.135 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.135 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.135 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.135 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.135 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.135 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.135 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.135 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.135 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.135 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.135 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.135 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.135 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.135 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.136 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Auditing.96yxua01gc.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0bpurwxf4x-{0}-96yxua01gc-96yxua01gc.gz' -2026-01-28 14:11:20.136 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.136 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.96yxua01gc.wasm - 200 51003 application/wasm 1.3483ms -2026-01-28 14:11:20.161 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AuditLogging.Domain.Shared.dftqdjnknx.wasm - null null -2026-01-28 14:11:20.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.162 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.162 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.162 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.162 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.162 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.162 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.162 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.162 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.162 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.162 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.162 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.162 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.162 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.162 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.163 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AuditLogging.Domain.Shared.dftqdjnknx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\een9hz6ik5-{0}-dftqdjnknx-dftqdjnknx.gz' -2026-01-28 14:11:20.163 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.163 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AuditLogging.Domain.Shared.dftqdjnknx.wasm - 200 158026 application/wasm 2.4552ms -2026-01-28 14:11:20.168 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.Abstractions.afyzjlgpmi.wasm - null null -2026-01-28 14:11:20.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.168 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.168 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.168 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.168 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.168 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.168 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.168 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.168 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.168 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.169 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.169 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Authorization.Abstractions.afyzjlgpmi.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mzg3hwxb9z-{0}-afyzjlgpmi-afyzjlgpmi.gz' -2026-01-28 14:11:20.169 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.169 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.Abstractions.afyzjlgpmi.wasm - 200 36155 application/wasm 1.4693ms -2026-01-28 14:11:20.175 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.af69ln5ic4.wasm - null null -2026-01-28 14:11:20.175 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.176 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.176 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.176 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.176 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.176 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.176 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.176 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.176 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.176 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.176 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.176 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.176 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.176 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.176 +03:00 [INF] Application is shutting down... -2026-01-28 14:11:20.176 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.176 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.176 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.176 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.176 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.176 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.176 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.177 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.178 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Authorization.af69ln5ic4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kmfgdovl74-{0}-af69ln5ic4-af69ln5ic4.gz' -2026-01-28 14:11:20.178 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.178 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.af69ln5ic4.wasm - 200 134986 application/wasm 2.9973ms -2026-01-28 14:11:20.183 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.757dvxj4ke.wasm - null null -2026-01-28 14:11:20.184 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.184 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.184 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.184 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.184 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.184 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.184 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.184 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.184 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.184 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.184 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.184 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.184 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.184 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.184 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.184 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.184 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.184 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.184 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.184 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.184 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.184 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.185 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Autofac.757dvxj4ke.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dnh2928fpn-{0}-757dvxj4ke-757dvxj4ke.gz' -2026-01-28 14:11:20.185 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.185 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.757dvxj4ke.wasm - 200 20790 application/wasm 1.5596ms -2026-01-28 14:11:20.190 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.WebAssembly.67r46affwj.wasm - null null -2026-01-28 14:11:20.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.190 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.190 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.191 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.191 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.191 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.191 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.191 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.191 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.191 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.191 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.191 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Autofac.WebAssembly.67r46affwj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fy88n7o3re-{0}-67r46affwj-67r46affwj.gz' -2026-01-28 14:11:20.191 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.191 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.WebAssembly.67r46affwj.wasm - 200 6454 application/wasm 1.672ms -2026-01-28 14:11:20.196 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundJobs.Domain.Shared.1ndljj9fe1.wasm - null null -2026-01-28 14:11:20.196 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.197 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.197 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.197 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.197 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.197 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.197 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.197 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.197 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.197 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.197 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.197 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.197 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.197 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.197 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.197 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BackgroundJobs.Domain.Shared.1ndljj9fe1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\it8pbr6hs7-{0}-1ndljj9fe1-1ndljj9fe1.gz' -2026-01-28 14:11:20.197 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.197 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundJobs.Domain.Shared.1ndljj9fe1.wasm - 200 5430 application/wasm 1.3498ms -2026-01-28 14:11:20.202 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundWorkers.2p6fuqijf3.wasm - null null -2026-01-28 14:11:20.203 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.203 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.203 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.203 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.203 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.203 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.203 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.203 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.203 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.203 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.203 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.203 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.203 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.203 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.203 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.203 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.203 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.203 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.203 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.203 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.203 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.203 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.204 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BackgroundWorkers.2p6fuqijf3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tnta0aqntp-{0}-2p6fuqijf3-2p6fuqijf3.gz' -2026-01-28 14:11:20.204 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.204 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundWorkers.2p6fuqijf3.wasm - 200 25398 application/wasm 1.4984ms -2026-01-28 14:11:20.209 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Caching.815cqd6cda.wasm - null null -2026-01-28 14:11:20.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.210 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.210 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.210 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.210 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.210 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.210 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.211 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.211 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.211 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.211 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.211 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.211 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.211 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.211 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.212 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Caching.815cqd6cda.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5pr3wxuvo5-{0}-815cqd6cda-815cqd6cda.gz' -2026-01-28 14:11:20.212 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.212 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Caching.815cqd6cda.wasm - 200 85824 application/wasm 2.4145ms -2026-01-28 14:11:20.216 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Castle.Core.h40m7fuufn.wasm - null null -2026-01-28 14:11:20.216 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.216 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.217 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.217 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.217 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.217 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.217 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.217 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.217 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.217 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.217 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.217 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.217 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.217 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.217 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.217 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.217 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.217 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.217 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.217 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.217 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.217 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.217 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Castle.Core.h40m7fuufn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\f5a40y0td5-{0}-h40m7fuufn-h40m7fuufn.gz' -2026-01-28 14:11:20.217 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.217 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Castle.Core.h40m7fuufn.wasm - 200 11574 application/wasm 1.5666ms -2026-01-28 14:11:20.223 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Core.4xaaeuhx7w.wasm - null null -2026-01-28 14:11:20.223 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.223 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.223 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.223 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.223 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.223 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.223 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.223 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.223 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.223 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.223 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.223 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.223 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.223 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.223 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.223 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.223 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.224 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.224 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.224 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.224 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.224 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.225 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Core.4xaaeuhx7w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\klnckblff1-{0}-4xaaeuhx7w-4xaaeuhx7w.gz' -2026-01-28 14:11:20.225 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.225 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Core.4xaaeuhx7w.wasm - 200 311139 application/wasm 2.5899ms -2026-01-28 14:11:20.231 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Data.xk5nl74k60.wasm - null null -2026-01-28 14:11:20.232 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.232 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.232 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.232 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.232 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.232 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.232 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.232 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.232 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.232 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.232 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.232 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.232 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.232 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.232 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.232 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.232 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.232 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.232 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.232 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.232 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.232 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.233 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Data.xk5nl74k60.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\g2etzqh2n8-{0}-xk5nl74k60-xk5nl74k60.gz' -2026-01-28 14:11:20.233 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.233 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Data.xk5nl74k60.wasm - 200 23862 application/wasm 2.0636ms -2026-01-28 14:11:20.238 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Ddd.Application.Contracts.1kpejy4fde.wasm - null null -2026-01-28 14:11:20.238 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.238 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.238 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.238 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.238 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.239 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.239 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.239 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.239 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.239 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.239 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.239 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.239 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.239 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.239 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.239 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.239 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.239 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.239 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.239 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.239 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.239 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.240 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Ddd.Application.Contracts.1kpejy4fde.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bq3ub7csyu-{0}-1kpejy4fde-1kpejy4fde.gz' -2026-01-28 14:11:20.240 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.240 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Ddd.Application.Contracts.1kpejy4fde.wasm - 200 37691 application/wasm 1.9699ms -2026-01-28 14:11:20.244 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.DistributedLocking.Abstractions.q8g86pl4ti.wasm - null null -2026-01-28 14:11:20.245 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.245 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.245 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.245 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.245 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.245 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.245 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.245 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.245 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.245 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.245 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.245 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.245 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.245 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.245 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.245 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.245 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.245 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.245 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.245 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.245 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.245 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.246 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.DistributedLocking.Abstractions.q8g86pl4ti.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\qe2ghijxui-{0}-q8g86pl4ti-q8g86pl4ti.gz' -2026-01-28 14:11:20.246 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.246 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.DistributedLocking.Abstractions.q8g86pl4ti.wasm - 200 7990 application/wasm 1.813ms -2026-01-28 14:11:20.252 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.Abstractions.lbrqgul2g3.wasm - null null -2026-01-28 14:11:20.253 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.253 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.253 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.253 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.253 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.253 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.253 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.253 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.253 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.253 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.253 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.253 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.253 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.253 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.253 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.253 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.253 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.253 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.253 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.253 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.253 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.253 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.254 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.EventBus.Abstractions.lbrqgul2g3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\30q391t77y-{0}-lbrqgul2g3-lbrqgul2g3.gz' -2026-01-28 14:11:20.254 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.254 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.Abstractions.lbrqgul2g3.wasm - 200 20278 application/wasm 1.4265ms -2026-01-28 14:11:20.259 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.4naok44xvm.wasm - null null -2026-01-28 14:11:20.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.259 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.259 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.259 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.259 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.259 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.260 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.260 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.260 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.260 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.260 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.260 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.260 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.260 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.260 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.260 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.260 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.260 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.260 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.260 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.261 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.EventBus.4naok44xvm.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xdn8i8epqw-{0}-4naok44xvm-4naok44xvm.gz' -2026-01-28 14:11:20.261 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.261 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.4naok44xvm.wasm - 200 85824 application/wasm 2.2181ms -2026-01-28 14:11:20.266 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ExceptionHandling.ecbhbsp3we.wasm - null null -2026-01-28 14:11:20.266 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.266 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.266 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.266 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.266 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.266 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.266 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.266 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.266 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.266 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.266 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.266 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.266 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.266 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.267 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.267 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.267 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.267 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.267 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.267 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.267 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.267 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.267 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ExceptionHandling.ecbhbsp3we.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\86e1bzf02o-{0}-ecbhbsp3we-ecbhbsp3we.gz' -2026-01-28 14:11:20.267 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.267 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ExceptionHandling.ecbhbsp3we.wasm - 200 79680 application/wasm 1.597ms -2026-01-28 14:11:20.273 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Application.Contracts.40s1e77e5m.wasm - null null -2026-01-28 14:11:20.274 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.274 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.274 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.274 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.274 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.274 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.274 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.274 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.274 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.274 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.274 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.274 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.274 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.274 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.274 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.274 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.274 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.274 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.274 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.274 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.274 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.274 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.275 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Application.Contracts.40s1e77e5m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1k1yaajq7n-{0}-40s1e77e5m-40s1e77e5m.gz' -2026-01-28 14:11:20.275 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.275 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Application.Contracts.40s1e77e5m.wasm - 200 11574 application/wasm 1.5286ms -2026-01-28 14:11:20.281 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.nj1v9irvz8.wasm - null null -2026-01-28 14:11:20.281 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.281 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.281 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.281 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.281 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.281 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.281 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.281 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.281 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.281 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.281 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.281 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.281 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.281 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.282 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.282 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.282 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.282 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.282 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.282 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.282 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.282 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.282 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.nj1v9irvz8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\247hfc7v1l-{0}-nj1v9irvz8-nj1v9irvz8.gz' -2026-01-28 14:11:20.282 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.282 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.nj1v9irvz8.wasm - 200 41275 application/wasm 1.5297ms -2026-01-28 14:11:20.287 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Domain.Shared.b0b5pjfr2i.wasm - null null -2026-01-28 14:11:20.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.288 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.288 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.288 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.288 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.288 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.288 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.289 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.289 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.289 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.289 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.289 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.289 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.289 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.289 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.289 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Domain.Shared.b0b5pjfr2i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nv73dihqbu-{0}-b0b5pjfr2i-b0b5pjfr2i.gz' -2026-01-28 14:11:20.289 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.289 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Domain.Shared.b0b5pjfr2i.wasm - 200 47419 application/wasm 2.0505ms -2026-01-28 14:11:20.295 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.HttpApi.Client.uclbvotalx.wasm - null null -2026-01-28 14:11:20.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.296 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.296 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.296 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.296 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.296 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.296 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.296 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.296 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.296 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.296 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.296 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.296 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.296 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.296 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.297 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.HttpApi.Client.uclbvotalx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5kgd4qlij6-{0}-uclbvotalx-uclbvotalx.gz' -2026-01-28 14:11:20.297 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.297 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.HttpApi.Client.uclbvotalx.wasm - 200 22838 application/wasm 1.8655ms -2026-01-28 14:11:20.302 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Features.wy0y61456s.wasm - null null -2026-01-28 14:11:20.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.303 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.303 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.303 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.303 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.303 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.303 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.303 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.303 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.303 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.303 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.303 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.303 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.303 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.303 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.304 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Features.wy0y61456s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c4f7xcddbd-{0}-wy0y61456s-wy0y61456s.gz' -2026-01-28 14:11:20.304 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.304 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Features.wy0y61456s.wasm - 200 71488 application/wasm 1.9962ms -2026-01-28 14:11:20.323 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.GlobalFeatures.hoqe61zskr.wasm - null null -2026-01-28 14:11:20.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.324 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.324 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.324 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.324 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.324 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.324 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.324 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.324 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.324 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.324 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.324 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.324 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.324 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.324 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.325 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.GlobalFeatures.hoqe61zskr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lgshqof3zp-{0}-hoqe61zskr-hoqe61zskr.gz' -2026-01-28 14:11:20.325 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.325 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.GlobalFeatures.hoqe61zskr.wasm - 200 26422 application/wasm 1.9161ms -2026-01-28 14:11:20.330 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Guids.liit7170e2.wasm - null null -2026-01-28 14:11:20.330 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.330 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.330 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.330 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.330 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.330 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.330 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.330 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.330 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.330 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.330 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.330 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.330 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.330 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.330 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.330 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.330 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.330 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.330 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.330 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.330 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.331 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.331 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Guids.liit7170e2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fakjzvu1ye-{0}-liit7170e2-liit7170e2.gz' -2026-01-28 14:11:20.331 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.331 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Guids.liit7170e2.wasm - 200 5942 application/wasm 1.3638ms -2026-01-28 14:11:20.335 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Abstractions.dwudu7bg2j.wasm - null null -2026-01-28 14:11:20.335 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.335 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.335 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.335 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.335 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.335 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.335 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.335 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.335 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.335 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.335 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.335 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.335 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.335 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.335 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.335 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.336 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.336 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.336 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.336 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.336 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.336 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.336 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Abstractions.dwudu7bg2j.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\orvt5319bs-{0}-dwudu7bg2j-dwudu7bg2j.gz' -2026-01-28 14:11:20.336 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.336 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Abstractions.dwudu7bg2j.wasm - 200 5942 application/wasm 1.4264ms -2026-01-28 14:11:20.341 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.gvl0zhfcrh.wasm - null null -2026-01-28 14:11:20.341 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.341 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.341 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.341 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.341 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.342 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.342 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.342 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.342 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.342 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.342 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.342 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.342 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.342 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.342 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.342 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.342 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.342 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.342 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.342 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.342 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.342 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.343 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.gvl0zhfcrh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\esehx2q8xm-{0}-gvl0zhfcrh-gvl0zhfcrh.gz' -2026-01-28 14:11:20.343 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.343 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.gvl0zhfcrh.wasm - 200 96576 application/wasm 1.9122ms -2026-01-28 14:11:20.348 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.lpg5d6esbr.wasm - null null -2026-01-28 14:11:20.348 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.348 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.348 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.348 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.348 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.348 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.348 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.348 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.348 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.348 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.348 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.348 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.348 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.348 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.348 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.348 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.348 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.348 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.348 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.348 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.348 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.348 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.349 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.IdentityModel.lpg5d6esbr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\69zsrpzmke-{0}-lpg5d6esbr-lpg5d6esbr.gz' -2026-01-28 14:11:20.349 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.349 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.lpg5d6esbr.wasm - 200 7990 application/wasm 1.3991ms -2026-01-28 14:11:20.353 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.rizl9dmjps.wasm - null null -2026-01-28 14:11:20.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.354 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.354 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.354 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.354 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.354 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.354 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.354 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.354 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.355 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.355 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.355 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.355 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.355 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.355 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.355 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.rizl9dmjps.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\985eczt6cq-{0}-rizl9dmjps-rizl9dmjps.gz' -2026-01-28 14:11:20.355 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.356 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.rizl9dmjps.wasm - 200 10550 application/wasm 2.1161ms -2026-01-28 14:11:20.361 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.wui0lrbb2n.wasm - null null -2026-01-28 14:11:20.361 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.362 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.362 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.362 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.362 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.362 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.362 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.362 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.362 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.362 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.362 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.362 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.362 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.362 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.362 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.363 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.wui0lrbb2n.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\blqvtier8g-{0}-wui0lrbb2n-wui0lrbb2n.gz' -2026-01-28 14:11:20.363 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.363 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.wui0lrbb2n.wasm - 200 54587 application/wasm 1.5503ms -2026-01-28 14:11:20.370 +03:00 [DBG] Stopped background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker -2026-01-28 14:11:20.370 +03:00 [DBG] Stopped background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2026-01-28 14:11:20.378 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Application.Contracts.085birxe2b.wasm - null null -2026-01-28 14:11:20.378 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.378 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:11:20.379 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:11:20.379 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:11:20.379 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.379 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:11:20.379 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:11:20.379 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:11:20.379 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:11:20.379 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:11:20.379 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:11:20.379 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.379 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:11:20.379 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:11:20.379 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:11:20.379 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:11:20.379 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:11:20.379 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:11:20.379 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:11:20.379 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:11:20.379 +03:00 [DBG] No tenant resolved. -2026-01-28 14:11:20.379 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.380 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Application.Contracts.085birxe2b.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ru0e3g14jl-{0}-085birxe2b-085birxe2b.gz' -2026-01-28 14:11:20.380 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:11:20.380 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Application.Contracts.085birxe2b.wasm - 200 21302 application/wasm 2.2135ms -2026-01-28 14:12:07.984 +03:00 [INF] Starting web host. -2026-01-28 14:12:09.876 +03:00 [DBG] Loaded ABP modules: -2026-01-28 14:12:09.877 +03:00 [DBG] - MyCompanyName.MyProjectName.Blazor.WebApp.MyProjectNameBlazorModule -2026-01-28 14:12:09.877 +03:00 [DBG] - MyCompanyName.MyProjectName.MyProjectNameApplicationModule -2026-01-28 14:12:09.877 +03:00 [DBG] - MyCompanyName.MyProjectName.MyProjectNameDomainModule -2026-01-28 14:12:09.877 +03:00 [DBG] - MyCompanyName.MyProjectName.MyProjectNameDomainSharedModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Validation.AbpValidationModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Localization.AbpLocalizationModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Settings.AbpSettingsModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Security.AbpSecurityModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Data.AbpDataModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Uow.AbpUnitOfWorkModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Threading.AbpThreadingModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Json.AbpJsonAbstractionsModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Timing.AbpTimingModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Identity.AbpIdentityDomainSharedModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Users.AbpUsersDomainSharedModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Features.AbpFeaturesModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.OpenIddict.AbpOpenIddictDomainSharedModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Auditing.AbpAuditingModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Json.AbpJsonModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Auditing.AbpAuditingContractsModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Domain.AbpDddDomainModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.EventBus.AbpEventBusModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Guids.AbpGuidsModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Specifications.AbpSpecificationsModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Caching.AbpCachingModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Serialization.AbpSerializationModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Domain.AbpDddDomainSharedModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Mapperly.AbpMapperlyModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Identity.AbpIdentityDomainModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Users.AbpUsersDomainModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Users.AbpUsersAbstractionModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.OpenIddict.AbpOpenIddictDomainModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.PermissionManagement.OpenIddict.AbpPermissionManagementDomainOpenIddictModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Authorization.AbpAuthorizationModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Emailing.AbpEmailingModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.TextTemplating.AbpTextTemplatingModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Account.AbpAccountApplicationModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Account.AbpAccountApplicationContractsModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Application.AbpDddApplicationContractsModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Identity.AbpIdentityApplicationModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Application.AbpDddApplicationModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Http.AbpHttpAbstractionsModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.UI.AbpUiModule -2026-01-28 14:12:09.877 +03:00 [DBG] - MyCompanyName.MyProjectName.MyProjectNameApplicationContractsModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule -2026-01-28 14:12:09.877 +03:00 [DBG] - MyCompanyName.MyProjectName.EntityFrameworkCore.MyProjectNameEntityFrameworkCoreModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.OpenIddict.EntityFrameworkCore.AbpOpenIddictEntityFrameworkCoreModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule -2026-01-28 14:12:09.877 +03:00 [DBG] - MyCompanyName.MyProjectName.MyProjectNameHttpApiModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Account.AbpAccountHttpApiModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Identity.AbpIdentityHttpApiModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Http.AbpHttpModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Minify.AbpMinifyModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.AspNetCore.AbpAspNetCoreAbstractionsModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Autofac.AbpAutofacModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Castle.AbpCastleCoreModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Account.Web.AbpAccountWebOpenIddictModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Account.Web.AbpAccountWebModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.AspNetCore.Bundling.AbpAspNetCoreBundlingModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.OpenIddict.AbpOpenIddictAspNetCoreModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.Server.MudBlazorBasicTheme.AbpAspNetCoreComponentsServerMudBlazorBasicThemeModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.AbpAspNetCoreComponentsWebMudBlazorBasicThemeModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.AbpAspNetCoreComponentsWebThemingMudBlazorModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.MudBlazorUI.AbpMudBlazorUIModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.Web.AbpAspNetCoreComponentsWebModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.AbpAspNetCoreComponentsModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.Server.Theming.MudBlazor.AbpAspNetCoreComponentsServerThemingMudBlazorModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.Server.AbpAspNetCoreComponentsServerModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Http.Client.AbpHttpClientModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.RemoteServices.AbpRemoteServicesModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Theme.LeptonXLite.AbpAspNetCoreMvcUiLeptonXLiteThemeModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Identity.Blazor.MudBlazor.Server.AbpIdentityBlazorMudBlazorServerModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.Identity.Blazor.MudBlazor.AbpIdentityBlazorMudBlazorModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.PermissionManagement.Blazor.MudBlazor.AbpPermissionManagementBlazorMudBlazorModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.PermissionManagement.Blazor.MudBlazor.Server.AbpPermissionManagementBlazorMudBlazorServerModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.TenantManagement.Blazor.MudBlazor.Server.AbpTenantManagementBlazorMudBlazorServerModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.TenantManagement.Blazor.MudBlazor.AbpTenantManagementBlazorMudBlazorModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.FeatureManagement.Blazor.MudBlazor.AbpFeatureManagementBlazorMudBlazorModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.SettingManagement.Blazor.MudBlazor.AbpSettingManagementBlazorMudBlazorModule -2026-01-28 14:12:09.877 +03:00 [DBG] - Volo.Abp.SettingManagement.Blazor.MudBlazor.Server.AbpSettingManagementBlazorMudBlazorServerModule -2026-01-28 14:12:09.953 +03:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker -2026-01-28 14:12:10.043 +03:00 [DBG] Started background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2026-01-28 14:12:10.852 +03:00 [INF] User profile is available. Using 'C:\Users\ismai\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2026-01-28 14:12:11.259 +03:00 [INF] Initialized all ABP modules. -2026-01-28 14:12:11.573 +03:00 [INF] Now listening on: https://localhost:44308 -2026-01-28 14:12:11.574 +03:00 [INF] Application started. Press Ctrl+C to shut down. -2026-01-28 14:12:11.574 +03:00 [INF] Hosting environment: Development -2026-01-28 14:12:11.574 +03:00 [INF] Content root path: D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp -2026-01-28 14:12:11.791 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Abstractions.0mrf0cvj5h.wasm - null null -2026-01-28 14:12:13.219 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:12:13.239 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:12:13.243 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:12:13.250 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:12:13.252 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:12:13.284 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:12:13.289 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:12:13.290 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:12:13.292 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:12:13.294 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:12:13.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:12:13.297 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:12:13.297 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:12:13.298 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:12:13.392 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:12:13.392 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:12:13.394 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:12:13.395 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:12:13.396 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:12:13.397 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:12:13.397 +03:00 [DBG] No tenant resolved. -2026-01-28 14:12:13.465 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:12:13.483 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Users.Abstractions.0mrf0cvj5h.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jyt2zu3ttz-{0}-0mrf0cvj5h-0mrf0cvj5h.gz' -2026-01-28 14:12:13.485 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:12:13.493 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Abstractions.0mrf0cvj5h.wasm - 200 11062 application/wasm 1703.8121ms -2026-01-28 14:12:13.502 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Domain.Shared.h4yyltz4ll.wasm - null null -2026-01-28 14:12:13.669 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:12:13.670 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:12:13.670 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:12:13.670 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:12:13.670 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:12:13.672 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:12:13.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:12:13.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:12:13.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:12:13.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:12:13.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:12:13.674 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:12:13.674 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:12:13.674 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:12:13.675 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:12:13.675 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:12:13.675 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:12:13.675 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:12:13.676 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:12:13.676 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:12:13.676 +03:00 [DBG] No tenant resolved. -2026-01-28 14:12:13.677 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:12:13.679 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Users.Domain.Shared.h4yyltz4ll.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8bcoe6ftg7-{0}-h4yyltz4ll-h4yyltz4ll.gz' -2026-01-28 14:12:13.679 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:12:13.679 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Domain.Shared.h4yyltz4ll.wasm - 200 4918 application/wasm 177.5241ms -2026-01-28 14:12:13.685 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.Abstractions.924wndkz1f.wasm - null null -2026-01-28 14:12:13.686 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:12:13.686 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:12:13.686 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:12:13.686 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:12:13.686 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:12:13.687 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:12:13.687 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:12:13.687 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:12:13.687 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:12:13.687 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:12:13.687 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:12:13.687 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:12:13.687 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:12:13.687 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:12:13.688 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:12:13.688 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:12:13.688 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:12:13.688 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:12:13.688 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:12:13.688 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:12:13.688 +03:00 [DBG] No tenant resolved. -2026-01-28 14:12:13.688 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:12:13.689 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Validation.Abstractions.924wndkz1f.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gd6ojlvfcf-{0}-924wndkz1f-924wndkz1f.gz' -2026-01-28 14:12:13.689 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:12:13.690 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.Abstractions.924wndkz1f.wasm - 200 6966 application/wasm 4.8866ms -2026-01-28 14:12:13.695 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.0d8qfgigij.wasm - null null -2026-01-28 14:12:13.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:12:13.697 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:12:13.697 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:12:13.697 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:12:13.697 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:12:13.698 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:12:13.698 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:12:13.698 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:12:13.698 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:12:13.698 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:12:13.698 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:12:13.698 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:12:13.698 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:12:13.698 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:12:13.699 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:12:13.699 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:12:13.699 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:12:13.699 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:12:13.699 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:12:13.699 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:12:13.699 +03:00 [DBG] No tenant resolved. -2026-01-28 14:12:13.699 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:12:13.703 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Validation.0d8qfgigij.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2i0haqeq52-{0}-0d8qfgigij-0d8qfgigij.gz' -2026-01-28 14:12:13.703 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:12:13.704 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.0d8qfgigij.wasm - 200 133962 application/wasm 8.1538ms -2026-01-28 14:12:13.709 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.VirtualFileSystem.gxdtmkr6a5.wasm - null null -2026-01-28 14:12:13.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:12:13.711 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:12:13.711 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:12:13.711 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:12:13.711 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:12:13.711 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:12:13.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:12:13.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:12:13.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:12:13.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:12:13.712 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:12:13.712 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:12:13.712 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:12:13.712 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:12:13.712 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:12:13.712 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:12:13.712 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:12:13.712 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:12:13.712 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:12:13.712 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:12:13.712 +03:00 [DBG] No tenant resolved. -2026-01-28 14:12:13.713 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:12:13.714 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.VirtualFileSystem.gxdtmkr6a5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\oikj36ifzq-{0}-gxdtmkr6a5-gxdtmkr6a5.gz' -2026-01-28 14:12:13.714 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:12:13.714 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.VirtualFileSystem.gxdtmkr6a5.wasm - 200 21302 application/wasm 4.896ms -2026-01-28 14:12:13.721 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.ohwxgh6gpx.wasm - null null -2026-01-28 14:12:13.722 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:12:13.722 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:12:13.722 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:12:13.722 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:12:13.722 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:12:13.723 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:12:13.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:12:13.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:12:13.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:12:13.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:12:13.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:12:13.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:12:13.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:12:13.723 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:12:13.724 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:12:13.724 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:12:13.724 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:12:13.724 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:12:13.724 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:12:13.724 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:12:13.724 +03:00 [DBG] No tenant resolved. -2026-01-28 14:12:13.724 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:12:13.725 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.ohwxgh6gpx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b9vq30g1vb-{0}-ohwxgh6gpx-ohwxgh6gpx.gz' -2026-01-28 14:12:13.725 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:12:13.725 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.ohwxgh6gpx.wasm - 200 38715 application/wasm 4.9503ms -2026-01-28 14:12:13.732 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/icudt.oh1zvcfom8.dat - null null -2026-01-28 14:12:13.733 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:12:13.733 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:12:13.733 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:12:13.733 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:12:13.733 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:12:13.734 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:12:13.734 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:12:13.734 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:12:13.734 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:12:13.734 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:12:13.734 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:12:13.734 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:12:13.734 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:12:13.734 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:12:13.735 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:12:13.735 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:12:13.735 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:12:13.735 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:12:13.735 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:12:13.735 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:12:13.735 +03:00 [DBG] No tenant resolved. -2026-01-28 14:12:13.735 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:12:13.749 +03:00 [INF] Sending file. Request path: '_framework/icudt.oh1zvcfom8.dat'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\augfne4vvr-{0}-oh1zvcfom8-oh1zvcfom8.gz' -2026-01-28 14:12:13.749 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:12:13.749 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/icudt.oh1zvcfom8.dat - 200 492472 application/octet-stream 16.9051ms -2026-01-28 14:12:13.758 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/appsettings.Development.json - null null -2026-01-28 14:12:13.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:12:13.759 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:12:13.759 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:12:13.759 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:12:13.759 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:12:13.760 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:12:13.760 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:12:13.760 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:12:13.760 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:12:13.760 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:12:13.760 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:12:13.760 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:12:13.760 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:12:13.760 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:12:13.761 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:12:13.761 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:12:13.761 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:12:13.761 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:12:13.761 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:12:13.761 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:12:13.761 +03:00 [DBG] No tenant resolved. -2026-01-28 14:12:13.761 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:12:13.762 +03:00 [INF] Sending file. Request path: 'appsettings.Development.json'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5yh5mvb6m0-{0}-qygrwjo5h3-qygrwjo5h3.gz' -2026-01-28 14:12:13.762 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:12:13.762 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/appsettings.Development.json - 200 41 application/json 4.7363ms -2026-01-28 14:12:13.768 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/appsettings.json - null null -2026-01-28 14:12:13.769 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:12:13.769 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:12:13.769 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:12:13.770 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:12:13.770 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:12:13.770 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:12:13.770 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:12:13.770 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:12:13.770 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:12:13.770 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:12:13.770 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:12:13.770 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:12:13.770 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:12:13.770 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:12:13.771 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:12:13.771 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:12:13.771 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:12:13.771 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:12:13.771 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:12:13.771 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:12:13.771 +03:00 [DBG] No tenant resolved. -2026-01-28 14:12:13.771 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:12:13.772 +03:00 [INF] Sending file. Request path: 'appsettings.json'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\apuwzph3tz-{0}-b8hf2s338i-b8hf2s338i.gz' -2026-01-28 14:12:13.772 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:12:13.772 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/appsettings.json - 200 136 application/json 4.4471ms -2026-01-28 14:14:09.797 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/ - null null -2026-01-28 14:14:09.799 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:09.799 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:09.799 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:09.799 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:09.799 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:09.799 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:09.799 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:09.799 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:09.799 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:09.799 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:09.799 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:09.799 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:09.799 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:09.799 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:09.800 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:09.800 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:09.800 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:09.800 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:09.800 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:09.800 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:09.800 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:09.800 +03:00 [INF] Executing endpoint '/ (/)' -2026-01-28 14:14:10.132 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2026-01-28 14:14:10.134 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2026-01-28 14:14:10.211 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2026-01-28 14:14:10.284 +03:00 [INF] Executed endpoint '/ (/)' -2026-01-28 14:14:10.302 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/ - 200 null text/html; charset=utf-8 504.5147ms -2026-01-28 14:14:10.321 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/MudBlazor/MudBlazor.min.css - null null -2026-01-28 14:14:10.321 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2026-01-28 14:14:10.323 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.323 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.323 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.323 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.323 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:10.323 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.MudBlazorUI/volo.abp.mudblazorui.css - null null -2026-01-28 14:14:10.323 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:10.323 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.323 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:10.323 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:10.323 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.324 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:10.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:10.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:10.324 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:10.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:10.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:10.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.324 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:10.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:10.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:10.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:10.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:10.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.324 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:10.324 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:10.324 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:10.324 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:10.324 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:10.324 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:10.324 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:10.324 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:10.324 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:10.325 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.325 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:10.325 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:10.325 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:10.325 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:10.325 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:10.325 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:10.325 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.325 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/themes/basic/main.css - null null -2026-01-28 14:14:10.326 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/blazor-global-styles.css - null null -2026-01-28 14:14:10.326 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\obj\Debug\net10.0\compressed\p1g0cu86en-{0}-c25c931rn9-c25c931rn9.gz' -2026-01-28 14:14:10.326 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.326 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css - null null -2026-01-28 14:14:10.326 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1375 text/css 4.589ms -2026-01-28 14:14:10.326 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.327 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.327 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.327 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:10.327 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:10.327 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:10.327 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:10.327 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.327 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.327 +03:00 [INF] Sending file. Request path: '_content/MudBlazor/MudBlazor.min.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\tzxjg6is5z-{0}-du7z45fy1o-du7z45fy1o.gz' -2026-01-28 14:14:10.327 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.327 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/MudBlazor/MudBlazor.min.css - 200 64451 text/css 5.9352ms -2026-01-28 14:14:10.327 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:10.327 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:10.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:10.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:10.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:10.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:10.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:10.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:10.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:10.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:10.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.327 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:10.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.328 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:10.328 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.328 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:10.328 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:10.328 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.328 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:10.328 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:10.328 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:10.328 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:10.328 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:10.328 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:10.328 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:10.328 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:10.328 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.328 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.328 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:10.328 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:10.328 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:10.328 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:10.328 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:10.328 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:10.328 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:10.328 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:10.328 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.328 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.328 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.328 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.328 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:10.328 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:10.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:10.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:10.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:10.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:10.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:10.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:10.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:10.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:10.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.329 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:10.329 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:10.329 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/bg-01.png - null null -2026-01-28 14:14:10.329 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:10.329 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:10.329 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/MudBlazor/MudBlazor.min.js - null null -2026-01-28 14:14:10.329 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:10.329 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:10.329 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:10.329 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:10.329 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:10.329 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:10.329 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:10.329 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:10.329 +03:00 [INF] Sending file. Request path: 'MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s4s6fpr8ex-{0}-oa8u55zyfs-oa8u55zyfs.gz' -2026-01-28 14:14:10.329 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:10.329 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:10.329 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:10.329 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:10.329 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.329 +03:00 [INF] Sending file. Request path: 'blazor-global-styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\smexgl05zq-{0}-y3n6denrdr-y3n6denrdr.gz' -2026-01-28 14:14:10.329 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.329 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/img-support.png - null null -2026-01-28 14:14:10.329 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css - 200 317 text/css 3.3837ms -2026-01-28 14:14:10.329 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/blazor-global-styles.css - 200 641 text/css 3.6516ms -2026-01-28 14:14:10.329 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.329 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/img-blog.png - null null -2026-01-28 14:14:10.329 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.330 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2026-01-28 14:14:10.330 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.330 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.330 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.330 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2026-01-28 14:14:10.330 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.330 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.330 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:10.330 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:10.330 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.330 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.330 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:10.330 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:10.330 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/blazor.web.js - null null -2026-01-28 14:14:10.330 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.330 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.MudBlazorUI/volo.abp.mudblazorui.css'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.MudBlazorUI\obj\Debug\net10.0\compressed\giyoea8shq-{0}-8qeawnrprb-8qeawnrprb.gz' -2026-01-28 14:14:10.330 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:10.330 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.330 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/themes/basic/main.css'. Physical path: 'D:\GitHub\abp\modules\basic-theme\src\Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme\obj\Debug\net10.0\compressed\fqd2rlnqku-{0}-tyyka3g39l-tyyka3g39l.gz' -2026-01-28 14:14:10.330 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:10.330 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.330 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.330 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.MudBlazorUI/volo.abp.mudblazorui.css - 200 1120 text/css 7.3519ms -2026-01-28 14:14:10.330 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/themes/basic/main.css - 200 120 text/css 5.0334ms -2026-01-28 14:14:10.331 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:10.331 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:10.331 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:10.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:10.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:10.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:10.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:10.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:10.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:10.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:10.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:10.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:10.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:10.331 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:10.331 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:10.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:10.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:10.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.331 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:10.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.331 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:10.331 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:10.331 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.331 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:10.331 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:10.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.331 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:10.331 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:10.331 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:10.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.331 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:10.331 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:10.331 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:10.331 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:10.331 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:10.331 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:10.331 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:10.331 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:10.331 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:10.331 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:10.331 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:10.331 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:10.331 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:10.331 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:10.331 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.331 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:10.331 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.331 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:10.331 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.332 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:10.332 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:10.332 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:10.332 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:10.332 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.332 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.332 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.332 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.332 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.332 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:10.332 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:10.332 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:10.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:10.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:10.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:10.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:10.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:10.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:10.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:10.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:10.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:10.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:10.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:10.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:10.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.332 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:10.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.332 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:10.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.332 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:10.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.332 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.333 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:10.333 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:10.333 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:10.333 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:10.333 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:10.333 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:10.333 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:10.333 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:10.333 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.333 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:10.333 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:10.333 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:10.333 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:10.333 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:10.333 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:10.333 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:10.333 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:10.333 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:10.333 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:10.333 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:10.333 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:10.333 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:10.333 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:10.333 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:10.333 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.333 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.333 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:10.333 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.333 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.333 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:10.333 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:10.333 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:10.333 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:10.333 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.333 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.333 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:10.333 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:10.334 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:10.334 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:10.334 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:10.334 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:10.334 +03:00 [INF] Sending file. Request path: 'images/getting-started/img-blog.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\img-blog.png' -2026-01-28 14:14:10.334 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:10.334 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.334 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:10.334 +03:00 [INF] Sending file. Request path: 'images/getting-started/bg-01.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\bg-01.png' -2026-01-28 14:14:10.334 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.334 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\obj\Debug\net10.0\compressed\2mj6s76mwx-{0}-qb38od44a4-qb38od44a4.gz' -2026-01-28 14:14:10.334 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/.well-known/appspecific/com.chrome.devtools.json - null null -2026-01-28 14:14:10.334 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.334 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/img-blog.png - 200 30220 image/png 4.346ms -2026-01-28 14:14:10.334 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/bg-01.png - 200 22111 image/png 5.0245ms -2026-01-28 14:14:10.334 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 486 text/javascript 3.8111ms -2026-01-28 14:14:10.334 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\obj\Debug\net10.0\compressed\rhkuekteef-{0}-cowusv9rvg-cowusv9rvg.gz' -2026-01-28 14:14:10.334 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.334 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.334 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8981 text/javascript 4.4079ms -2026-01-28 14:14:10.334 +03:00 [INF] Sending file. Request path: 'images/getting-started/img-support.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\img-support.png' -2026-01-28 14:14:10.334 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.334 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/img-support.png - 200 23461 image/png 5.1184ms -2026-01-28 14:14:10.335 +03:00 [INF] Sending file. Request path: '_content/MudBlazor/MudBlazor.min.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\0wz98yz2xy-{0}-u9015k2po7-u9015k2po7.gz' -2026-01-28 14:14:10.335 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.335 +03:00 [INF] Sending file. Request path: '_framework/blazor.web.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\ocy8dvewdt-{0}-2i0r6wwb69-2i0r6wwb69.gz' -2026-01-28 14:14:10.335 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.335 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/MudBlazor/MudBlazor.min.js - 200 11465 text/javascript 6.0231ms -2026-01-28 14:14:10.335 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/blazor.web.js - 200 55628 text/javascript 4.7281ms -2026-01-28 14:14:10.336 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.336 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.336 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:10.337 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:10.337 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.337 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:10.337 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.337 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:10.337 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:10.337 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:10.337 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:10.337 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.337 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.337 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:10.337 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:10.337 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:10.337 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:10.337 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:10.338 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:10.338 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:10.338 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:10.338 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/.well-known/appspecific/com.chrome.devtools.json - 404 0 null 4.3282ms -2026-01-28 14:14:10.338 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44308/.well-known/appspecific/com.chrome.devtools.json, Response status code: 404 -2026-01-28 14:14:10.492 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js - null null -2026-01-28 14:14:10.494 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.494 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.494 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:10.494 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:10.494 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.495 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:10.495 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.495 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:10.495 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:10.495 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:10.495 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:10.495 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.495 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.495 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:10.495 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:10.495 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:10.495 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:10.495 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:10.495 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:10.495 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:10.495 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:10.496 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.497 +03:00 [INF] Sending file. Request path: '_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js'. Physical path: 'C:\Users\ismai\.nuget\packages\microsoft.dotnet.hotreload.webassembly.browser\10.0.102\staticwebassets\Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js' -2026-01-28 14:14:10.497 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.498 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js - 200 1862 text/javascript 5.3857ms -2026-01-28 14:14:10.507 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.js - null null -2026-01-28 14:14:10.508 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.508 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.508 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:10.508 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:10.508 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.509 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:10.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:10.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:10.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:10.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:10.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.509 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:10.509 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:10.509 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:10.509 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:10.510 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:10.510 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:10.510 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:10.510 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:10.510 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.517 +03:00 [INF] Sending file. Request path: '_framework/dotnet.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uxk8is50o9-{0}-aooho9t0gv-aooho9t0gv.gz' -2026-01-28 14:14:10.517 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.518 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.js - 200 138290 text/javascript 10.4807ms -2026-01-28 14:14:10.535 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.0j6ezsi0n0.js - null null -2026-01-28 14:14:10.535 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.native.cs8mcre4gh.js - null null -2026-01-28 14:14:10.535 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.native.muve7a13r4.wasm - null null -2026-01-28 14:14:10.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:10.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:10.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:10.537 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:10.537 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.537 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:10.537 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:10.537 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.537 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:10.537 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:10.537 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:10.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:10.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:10.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:10.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:10.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:10.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:10.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:10.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:10.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:10.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:10.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:10.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:10.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.537 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:10.537 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:10.537 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:10.537 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:10.537 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:10.538 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:10.538 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:10.538 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:10.538 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:10.538 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:10.538 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:10.538 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:10.538 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:10.538 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:10.538 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:10.538 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:10.538 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:10.538 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:10.538 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:10.538 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:10.538 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:10.538 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:10.538 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:10.538 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:10.538 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.538 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.538 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.539 +03:00 [INF] Sending file. Request path: '_framework/dotnet.native.cs8mcre4gh.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\k6ua61tyqb-{0}-cs8mcre4gh-cs8mcre4gh.gz' -2026-01-28 14:14:10.540 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.540 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.native.cs8mcre4gh.js - 200 34952 text/javascript 4.3026ms -2026-01-28 14:14:10.540 +03:00 [INF] Sending file. Request path: '_framework/dotnet.runtime.0j6ezsi0n0.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ilxt1pu9fi-{0}-0j6ezsi0n0-0j6ezsi0n0.gz' -2026-01-28 14:14:10.540 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.540 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.0j6ezsi0n0.js - 200 57287 text/javascript 4.788ms -2026-01-28 14:14:10.551 +03:00 [INF] Sending file. Request path: '_framework/dotnet.native.muve7a13r4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uv3ayj7441-{0}-muve7a13r4-muve7a13r4.gz' -2026-01-28 14:14:10.551 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.551 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.native.muve7a13r4.wasm - 200 1207839 application/wasm 15.5439ms -2026-01-28 14:14:10.564 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.JavaScript.flbdejno7d.wasm - null null -2026-01-28 14:14:10.566 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.566 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.566 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:10.566 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:10.566 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.566 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:10.566 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.567 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:10.567 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:10.567 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:10.567 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:10.567 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.567 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.567 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:10.567 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:10.567 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:10.567 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:10.567 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:10.567 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:10.567 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:10.567 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:10.568 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.570 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.InteropServices.JavaScript.flbdejno7d.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s7btk1c9a3-{0}-flbdejno7d-flbdejno7d.gz' -2026-01-28 14:14:10.571 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.571 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.JavaScript.flbdejno7d.wasm - 200 79680 application/wasm 6.653ms -2026-01-28 14:14:10.639 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.js.map - null null -2026-01-28 14:14:10.640 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.640 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.640 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:10.640 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:10.640 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.641 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:10.641 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.641 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:10.641 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:10.641 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:10.641 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:10.641 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.641 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.641 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:10.641 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:10.641 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:10.641 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:10.641 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:10.641 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:10.641 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:10.641 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:10.642 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.644 +03:00 [INF] Sending file. Request path: '_framework/dotnet.runtime.js.map'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xqmdb6twc8-{0}-efgkpxn596-efgkpxn596.gz' -2026-01-28 14:14:10.644 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.644 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.js.map - 200 89353 text/plain 5.1627ms -2026-01-28 14:14:10.656 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.CoreLib.zjh2w4p93l.wasm - null null -2026-01-28 14:14:10.657 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.657 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:10.658 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:10.658 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:10.658 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.658 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:10.658 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:10.658 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:10.658 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:10.658 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:10.658 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:10.658 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.658 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:10.658 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:10.659 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:10.659 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:10.659 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:10.659 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:10.659 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:10.659 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:10.659 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:10.659 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.718 +03:00 [INF] Sending file. Request path: '_framework/System.Private.CoreLib.zjh2w4p93l.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6as1brjopk-{0}-zjh2w4p93l-zjh2w4p93l.gz' -2026-01-28 14:14:10.718 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:10.718 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.CoreLib.zjh2w4p93l.wasm - 200 4870686 application/wasm 62.0482ms -2026-01-28 14:14:11.108 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/favicon.ico - null null -2026-01-28 14:14:11.116 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'N/A' -2026-01-28 14:14:11.116 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/favicon.ico - 200 38078 image/x-icon 7.7487ms -2026-01-28 14:14:11.126 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.rgbxj6i45y.pdb - null null -2026-01-28 14:14:11.126 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.126 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.127 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.127 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.127 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.127 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.127 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.127 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.127 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.127 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.127 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.127 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.127 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.127 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.128 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.128 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.128 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.128 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.128 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.128 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.128 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.128 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.130 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.rgbxj6i45y.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vzc2x4ap4x-{0}-rgbxj6i45y-rgbxj6i45y.gz' -2026-01-28 14:14:11.130 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.130 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.rgbxj6i45y.pdb - 200 19065 application/octet-stream 3.9618ms -2026-01-28 14:14:11.135 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.3ihkiqtul0.pdb - null null -2026-01-28 14:14:11.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.136 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.136 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.136 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.136 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.137 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.137 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.137 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.137 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.137 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.137 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.137 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.137 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.137 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.137 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.137 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.137 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.137 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.137 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.137 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.137 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.137 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.138 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.3ihkiqtul0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6vzgo2e02t-{0}-3ihkiqtul0-3ihkiqtul0.gz' -2026-01-28 14:14:11.138 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.138 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.3ihkiqtul0.pdb - 200 18845 application/octet-stream 2.7654ms -2026-01-28 14:14:11.144 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.q12kofv66i.pdb - null null -2026-01-28 14:14:11.144 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.145 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.145 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.145 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.145 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.145 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.145 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.145 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.145 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.145 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.145 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.145 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.145 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.145 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.145 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.145 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.145 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.145 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.145 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.146 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.146 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.146 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.147 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.q12kofv66i.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tiqjr11wdr-{0}-q12kofv66i-q12kofv66i.gz' -2026-01-28 14:14:11.147 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.147 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.q12kofv66i.pdb - 200 40486 application/octet-stream 2.6654ms -2026-01-28 14:14:11.152 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.ugoz0mgqgy.pdb - null null -2026-01-28 14:14:11.152 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.153 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.153 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.153 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.153 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.153 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.153 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.153 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.153 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.153 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.153 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.153 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.153 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.153 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.153 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.153 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.153 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.153 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.153 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.153 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.153 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.154 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.154 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.ugoz0mgqgy.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3z9ena93oc-{0}-ugoz0mgqgy-ugoz0mgqgy.gz' -2026-01-28 14:14:11.155 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.155 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.ugoz0mgqgy.pdb - 200 31293 application/octet-stream 2.6908ms -2026-01-28 14:14:11.161 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.WebAssembly.imimiyzcuo.pdb - null null -2026-01-28 14:14:11.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.162 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.162 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.162 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.162 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.162 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.163 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.163 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.163 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.163 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.163 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.163 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.163 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.163 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.163 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.163 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.163 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.163 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.163 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.163 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.163 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.163 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.165 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Autofac.WebAssembly.imimiyzcuo.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\46uzmq97el-{0}-imimiyzcuo-imimiyzcuo.gz' -2026-01-28 14:14:11.165 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.165 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.WebAssembly.imimiyzcuo.pdb - 200 17837 application/octet-stream 3.6018ms -2026-01-28 14:14:11.171 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.xhf7sa1p5x.pdb - null null -2026-01-28 14:14:11.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.172 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.172 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.172 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.172 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.172 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.172 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.173 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.173 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.173 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.173 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.173 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.173 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.173 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.173 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.174 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.xhf7sa1p5x.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nvmr6rtxm8-{0}-xhf7sa1p5x-xhf7sa1p5x.gz' -2026-01-28 14:14:11.174 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.174 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.xhf7sa1p5x.pdb - 200 18717 application/octet-stream 2.7153ms -2026-01-28 14:14:11.180 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.aauy841uql.pdb - null null -2026-01-28 14:14:11.181 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.181 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.181 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.181 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.182 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.182 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.182 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.182 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.183 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.183 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.183 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.183 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.183 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.183 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.184 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.aauy841uql.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2jefoohlw9-{0}-aauy841uql-aauy841uql.gz' -2026-01-28 14:14:11.184 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.184 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.aauy841uql.pdb - 200 18717 application/octet-stream 3.5811ms -2026-01-28 14:14:11.190 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.gbnu5lon3p.pdb - null null -2026-01-28 14:14:11.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.191 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.191 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.191 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.191 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.191 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.191 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.191 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.191 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.191 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.191 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.191 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.191 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.191 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.191 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.191 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.191 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.192 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.193 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.gbnu5lon3p.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\yqm8xk8yh0-{0}-gbnu5lon3p-gbnu5lon3p.gz' -2026-01-28 14:14:11.193 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.193 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.gbnu5lon3p.pdb - 200 18277 application/octet-stream 3.1047ms -2026-01-28 14:14:11.200 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.HttpApi.Client.puryd8tfts.pdb - null null -2026-01-28 14:14:11.200 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.200 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.201 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.201 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.201 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.201 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.201 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.201 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.201 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.201 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.201 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.201 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.201 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.201 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.201 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.201 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.201 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.201 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.202 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.202 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.202 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.202 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.203 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.HttpApi.Client.puryd8tfts.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wa1oh5lir8-{0}-puryd8tfts-puryd8tfts.gz' -2026-01-28 14:14:11.203 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.203 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.HttpApi.Client.puryd8tfts.pdb - 200 18313 application/octet-stream 2.8381ms -2026-01-28 14:14:11.209 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Application.Contracts.q930c1xwd6.pdb - null null -2026-01-28 14:14:11.209 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.209 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.209 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.209 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.209 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.210 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.210 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.210 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.210 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.210 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.210 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.210 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.210 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.210 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.210 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.211 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Application.Contracts.q930c1xwd6.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7jvwr8mtd4-{0}-q930c1xwd6-q930c1xwd6.gz' -2026-01-28 14:14:11.211 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.211 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Application.Contracts.q930c1xwd6.pdb - 200 17845 application/octet-stream 2.5858ms -2026-01-28 14:14:11.217 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Domain.Shared.bmn2636ymj.pdb - null null -2026-01-28 14:14:11.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.218 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.218 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.218 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.218 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.218 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.218 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.219 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.219 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.219 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.219 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.219 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.219 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.219 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.219 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.220 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Domain.Shared.bmn2636ymj.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rlbmklp40g-{0}-bmn2636ymj-bmn2636ymj.gz' -2026-01-28 14:14:11.220 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.220 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Domain.Shared.bmn2636ymj.pdb - 200 17373 application/octet-stream 2.5126ms -2026-01-28 14:14:11.226 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.tv5yl1psyg.pdb - null null -2026-01-28 14:14:11.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.227 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.227 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.227 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.227 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.227 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.228 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.228 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.228 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.228 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.228 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.228 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.228 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.228 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.228 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.229 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.tv5yl1psyg.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kaxpuw2pqs-{0}-tv5yl1psyg-tv5yl1psyg.gz' -2026-01-28 14:14:11.229 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.229 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.tv5yl1psyg.pdb - 200 21877 application/octet-stream 2.9157ms -2026-01-28 14:14:11.236 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.i3kyf3e5w5.pdb - null null -2026-01-28 14:14:11.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.236 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.236 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.236 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.236 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.237 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.237 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.237 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.237 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.237 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.237 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.237 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.237 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.237 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.238 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.239 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.i3kyf3e5w5.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3g4acw7rc0-{0}-i3kyf3e5w5-i3kyf3e5w5.gz' -2026-01-28 14:14:11.239 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.239 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.i3kyf3e5w5.pdb - 200 28037 application/octet-stream 3.3876ms -2026-01-28 14:14:11.246 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.hcs1zisgxl.pdb - null null -2026-01-28 14:14:11.246 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.246 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.247 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.247 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.247 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.247 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.247 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.247 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.247 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.247 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.247 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.247 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.247 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.247 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.248 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.248 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.248 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.248 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.248 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.248 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.248 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.248 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.250 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.hcs1zisgxl.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\iqrjqm25rb-{0}-hcs1zisgxl-hcs1zisgxl.gz' -2026-01-28 14:14:11.250 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.250 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.hcs1zisgxl.pdb - 200 41586 application/octet-stream 4.019ms -2026-01-28 14:14:11.258 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.w6zddju3kj.pdb - null null -2026-01-28 14:14:11.258 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.258 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.258 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.258 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.258 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.259 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.259 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.259 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.259 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.259 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.259 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.259 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.259 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.259 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.259 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.260 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.w6zddju3kj.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wynnfd4qyp-{0}-w6zddju3kj-w6zddju3kj.gz' -2026-01-28 14:14:11.260 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.260 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.w6zddju3kj.pdb - 200 31269 application/octet-stream 2.6321ms -2026-01-28 14:14:11.268 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.kgrhtsi4hq.pdb - null null -2026-01-28 14:14:11.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.269 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.269 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.269 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.269 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.269 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.269 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.270 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.270 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.270 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.270 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.270 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.270 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.270 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.270 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.271 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.kgrhtsi4hq.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\htac70xodz-{0}-kgrhtsi4hq-kgrhtsi4hq.gz' -2026-01-28 14:14:11.271 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.271 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.kgrhtsi4hq.pdb - 200 18517 application/octet-stream 2.8166ms -2026-01-28 14:14:11.276 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.mqramojkbo.pdb - null null -2026-01-28 14:14:11.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.276 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.277 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.277 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.277 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.277 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.277 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.277 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.277 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.277 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.277 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.277 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.277 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.277 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.278 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.278 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.mqramojkbo.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mf8v92gj25-{0}-mqramojkbo-mqramojkbo.gz' -2026-01-28 14:14:11.278 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.279 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.mqramojkbo.pdb - 200 13921 application/octet-stream 2.7323ms -2026-01-28 14:14:11.302 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.kbf4e1o5yq.pdb - null null -2026-01-28 14:14:11.302 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.303 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.303 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.303 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.303 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.303 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.303 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.303 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.303 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.303 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.303 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.303 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.303 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.303 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.304 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.304 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.kbf4e1o5yq.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\075clw76hm-{0}-kbf4e1o5yq-kbf4e1o5yq.gz' -2026-01-28 14:14:11.305 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.305 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.kbf4e1o5yq.pdb - 200 21557 application/octet-stream 2.7215ms -2026-01-28 14:14:11.313 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.j3nmt0rh5o.pdb - null null -2026-01-28 14:14:11.313 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.313 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.313 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.313 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.313 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.314 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.314 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.314 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.314 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.314 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.314 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.314 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.314 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.314 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.314 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.314 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.314 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.314 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.314 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.314 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.314 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.315 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.316 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.j3nmt0rh5o.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gbgteom76y-{0}-j3nmt0rh5o-j3nmt0rh5o.gz' -2026-01-28 14:14:11.316 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.316 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.j3nmt0rh5o.pdb - 200 31349 application/octet-stream 3.2209ms -2026-01-28 14:14:11.322 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.ej4nfwopnt.pdb - null null -2026-01-28 14:14:11.323 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.323 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.323 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.323 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.323 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.323 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.324 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.324 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.324 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.324 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.324 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.324 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.324 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.324 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.324 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.326 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Blazor.MudBlazor.ej4nfwopnt.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8c1zm5wt8e-{0}-ej4nfwopnt-ej4nfwopnt.gz' -2026-01-28 14:14:11.326 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.326 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.ej4nfwopnt.pdb - 200 45622 application/octet-stream 3.5293ms -2026-01-28 14:14:11.335 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MudBlazorUI.kagx9siw5c.pdb - null null -2026-01-28 14:14:11.335 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.335 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.335 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.335 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.335 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.336 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.336 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.336 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.336 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.336 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.336 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.336 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.336 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.336 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.336 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.336 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.336 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.336 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.336 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.336 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.336 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.336 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.338 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MudBlazorUI.kagx9siw5c.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fb4n2yszse-{0}-kagx9siw5c-kagx9siw5c.gz' -2026-01-28 14:14:11.338 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.338 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MudBlazorUI.kagx9siw5c.pdb - 200 75523 application/octet-stream 3.2916ms -2026-01-28 14:14:11.344 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.h9wobfk88b.pdb - null null -2026-01-28 14:14:11.344 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.344 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.345 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.345 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.345 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.345 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.345 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.345 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.345 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.345 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.345 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.345 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.345 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.345 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.346 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.346 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.346 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.346 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.346 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.346 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.346 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.346 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.347 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.h9wobfk88b.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ouhgkzthum-{0}-h9wobfk88b-h9wobfk88b.gz' -2026-01-28 14:14:11.348 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.348 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.h9wobfk88b.pdb - 200 42806 application/octet-stream 3.9209ms -2026-01-28 14:14:11.357 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.sff8ai0aia.pdb - null null -2026-01-28 14:14:11.357 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.357 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.358 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.358 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.358 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.358 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.358 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.358 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.358 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.358 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.358 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.358 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.358 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.358 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.358 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.359 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.sff8ai0aia.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xdm6fxeedd-{0}-sff8ai0aia-sff8ai0aia.gz' -2026-01-28 14:14:11.359 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.359 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.sff8ai0aia.pdb - 200 18145 application/octet-stream 2.525ms -2026-01-28 14:14:11.367 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.6hy2xofs6k.pdb - null null -2026-01-28 14:14:11.367 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.368 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.368 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.368 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.368 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.368 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.368 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.368 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.368 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.368 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.368 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.368 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.368 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.368 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.368 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.368 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.368 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.369 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.369 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.369 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.369 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.369 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.370 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.6hy2xofs6k.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wvossyu6ah-{0}-6hy2xofs6k-6hy2xofs6k.gz' -2026-01-28 14:14:11.370 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.370 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.6hy2xofs6k.pdb - 200 41322 application/octet-stream 2.8971ms -2026-01-28 14:14:11.375 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.phiqfrt9c2.pdb - null null -2026-01-28 14:14:11.376 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.376 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.376 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.376 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.376 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.377 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.377 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.377 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.377 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.377 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.377 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.377 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.377 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.377 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.377 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.377 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.377 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.377 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.377 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.377 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.377 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.377 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.378 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.phiqfrt9c2.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mq253tbkc6-{0}-phiqfrt9c2-phiqfrt9c2.gz' -2026-01-28 14:14:11.378 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.378 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.phiqfrt9c2.pdb - 200 28197 application/octet-stream 2.9784ms -2026-01-28 14:14:11.388 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.Application.Contracts.lnhr5y4bfl.pdb - null null -2026-01-28 14:14:11.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.389 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.389 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.389 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.389 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.389 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.390 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.390 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.391 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.391 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.391 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.391 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.391 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.391 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.391 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.392 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Account.Application.Contracts.lnhr5y4bfl.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uzxye9p8cy-{0}-lnhr5y4bfl-lnhr5y4bfl.gz' -2026-01-28 14:14:11.392 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.392 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.Application.Contracts.lnhr5y4bfl.pdb - 200 19021 application/octet-stream 4.6747ms -2026-01-28 14:14:11.402 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.HttpApi.Client.vbwanrrdq2.pdb - null null -2026-01-28 14:14:11.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.403 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.404 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.404 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.404 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.404 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.404 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.404 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.404 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.404 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.404 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.405 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Account.HttpApi.Client.vbwanrrdq2.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ntmq6e7ewr-{0}-vbwanrrdq2-vbwanrrdq2.gz' -2026-01-28 14:14:11.405 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.406 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.HttpApi.Client.vbwanrrdq2.pdb - 200 18073 application/octet-stream 3.215ms -2026-01-28 14:14:11.413 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.hpzdukhxsy.pdb - null null -2026-01-28 14:14:11.414 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.414 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.414 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.414 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.414 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.414 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.414 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.414 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.414 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.414 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.414 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.414 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.414 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.414 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.415 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.415 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.415 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.415 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.415 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.415 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.415 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.415 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.416 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.hpzdukhxsy.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\eoau05i0af-{0}-hpzdukhxsy-hpzdukhxsy.gz' -2026-01-28 14:14:11.416 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.416 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.hpzdukhxsy.pdb - 200 25305 application/octet-stream 3.1008ms -2026-01-28 14:14:11.422 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Contracts.4guztbzukr.pdb - null null -2026-01-28 14:14:11.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.423 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.423 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.423 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.423 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.423 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.423 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.424 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.424 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.424 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.424 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.424 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.424 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.424 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.424 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.425 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.Contracts.4guztbzukr.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ur1wb3r0pv-{0}-4guztbzukr-4guztbzukr.gz' -2026-01-28 14:14:11.425 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.425 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Contracts.4guztbzukr.pdb - 200 26921 application/octet-stream 3.0593ms -2026-01-28 14:14:11.433 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.3fgrvz25ex.pdb - null null -2026-01-28 14:14:11.433 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.433 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.434 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.434 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.434 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.434 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.434 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.434 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.434 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.434 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.434 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.434 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.434 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.434 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.434 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.434 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.434 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.434 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.435 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.435 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.435 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.435 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.436 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Auditing.3fgrvz25ex.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\o0dl3ao57v-{0}-3fgrvz25ex-3fgrvz25ex.gz' -2026-01-28 14:14:11.436 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.436 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.3fgrvz25ex.pdb - 200 29913 application/octet-stream 2.8755ms -2026-01-28 14:14:11.441 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.Contracts.ad5k0tpyib.pdb - null null -2026-01-28 14:14:11.442 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.442 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.442 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.442 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.442 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.443 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.443 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.443 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.443 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.443 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.443 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.443 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.443 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.443 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.443 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.443 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.443 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.443 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.443 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.443 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.443 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.443 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.444 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Auditing.Contracts.ad5k0tpyib.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wqxp9ykz4o-{0}-ad5k0tpyib-ad5k0tpyib.gz' -2026-01-28 14:14:11.444 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.445 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.Contracts.ad5k0tpyib.pdb - 200 14417 application/octet-stream 3.1394ms -2026-01-28 14:14:11.451 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AuditLogging.Domain.Shared.er7pf6ix9i.pdb - null null -2026-01-28 14:14:11.451 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.451 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.452 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.452 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.452 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.452 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.452 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.452 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.452 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.452 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.452 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.452 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.452 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.452 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.452 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.452 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.452 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.452 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.452 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.452 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.452 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.453 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.453 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AuditLogging.Domain.Shared.er7pf6ix9i.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5199po5zxq-{0}-er7pf6ix9i-er7pf6ix9i.gz' -2026-01-28 14:14:11.453 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.454 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AuditLogging.Domain.Shared.er7pf6ix9i.pdb - 200 16493 application/octet-stream 2.6784ms -2026-01-28 14:14:11.460 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.c2wpqbl74n.pdb - null null -2026-01-28 14:14:11.460 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.460 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.460 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.461 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.461 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.461 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.461 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.461 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.461 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.461 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.461 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.461 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.461 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.461 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.461 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.461 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.461 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.461 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.461 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.461 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.461 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.462 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.463 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Authorization.c2wpqbl74n.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sb9kt3tht9-{0}-c2wpqbl74n-c2wpqbl74n.gz' -2026-01-28 14:14:11.463 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.463 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.c2wpqbl74n.pdb - 200 41330 application/octet-stream 3.5142ms -2026-01-28 14:14:11.471 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.Abstractions.njkrkpdqox.pdb - null null -2026-01-28 14:14:11.471 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.471 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.471 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.471 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.471 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.472 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.472 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.472 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.472 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.473 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.473 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.473 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.473 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.473 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.473 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.474 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Authorization.Abstractions.njkrkpdqox.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\09yc6y4n5e-{0}-njkrkpdqox-njkrkpdqox.gz' -2026-01-28 14:14:11.474 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.475 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.Abstractions.njkrkpdqox.pdb - 200 27181 application/octet-stream 4.0378ms -2026-01-28 14:14:11.484 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.gjl6v1jjym.pdb - null null -2026-01-28 14:14:11.484 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.484 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.485 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.485 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.485 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.485 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.485 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.485 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.485 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.485 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.485 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.485 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.485 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.485 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.485 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.485 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.485 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.485 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.485 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.485 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.485 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.486 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.487 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Autofac.gjl6v1jjym.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jpkrtenkjs-{0}-gjl6v1jjym-gjl6v1jjym.gz' -2026-01-28 14:14:11.487 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.488 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.gjl6v1jjym.pdb - 200 18693 application/octet-stream 3.8301ms -2026-01-28 14:14:11.493 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundJobs.Domain.Shared.5vpn00cswb.pdb - null null -2026-01-28 14:14:11.493 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.494 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.494 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.494 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.494 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.494 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.494 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.494 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.494 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.494 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.494 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.494 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.494 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.494 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.495 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.495 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.495 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.495 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.495 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.495 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.495 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.495 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.496 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BackgroundJobs.Domain.Shared.5vpn00cswb.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\htaazompkm-{0}-5vpn00cswb-5vpn00cswb.gz' -2026-01-28 14:14:11.496 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.496 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundJobs.Domain.Shared.5vpn00cswb.pdb - 200 13221 application/octet-stream 3.4784ms -2026-01-28 14:14:11.503 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundWorkers.huyj44uu0k.pdb - null null -2026-01-28 14:14:11.504 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.504 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.504 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.504 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.504 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.505 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.505 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.505 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.505 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.505 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.505 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.505 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.505 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.505 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.505 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.505 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.505 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.505 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.505 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.505 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.505 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.505 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.506 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BackgroundWorkers.huyj44uu0k.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ei0v3zqng-{0}-huyj44uu0k-huyj44uu0k.gz' -2026-01-28 14:14:11.506 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.507 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundWorkers.huyj44uu0k.pdb - 200 19469 application/octet-stream 3.1133ms -2026-01-28 14:14:11.513 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Caching.x1qmvuwbas.pdb - null null -2026-01-28 14:14:11.514 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.514 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.514 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.514 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.514 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.515 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.515 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.515 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.515 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.515 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.515 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.515 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.515 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.515 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.515 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.515 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.515 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.515 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.515 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.515 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.515 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.516 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.517 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Caching.x1qmvuwbas.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wokijgaifq-{0}-x1qmvuwbas-x1qmvuwbas.gz' -2026-01-28 14:14:11.517 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.517 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Caching.x1qmvuwbas.pdb - 200 37286 application/octet-stream 3.3917ms -2026-01-28 14:14:11.522 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Castle.Core.b02it10il0.pdb - null null -2026-01-28 14:14:11.523 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.523 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.523 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.523 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.523 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.523 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.523 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.523 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.523 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.523 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.523 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.523 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.523 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.523 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.524 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.524 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.524 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.524 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.524 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.524 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.524 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.524 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.525 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Castle.Core.b02it10il0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dte7v0ocsr-{0}-b02it10il0-b02it10il0.gz' -2026-01-28 14:14:11.525 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.525 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Castle.Core.b02it10il0.pdb - 200 15221 application/octet-stream 2.5292ms -2026-01-28 14:14:11.530 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Core.t1nnzj3qxb.pdb - null null -2026-01-28 14:14:11.531 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.531 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.531 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.531 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.531 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.532 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.532 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.532 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.532 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.532 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.532 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.532 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.532 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.532 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.532 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.532 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.532 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.532 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.532 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.532 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.532 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.532 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.534 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Core.t1nnzj3qxb.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c42x4ftr8l-{0}-t1nnzj3qxb-t1nnzj3qxb.gz' -2026-01-28 14:14:11.534 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.534 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Core.t1nnzj3qxb.pdb - 200 148177 application/octet-stream 3.9728ms -2026-01-28 14:14:11.542 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Data.9rv6w6qyku.pdb - null null -2026-01-28 14:14:11.543 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.543 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.543 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.543 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.543 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.544 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.544 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.544 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.544 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.544 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.544 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.544 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.544 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.544 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.545 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.545 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.545 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.545 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.545 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.545 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.545 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.545 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.546 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Data.9rv6w6qyku.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ze3wjukds-{0}-9rv6w6qyku-9rv6w6qyku.gz' -2026-01-28 14:14:11.546 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.546 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Data.9rv6w6qyku.pdb - 200 21821 application/octet-stream 3.8003ms -2026-01-28 14:14:11.554 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Ddd.Application.Contracts.giee71sla7.pdb - null null -2026-01-28 14:14:11.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.555 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.555 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.555 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.555 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.556 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.556 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.556 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.556 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.556 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.556 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.556 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.556 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.556 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.556 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.556 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.556 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.556 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.556 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.556 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.556 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.556 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.557 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Ddd.Application.Contracts.giee71sla7.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5aiafzhp1m-{0}-giee71sla7-giee71sla7.gz' -2026-01-28 14:14:11.557 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.557 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Ddd.Application.Contracts.giee71sla7.pdb - 200 23417 application/octet-stream 3.0481ms -2026-01-28 14:14:11.563 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.DistributedLocking.Abstractions.65nua6uxpe.pdb - null null -2026-01-28 14:14:11.564 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.564 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.564 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.564 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.564 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.565 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.565 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.565 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.565 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.565 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.565 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.565 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.565 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.565 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.565 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.565 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.565 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.565 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.565 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.565 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.565 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.566 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.567 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.DistributedLocking.Abstractions.65nua6uxpe.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\a8j0sb24cp-{0}-65nua6uxpe-65nua6uxpe.gz' -2026-01-28 14:14:11.567 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.567 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.DistributedLocking.Abstractions.65nua6uxpe.pdb - 200 14657 application/octet-stream 3.4153ms -2026-01-28 14:14:11.573 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.iceog8f4b1.pdb - null null -2026-01-28 14:14:11.573 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.574 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.574 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.574 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.574 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.574 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.574 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.574 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.574 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.574 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.574 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.574 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.574 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.574 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.575 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.575 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.575 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.575 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.575 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.575 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.575 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.575 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.576 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.EventBus.iceog8f4b1.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c7ycdiyl76-{0}-iceog8f4b1-iceog8f4b1.gz' -2026-01-28 14:14:11.576 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.576 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.iceog8f4b1.pdb - 200 37630 application/octet-stream 3.3269ms -2026-01-28 14:14:11.584 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.Abstractions.xi5e4z12z9.pdb - null null -2026-01-28 14:14:11.584 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.584 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.585 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.585 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.585 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.585 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.585 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.585 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.585 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.585 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.585 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.585 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.585 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.585 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.585 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.585 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.585 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.585 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.585 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.585 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.586 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.586 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.587 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.EventBus.Abstractions.xi5e4z12z9.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\w7l86von3o-{0}-xi5e4z12z9-xi5e4z12z9.gz' -2026-01-28 14:14:11.587 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.587 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.Abstractions.xi5e4z12z9.pdb - 200 20237 application/octet-stream 3.086ms -2026-01-28 14:14:11.594 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ExceptionHandling.25h2gy8c5p.pdb - null null -2026-01-28 14:14:11.594 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.594 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.594 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.594 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.594 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.595 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.595 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.595 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.595 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.595 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.595 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.595 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.595 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.595 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.595 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.595 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.595 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.595 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.595 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.595 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.595 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.596 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.597 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ExceptionHandling.25h2gy8c5p.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\m6s0vb39gb-{0}-25h2gy8c5p-25h2gy8c5p.gz' -2026-01-28 14:14:11.597 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.597 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ExceptionHandling.25h2gy8c5p.pdb - 200 20157 application/octet-stream 3.5253ms -2026-01-28 14:14:11.605 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Application.Contracts.0urd6kcrgp.pdb - null null -2026-01-28 14:14:11.605 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.605 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.605 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.605 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.606 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.606 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.606 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.606 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.606 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.606 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.606 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.606 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.606 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.606 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.606 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.606 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.606 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.606 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.606 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.606 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.606 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.607 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.607 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Application.Contracts.0urd6kcrgp.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0ru1qvb3x4-{0}-0urd6kcrgp-0urd6kcrgp.gz' -2026-01-28 14:14:11.607 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.608 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Application.Contracts.0urd6kcrgp.pdb - 200 16981 application/octet-stream 2.8899ms -2026-01-28 14:14:11.614 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Domain.Shared.4mozmqu5fv.pdb - null null -2026-01-28 14:14:11.615 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.615 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.615 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.615 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.615 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.615 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.615 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.616 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.616 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.616 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.616 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.616 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.616 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.616 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.616 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.616 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.617 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Domain.Shared.4mozmqu5fv.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dnjx07a9gy-{0}-4mozmqu5fv-4mozmqu5fv.gz' -2026-01-28 14:14:11.617 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.617 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Domain.Shared.4mozmqu5fv.pdb - 200 18405 application/octet-stream 3.0206ms -2026-01-28 14:14:11.623 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.HttpApi.Client.3n7n0nm412.pdb - null null -2026-01-28 14:14:11.624 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.624 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.624 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.624 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.624 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.625 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.625 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.625 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.625 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.625 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.625 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.625 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.625 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.625 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.625 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.625 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.625 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.625 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.625 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.625 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.625 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.625 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.626 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.HttpApi.Client.3n7n0nm412.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xephdxvmqy-{0}-3n7n0nm412-3n7n0nm412.gz' -2026-01-28 14:14:11.626 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.626 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.HttpApi.Client.3n7n0nm412.pdb - 200 16661 application/octet-stream 2.9445ms -2026-01-28 14:14:11.634 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Features.e0wztgo5kc.pdb - null null -2026-01-28 14:14:11.634 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.635 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.635 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.635 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.635 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.635 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.635 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.636 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.636 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.636 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.636 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.636 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.636 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.636 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.636 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.637 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Features.e0wztgo5kc.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lwwrm2rnuk-{0}-e0wztgo5kc-e0wztgo5kc.gz' -2026-01-28 14:14:11.637 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.637 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Features.e0wztgo5kc.pdb - 200 31093 application/octet-stream 3.1254ms -2026-01-28 14:14:11.643 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.GlobalFeatures.i3mx9avsa1.pdb - null null -2026-01-28 14:14:11.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.643 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.643 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.643 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.643 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.644 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.644 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.644 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.644 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.644 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.644 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.644 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.644 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.644 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.644 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.644 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.644 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.644 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.644 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.644 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.644 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.645 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.646 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.GlobalFeatures.i3mx9avsa1.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8hrz94lbbq-{0}-i3mx9avsa1-i3mx9avsa1.gz' -2026-01-28 14:14:11.646 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.646 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.GlobalFeatures.i3mx9avsa1.pdb - 200 20401 application/octet-stream 3.2622ms -2026-01-28 14:14:11.651 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Guids.trl9ec6i34.pdb - null null -2026-01-28 14:14:11.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.652 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.652 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.652 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.652 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.652 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.653 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.653 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.653 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.653 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.653 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.653 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.653 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.653 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.653 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.653 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.654 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Guids.trl9ec6i34.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0qqhgjay94-{0}-trl9ec6i34-trl9ec6i34.gz' -2026-01-28 14:14:11.654 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.654 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Guids.trl9ec6i34.pdb - 200 14061 application/octet-stream 2.7256ms -2026-01-28 14:14:11.660 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.e49tj9fcht.pdb - null null -2026-01-28 14:14:11.660 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.660 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.661 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.661 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.661 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.661 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.661 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.661 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.661 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.661 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.661 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.661 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.661 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.661 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.661 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.661 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.662 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.662 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.662 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.662 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.662 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.662 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.663 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.e49tj9fcht.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b3mu9af069-{0}-e49tj9fcht-e49tj9fcht.gz' -2026-01-28 14:14:11.663 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.663 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.e49tj9fcht.pdb - 200 31453 application/octet-stream 3.1368ms -2026-01-28 14:14:11.669 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Abstractions.k3c9afe7hi.pdb - null null -2026-01-28 14:14:11.670 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.670 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.670 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.670 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.670 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.670 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.670 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.670 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.670 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.670 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.670 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.670 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.670 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.670 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.671 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.671 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.671 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.671 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.671 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.671 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.671 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.671 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.672 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Abstractions.k3c9afe7hi.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j4y3kuv6se-{0}-k3c9afe7hi-k3c9afe7hi.gz' -2026-01-28 14:14:11.672 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.672 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Abstractions.k3c9afe7hi.pdb - 200 13525 application/octet-stream 2.7581ms -2026-01-28 14:14:11.678 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.yru01o8vkp.pdb - null null -2026-01-28 14:14:11.678 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.679 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.679 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.680 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.680 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.680 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.680 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.680 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.680 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.680 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.680 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.681 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.yru01o8vkp.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ttya30eyt8-{0}-yru01o8vkp-yru01o8vkp.gz' -2026-01-28 14:14:11.681 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.681 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.yru01o8vkp.pdb - 200 38918 application/octet-stream 3.4555ms -2026-01-28 14:14:11.688 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.3tflefedmx.pdb - null null -2026-01-28 14:14:11.688 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.688 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.688 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.689 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.689 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.689 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.689 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.689 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.689 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.689 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.689 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.689 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.689 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.689 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.689 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.689 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.689 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.689 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.690 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.690 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.690 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.690 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.691 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.IdentityModel.3tflefedmx.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\d3rz4s2afx-{0}-3tflefedmx-3tflefedmx.gz' -2026-01-28 14:14:11.691 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.691 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.3tflefedmx.pdb - 200 16433 application/octet-stream 2.9195ms -2026-01-28 14:14:11.697 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Application.Contracts.csmzqgy4d0.pdb - null null -2026-01-28 14:14:11.698 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.698 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.698 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.698 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.698 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.698 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.698 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.698 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.699 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.699 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.699 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.699 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.699 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.699 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.699 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.699 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.699 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.699 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.699 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.699 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.699 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.699 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.700 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Application.Contracts.csmzqgy4d0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\h1go2ee35q-{0}-csmzqgy4d0-csmzqgy4d0.gz' -2026-01-28 14:14:11.700 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.700 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Application.Contracts.csmzqgy4d0.pdb - 200 20665 application/octet-stream 3.2659ms -2026-01-28 14:14:11.706 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Domain.Shared.earp2x5g6u.pdb - null null -2026-01-28 14:14:11.707 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.707 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.707 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.707 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.707 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.707 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.707 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.707 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.707 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.707 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.707 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.707 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.707 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.707 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.708 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.708 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.708 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.708 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.708 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.708 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.708 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.708 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.709 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Domain.Shared.earp2x5g6u.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wq3qylwiyp-{0}-earp2x5g6u-earp2x5g6u.gz' -2026-01-28 14:14:11.709 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.709 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Domain.Shared.earp2x5g6u.pdb - 200 23785 application/octet-stream 2.8738ms -2026-01-28 14:14:11.716 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.HttpApi.Client.4ey4wjeneg.pdb - null null -2026-01-28 14:14:11.717 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.717 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.717 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.717 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.717 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.717 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.717 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.717 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.717 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.717 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.717 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.717 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.717 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.717 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.718 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.718 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.718 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.718 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.718 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.718 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.718 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.718 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.719 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.HttpApi.Client.4ey4wjeneg.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0u48eqlsj4-{0}-4ey4wjeneg-4ey4wjeneg.gz' -2026-01-28 14:14:11.719 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.719 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.HttpApi.Client.4ey4wjeneg.pdb - 200 23337 application/octet-stream 2.9893ms -2026-01-28 14:14:11.761 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.IdentityModel.biic7mtw2y.pdb - null null -2026-01-28 14:14:11.761 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.761 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.762 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.762 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.762 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.762 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.762 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.762 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.763 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.763 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.763 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.763 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.763 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.763 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.763 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.763 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.764 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.IdentityModel.biic7mtw2y.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\poi5v0je1c-{0}-biic7mtw2y-biic7mtw2y.gz' -2026-01-28 14:14:11.764 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.764 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.IdentityModel.biic7mtw2y.pdb - 200 20817 application/octet-stream 3.2025ms -2026-01-28 14:14:11.770 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.wxbyyf07mz.pdb - null null -2026-01-28 14:14:11.770 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.770 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.770 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.770 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.770 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.770 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.770 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.770 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.770 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.771 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.771 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.771 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.771 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.771 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.771 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.771 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.771 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.771 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.771 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.771 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.771 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.771 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.772 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.wxbyyf07mz.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rrchruuh0t-{0}-wxbyyf07mz-wxbyyf07mz.gz' -2026-01-28 14:14:11.772 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.772 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.wxbyyf07mz.pdb - 200 13757 application/octet-stream 2.6683ms -2026-01-28 14:14:11.777 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.Abstractions.b6z6t2mhzy.pdb - null null -2026-01-28 14:14:11.777 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.778 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.778 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.778 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.778 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.778 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.778 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.778 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.778 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.778 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.778 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.778 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.778 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.778 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.779 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.779 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.779 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.779 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.779 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.779 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.779 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.779 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.780 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.Abstractions.b6z6t2mhzy.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\u9w5uxptpu-{0}-b6z6t2mhzy-b6z6t2mhzy.gz' -2026-01-28 14:14:11.780 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.780 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.Abstractions.b6z6t2mhzy.pdb - 200 13249 application/octet-stream 3.0015ms -2026-01-28 14:14:11.787 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.SystemTextJson.rdlvucrzj7.pdb - null null -2026-01-28 14:14:11.788 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.788 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.788 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.788 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.788 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.788 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.788 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.788 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.788 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.788 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.788 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.788 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.788 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.788 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.789 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.789 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.789 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.789 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.789 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.789 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.789 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.789 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.790 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.SystemTextJson.rdlvucrzj7.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4rl2glc87e-{0}-rdlvucrzj7-rdlvucrzj7.gz' -2026-01-28 14:14:11.790 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.790 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.SystemTextJson.rdlvucrzj7.pdb - 200 21501 application/octet-stream 2.5549ms -2026-01-28 14:14:11.796 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.ellkzq2obz.pdb - null null -2026-01-28 14:14:11.797 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.797 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.797 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.797 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.797 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.797 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.797 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.798 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.798 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.798 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.798 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.798 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.798 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.798 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.798 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.798 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.799 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Localization.ellkzq2obz.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9jz0202bvx-{0}-ellkzq2obz-ellkzq2obz.gz' -2026-01-28 14:14:11.799 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.799 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.ellkzq2obz.pdb - 200 34682 application/octet-stream 3.255ms -2026-01-28 14:14:11.805 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.Abstractions.e2czzeh6g0.pdb - null null -2026-01-28 14:14:11.806 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.806 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.806 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.806 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.806 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.806 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.806 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.806 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.806 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.806 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.806 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.806 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.806 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.806 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.807 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.807 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.807 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.807 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.807 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.807 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.807 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.807 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.808 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Localization.Abstractions.e2czzeh6g0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nql43ug6yv-{0}-e2czzeh6g0-e2czzeh6g0.gz' -2026-01-28 14:14:11.808 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.808 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.Abstractions.e2czzeh6g0.pdb - 200 16505 application/octet-stream 2.6064ms -2026-01-28 14:14:11.815 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Mapperly.xzmrwcbuer.pdb - null null -2026-01-28 14:14:11.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.816 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.816 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.816 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.816 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.817 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.817 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.817 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.817 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.817 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.817 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.817 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.817 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.817 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.817 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.818 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Mapperly.xzmrwcbuer.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ir90d0l0q4-{0}-xzmrwcbuer-xzmrwcbuer.gz' -2026-01-28 14:14:11.818 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.819 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Mapperly.xzmrwcbuer.pdb - 200 18489 application/octet-stream 3.477ms -2026-01-28 14:14:11.824 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Minify.jd3swzgz81.pdb - null null -2026-01-28 14:14:11.825 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.825 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.825 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.825 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.825 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.825 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.825 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.826 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.826 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.826 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.826 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.826 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.826 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.826 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.826 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.826 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.826 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.826 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.826 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.826 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.826 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.826 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.827 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Minify.jd3swzgz81.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6nicogsytc-{0}-jd3swzgz81-jd3swzgz81.gz' -2026-01-28 14:14:11.827 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.827 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Minify.jd3swzgz81.pdb - 200 14637 application/octet-stream 2.757ms -2026-01-28 14:14:11.833 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.m645p8frzn.pdb - null null -2026-01-28 14:14:11.834 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.834 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.834 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.834 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.834 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.834 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.834 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.834 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.834 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.834 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.834 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.834 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.834 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.834 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.835 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.835 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.835 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.835 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.835 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.835 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.835 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.835 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.836 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MultiTenancy.m645p8frzn.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xypgrhxtpa-{0}-m645p8frzn-m645p8frzn.gz' -2026-01-28 14:14:11.836 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.836 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.m645p8frzn.pdb - 200 21073 application/octet-stream 2.494ms -2026-01-28 14:14:11.841 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.Abstractions.6usxju90tg.pdb - null null -2026-01-28 14:14:11.841 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.841 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.842 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.842 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.842 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.842 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.842 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.842 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.842 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.842 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.842 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.842 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.842 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.842 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.842 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.842 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.842 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.842 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.842 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.842 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.842 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.843 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.843 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MultiTenancy.Abstractions.6usxju90tg.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bwd6m19o6e-{0}-6usxju90tg-6usxju90tg.gz' -2026-01-28 14:14:11.843 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.843 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.Abstractions.6usxju90tg.pdb - 200 19661 application/octet-stream 2.6552ms -2026-01-28 14:14:11.849 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectExtending.vubnqxtt45.pdb - null null -2026-01-28 14:14:11.850 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.850 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.850 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.850 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.850 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.850 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.850 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.850 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.850 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.850 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.851 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.851 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.851 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.851 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.851 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.851 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.851 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.851 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.851 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.851 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.851 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.851 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.852 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ObjectExtending.vubnqxtt45.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wybocaa0up-{0}-vubnqxtt45-vubnqxtt45.gz' -2026-01-28 14:14:11.852 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.852 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectExtending.vubnqxtt45.pdb - 200 31977 application/octet-stream 3.2192ms -2026-01-28 14:14:11.858 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectMapping.5ggcg7w9e7.pdb - null null -2026-01-28 14:14:11.859 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.859 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.859 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.859 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.859 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.859 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.859 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.859 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.859 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.859 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.859 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.859 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.859 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.859 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.860 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.860 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.860 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.860 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.860 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.860 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.860 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.860 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.861 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ObjectMapping.5ggcg7w9e7.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fsnac4k4sd-{0}-5ggcg7w9e7-5ggcg7w9e7.gz' -2026-01-28 14:14:11.861 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.861 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectMapping.5ggcg7w9e7.pdb - 200 17133 application/octet-stream 2.5784ms -2026-01-28 14:14:11.867 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.OpenIddict.Domain.Shared.z584yb9x48.pdb - null null -2026-01-28 14:14:11.868 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.868 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.868 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.868 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.868 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.868 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.868 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.868 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.868 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.868 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.868 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.868 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.868 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.868 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.868 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.868 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.868 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.868 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.868 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.868 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.869 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.869 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.869 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.OpenIddict.Domain.Shared.z584yb9x48.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ofhohlcsdd-{0}-z584yb9x48-z584yb9x48.gz' -2026-01-28 14:14:11.870 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.870 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.OpenIddict.Domain.Shared.z584yb9x48.pdb - 200 17397 application/octet-stream 2.6358ms -2026-01-28 14:14:11.875 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Application.Contracts.yiquol1hlc.pdb - null null -2026-01-28 14:14:11.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.875 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.875 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.876 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.876 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.876 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.876 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.876 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.876 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.876 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.876 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.876 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.876 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.876 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.877 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.878 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Application.Contracts.yiquol1hlc.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0j5tpaf1fb-{0}-yiquol1hlc-yiquol1hlc.gz' -2026-01-28 14:14:11.878 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.878 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Application.Contracts.yiquol1hlc.pdb - 200 18373 application/octet-stream 3.0578ms -2026-01-28 14:14:11.885 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Domain.Shared.vduqctl6j9.pdb - null null -2026-01-28 14:14:11.886 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.886 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.886 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.886 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.886 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.886 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.886 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.886 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.886 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.886 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.886 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.886 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.886 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.886 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.887 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.887 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.887 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.887 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.887 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.887 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.887 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.887 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.888 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Domain.Shared.vduqctl6j9.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c9ti4wxngh-{0}-vduqctl6j9-vduqctl6j9.gz' -2026-01-28 14:14:11.888 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.888 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Domain.Shared.vduqctl6j9.pdb - 200 16501 application/octet-stream 2.6714ms -2026-01-28 14:14:11.895 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.HttpApi.Client.3dsrqtlur0.pdb - null null -2026-01-28 14:14:11.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.895 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.895 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.896 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.896 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.896 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.896 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.896 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.896 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.896 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.896 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.896 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.896 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.896 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.896 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.896 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.896 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.896 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.896 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.896 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.896 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.897 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.898 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.HttpApi.Client.3dsrqtlur0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7d7e24takc-{0}-3dsrqtlur0-3dsrqtlur0.gz' -2026-01-28 14:14:11.898 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.898 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.HttpApi.Client.3dsrqtlur0.pdb - 200 18361 application/octet-stream 3.3436ms -2026-01-28 14:14:11.904 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.RemoteServices.f0xptgiufw.pdb - null null -2026-01-28 14:14:11.904 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.904 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.905 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.905 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.905 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.905 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.905 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.905 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.905 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.905 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.905 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.905 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.905 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.905 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.905 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.905 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.905 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.905 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.906 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.906 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.RemoteServices.f0xptgiufw.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uib6a0l2w6-{0}-f0xptgiufw-f0xptgiufw.gz' -2026-01-28 14:14:11.906 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.907 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.RemoteServices.f0xptgiufw.pdb - 200 16053 application/octet-stream 2.6415ms -2026-01-28 14:14:11.913 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Security.zhp0sm48kb.pdb - null null -2026-01-28 14:14:11.914 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.914 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.914 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.914 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.914 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.914 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.914 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.914 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.914 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.914 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.915 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.915 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.915 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.915 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.915 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.915 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.915 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.915 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.915 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.915 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.915 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.915 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.916 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Security.zhp0sm48kb.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sx6n9iy4yj-{0}-zhp0sm48kb-zhp0sm48kb.gz' -2026-01-28 14:14:11.916 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.917 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Security.zhp0sm48kb.pdb - 200 29941 application/octet-stream 3.388ms -2026-01-28 14:14:11.922 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Serialization.iselyci50i.pdb - null null -2026-01-28 14:14:11.922 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.922 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.922 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.922 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.922 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.923 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.923 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.923 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.923 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.923 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.923 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.923 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.923 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.923 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.923 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.924 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Serialization.iselyci50i.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ohz7m9cvuj-{0}-iselyci50i-iselyci50i.gz' -2026-01-28 14:14:11.924 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.924 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Serialization.iselyci50i.pdb - 200 13901 application/octet-stream 2.5903ms -2026-01-28 14:14:11.931 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Application.Contracts.oa8ze5tkwx.pdb - null null -2026-01-28 14:14:11.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.932 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.932 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.932 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.932 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.932 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.932 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.932 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.932 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.932 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.932 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.932 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.932 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.932 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.932 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.932 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.932 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.932 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.932 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.932 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.932 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.933 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.934 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Application.Contracts.oa8ze5tkwx.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n5hx9tj0h8-{0}-oa8ze5tkwx-oa8ze5tkwx.gz' -2026-01-28 14:14:11.934 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.934 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Application.Contracts.oa8ze5tkwx.pdb - 200 17249 application/octet-stream 2.8893ms -2026-01-28 14:14:11.939 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Domain.Shared.rb0zy7dgue.pdb - null null -2026-01-28 14:14:11.939 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.939 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.940 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.940 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.940 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.940 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.940 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.940 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.940 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.940 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.940 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.940 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.940 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.940 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.940 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.940 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.940 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.940 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.940 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.940 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.940 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.941 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.941 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Domain.Shared.rb0zy7dgue.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gpxmodrted-{0}-rb0zy7dgue-rb0zy7dgue.gz' -2026-01-28 14:14:11.941 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.942 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Domain.Shared.rb0zy7dgue.pdb - 200 15881 application/octet-stream 2.7689ms -2026-01-28 14:14:11.948 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.HttpApi.Client.219qgzx23p.pdb - null null -2026-01-28 14:14:11.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.949 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.949 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.949 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.949 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.949 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.949 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.950 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.950 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.950 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.950 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.950 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.950 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.950 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.950 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.951 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.HttpApi.Client.219qgzx23p.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vwkga7y8v6-{0}-219qgzx23p-219qgzx23p.gz' -2026-01-28 14:14:11.951 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.951 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.HttpApi.Client.219qgzx23p.pdb - 200 17273 application/octet-stream 2.9203ms -2026-01-28 14:14:11.956 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Settings.zg210hgmt5.pdb - null null -2026-01-28 14:14:11.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.957 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.957 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.957 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.957 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.957 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.957 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.958 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.958 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.958 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.958 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.958 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.958 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.958 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.958 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.959 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Settings.zg210hgmt5.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\69ib14dhz4-{0}-zg210hgmt5-zg210hgmt5.gz' -2026-01-28 14:14:11.959 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.959 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Settings.zg210hgmt5.pdb - 200 24709 application/octet-stream 2.6188ms -2026-01-28 14:14:11.965 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Application.Contracts.2kqwaqfq07.pdb - null null -2026-01-28 14:14:11.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.966 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.966 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.966 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.966 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.966 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.966 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.966 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.966 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.966 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.966 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.966 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.966 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.966 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.966 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.966 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.966 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.966 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.967 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Application.Contracts.2kqwaqfq07.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\usk06ilw8g-{0}-2kqwaqfq07-2kqwaqfq07.gz' -2026-01-28 14:14:11.967 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.967 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Application.Contracts.2kqwaqfq07.pdb - 200 16305 application/octet-stream 2.6034ms -2026-01-28 14:14:11.973 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Domain.Shared.8e6fpjlw3z.pdb - null null -2026-01-28 14:14:11.973 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.973 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.974 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.974 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.974 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.974 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.974 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.974 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.974 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.974 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.974 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.974 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.974 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.974 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.974 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.974 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.974 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.974 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.974 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.974 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.974 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.975 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.975 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Domain.Shared.8e6fpjlw3z.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\byh2ge6bdr-{0}-8e6fpjlw3z-8e6fpjlw3z.gz' -2026-01-28 14:14:11.975 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.976 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Domain.Shared.8e6fpjlw3z.pdb - 200 15609 application/octet-stream 2.6832ms -2026-01-28 14:14:11.982 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.HttpApi.Client.0ep6vejlyv.pdb - null null -2026-01-28 14:14:11.982 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.983 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.983 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.983 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.983 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.984 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.984 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.984 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.984 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.984 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.984 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.985 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.HttpApi.Client.0ep6vejlyv.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b6ncobn1go-{0}-0ep6vejlyv-0ep6vejlyv.gz' -2026-01-28 14:14:11.985 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.985 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.HttpApi.Client.0ep6vejlyv.pdb - 200 17253 application/octet-stream 2.6792ms -2026-01-28 14:14:11.991 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Threading.ltl7sj60qd.pdb - null null -2026-01-28 14:14:11.991 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.991 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:11.991 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:11.991 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:11.991 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.992 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:11.992 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:11.992 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:11.992 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:11.992 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:11.992 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:11.992 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.992 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:11.992 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:11.992 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:11.992 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:11.992 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:11.992 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:11.992 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:11.992 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:11.992 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:11.992 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.993 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Threading.ltl7sj60qd.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\m4kji2jf2d-{0}-ltl7sj60qd-ltl7sj60qd.gz' -2026-01-28 14:14:11.993 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:11.993 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Threading.ltl7sj60qd.pdb - 200 22745 application/octet-stream 2.5632ms -2026-01-28 14:14:12.001 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Timing.4ite7giifl.pdb - null null -2026-01-28 14:14:12.001 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.001 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.002 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.002 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.002 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.002 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.002 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.002 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.002 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.002 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.002 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.002 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.002 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.002 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.003 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.004 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Timing.4ite7giifl.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ku2s5mtpx-{0}-4ite7giifl-4ite7giifl.gz' -2026-01-28 14:14:12.004 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.004 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Timing.4ite7giifl.pdb - 200 17233 application/octet-stream 3.0799ms -2026-01-28 14:14:12.010 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.hbvsia4uct.pdb - null null -2026-01-28 14:14:12.010 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.011 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.011 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.012 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.012 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.012 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.012 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.012 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.012 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.012 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.012 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.013 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.UI.hbvsia4uct.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ojvava7kjz-{0}-hbvsia4uct-hbvsia4uct.gz' -2026-01-28 14:14:12.013 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.013 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.hbvsia4uct.pdb - 200 15269 application/octet-stream 3.2217ms -2026-01-28 14:14:12.019 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.Navigation.xd013kg4jh.pdb - null null -2026-01-28 14:14:12.020 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.020 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.020 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.020 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.020 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.020 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.020 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.020 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.020 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.020 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.020 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.020 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.020 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.020 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.021 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.021 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.021 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.021 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.021 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.021 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.021 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.021 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.022 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.UI.Navigation.xd013kg4jh.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\opi85np659-{0}-xd013kg4jh-xd013kg4jh.gz' -2026-01-28 14:14:12.022 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.022 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.Navigation.xd013kg4jh.pdb - 200 25665 application/octet-stream 2.3299ms -2026-01-28 14:14:12.027 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Uow.re76cfcetz.pdb - null null -2026-01-28 14:14:12.028 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.028 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.028 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.028 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.028 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.028 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.028 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.029 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.029 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.029 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.029 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.029 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.029 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.029 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.029 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.029 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.029 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.029 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.029 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.029 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.029 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.029 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.030 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Uow.re76cfcetz.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\37xxpsk7fy-{0}-re76cfcetz-re76cfcetz.gz' -2026-01-28 14:14:12.030 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.030 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Uow.re76cfcetz.pdb - 200 26921 application/octet-stream 3.1268ms -2026-01-28 14:14:12.037 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Abstractions.8nynefv6wf.pdb - null null -2026-01-28 14:14:12.037 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.037 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.037 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.037 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.037 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.038 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.038 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.038 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.038 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.038 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.038 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.038 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.038 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.038 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.038 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.038 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.038 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.038 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.038 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.038 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.038 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.038 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.039 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Users.Abstractions.8nynefv6wf.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\02tit97twy-{0}-8nynefv6wf-8nynefv6wf.gz' -2026-01-28 14:14:12.039 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.039 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Abstractions.8nynefv6wf.pdb - 200 16949 application/octet-stream 2.6253ms -2026-01-28 14:14:12.045 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Domain.Shared.l4ascx0wfo.pdb - null null -2026-01-28 14:14:12.045 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.045 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.045 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.045 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.045 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.046 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.046 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.046 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.046 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.046 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.046 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.046 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.046 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.046 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.047 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.048 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Users.Domain.Shared.l4ascx0wfo.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\i5q2ei5dis-{0}-l4ascx0wfo-l4ascx0wfo.gz' -2026-01-28 14:14:12.048 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.048 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Domain.Shared.l4ascx0wfo.pdb - 200 13285 application/octet-stream 3.0856ms -2026-01-28 14:14:12.054 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.ksfguea92v.pdb - null null -2026-01-28 14:14:12.054 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.054 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.054 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.054 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.054 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.055 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.055 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.055 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.055 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.055 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.055 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.055 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.055 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.055 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.055 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.055 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.055 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.055 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.055 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.055 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.055 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.055 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.056 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Validation.ksfguea92v.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wypl5pd007-{0}-ksfguea92v-ksfguea92v.gz' -2026-01-28 14:14:12.056 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.056 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.ksfguea92v.pdb - 200 24513 application/octet-stream 2.5496ms -2026-01-28 14:14:12.062 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.Abstractions.zjvjxeb6lj.pdb - null null -2026-01-28 14:14:12.062 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.062 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.062 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.062 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.062 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.063 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.063 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.063 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.063 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.063 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.063 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.063 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.063 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.063 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.063 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.063 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.063 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.063 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.063 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.063 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.063 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.063 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.065 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Validation.Abstractions.zjvjxeb6lj.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mb6vj9j06o-{0}-zjvjxeb6lj-zjvjxeb6lj.gz' -2026-01-28 14:14:12.065 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.065 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.Abstractions.zjvjxeb6lj.pdb - 200 14137 application/octet-stream 3.1928ms -2026-01-28 14:14:12.071 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.VirtualFileSystem.kcqfs0t7tk.pdb - null null -2026-01-28 14:14:12.071 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.071 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.071 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.071 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.071 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.072 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.072 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.072 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.072 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.072 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.072 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.072 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.072 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.072 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.072 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.072 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.072 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.072 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.072 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.072 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.072 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.072 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.073 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.VirtualFileSystem.kcqfs0t7tk.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9vnkhoiruq-{0}-kcqfs0t7tk-kcqfs0t7tk.gz' -2026-01-28 14:14:12.073 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.073 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.VirtualFileSystem.kcqfs0t7tk.pdb - 200 21449 application/octet-stream 2.4101ms -2026-01-28 14:14:12.079 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.2ctxo9q0pu.pdb - null null -2026-01-28 14:14:12.080 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.080 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.080 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.080 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.080 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.081 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.081 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.081 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.081 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.081 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.081 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.081 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.081 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.081 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.081 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.081 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.081 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.081 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.081 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.081 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.081 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.082 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.083 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.2ctxo9q0pu.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\21kkcfw31s-{0}-2ctxo9q0pu-2ctxo9q0pu.gz' -2026-01-28 14:14:12.083 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.083 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.2ctxo9q0pu.pdb - 200 32145 application/octet-stream 3.64ms -2026-01-28 14:14:12.089 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Autofac.le1wnuzdja.wasm - null null -2026-01-28 14:14:12.090 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.090 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.090 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.090 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.090 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.091 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.091 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.091 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.091 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.091 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.091 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.091 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.091 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.091 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.092 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.095 +03:00 [INF] Sending file. Request path: '_framework/Autofac.le1wnuzdja.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\le2bmj2hd0-{0}-le1wnuzdja-le1wnuzdja.gz' -2026-01-28 14:14:12.095 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.095 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Autofac.le1wnuzdja.wasm - 200 375661 application/wasm 5.7818ms -2026-01-28 14:14:12.170 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Autofac.Extensions.DependencyInjection.slmisa3m0h.wasm - null null -2026-01-28 14:14:12.171 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.171 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.171 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.171 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.171 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.172 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.172 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.172 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.172 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.172 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.172 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.172 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.172 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.172 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.172 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.173 +03:00 [INF] Sending file. Request path: '_framework/Autofac.Extensions.DependencyInjection.slmisa3m0h.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4h1lb8bivh-{0}-slmisa3m0h-slmisa3m0h.gz' -2026-01-28 14:14:12.173 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.174 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Autofac.Extensions.DependencyInjection.slmisa3m0h.wasm - 200 28470 application/wasm 3.0961ms -2026-01-28 14:14:12.181 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Autofac.Extras.DynamicProxy.tlrq82knod.wasm - null null -2026-01-28 14:14:12.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.183 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.183 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.183 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.183 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.183 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.183 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.183 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.183 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.183 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.183 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.184 +03:00 [INF] Sending file. Request path: '_framework/Autofac.Extras.DynamicProxy.tlrq82knod.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5nm56h6008-{0}-tlrq82knod-tlrq82knod.gz' -2026-01-28 14:14:12.184 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.185 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Autofac.Extras.DynamicProxy.tlrq82knod.wasm - 200 20278 application/wasm 3.9016ms -2026-01-28 14:14:12.192 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Castle.Core.dr7ya1fwgr.wasm - null null -2026-01-28 14:14:12.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.194 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.194 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.194 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.194 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.194 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.194 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.195 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.195 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.195 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.195 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.195 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.195 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.195 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.195 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.198 +03:00 [INF] Sending file. Request path: '_framework/Castle.Core.dr7ya1fwgr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mehy9ugib8-{0}-dr7ya1fwgr-dr7ya1fwgr.gz' -2026-01-28 14:14:12.198 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.198 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Castle.Core.dr7ya1fwgr.wasm - 200 388461 application/wasm 5.9104ms -2026-01-28 14:14:12.205 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Castle.Core.AsyncInterceptor.phbi0db4mk.wasm - null null -2026-01-28 14:14:12.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.206 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.206 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.206 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.206 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.206 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.206 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.207 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.207 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.207 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.207 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.207 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.207 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.207 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.207 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.207 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.207 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.207 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.207 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.208 +03:00 [INF] Sending file. Request path: '_framework/Castle.Core.AsyncInterceptor.phbi0db4mk.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dnds4j2x25-{0}-phbi0db4mk-phbi0db4mk.gz' -2026-01-28 14:14:12.208 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.208 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Castle.Core.AsyncInterceptor.phbi0db4mk.wasm - 200 19254 application/wasm 3.0687ms -2026-01-28 14:14:12.216 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Duende.IdentityModel.w8uizqq8rq.wasm - null null -2026-01-28 14:14:12.217 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.217 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.217 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.217 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.217 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.217 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.217 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.217 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.218 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.218 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.218 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.218 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.218 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.218 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.218 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.218 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.218 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.220 +03:00 [INF] Sending file. Request path: '_framework/Duende.IdentityModel.w8uizqq8rq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2h3cgpc6ac-{0}-w8uizqq8rq-w8uizqq8rq.gz' -2026-01-28 14:14:12.220 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.221 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Duende.IdentityModel.w8uizqq8rq.wasm - 200 202580 application/wasm 4.5048ms -2026-01-28 14:14:12.227 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/JetBrains.Annotations.30nyqsrum5.wasm - null null -2026-01-28 14:14:12.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.228 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.229 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.229 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.229 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.229 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.229 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.229 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.229 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.229 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.229 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.230 +03:00 [INF] Sending file. Request path: '_framework/JetBrains.Annotations.30nyqsrum5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6sdzj3kgop-{0}-30nyqsrum5-30nyqsrum5.gz' -2026-01-28 14:14:12.231 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.231 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/JetBrains.Annotations.30nyqsrum5.wasm - 200 122181 application/wasm 3.4248ms -2026-01-28 14:14:12.236 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Authorization.f7yamg8acn.wasm - null null -2026-01-28 14:14:12.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.237 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.237 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.237 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.237 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.237 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.237 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.238 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.238 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.238 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.238 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.238 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.238 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.238 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.238 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.239 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Authorization.f7yamg8acn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\y8t8qzdrbk-{0}-f7yamg8acn-f7yamg8acn.gz' -2026-01-28 14:14:12.239 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.239 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Authorization.f7yamg8acn.wasm - 200 45371 application/wasm 3.0825ms -2026-01-28 14:14:12.250 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.i180xx2qq9.wasm - null null -2026-01-28 14:14:12.251 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.251 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.251 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.251 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.251 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.251 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.251 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.251 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.251 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.251 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.251 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.251 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.251 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.251 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.251 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.251 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.251 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.251 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.251 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.251 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.251 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.252 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.255 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.i180xx2qq9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\00mrq6s2ss-{0}-i180xx2qq9-i180xx2qq9.gz' -2026-01-28 14:14:12.255 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.255 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.i180xx2qq9.wasm - 200 388973 application/wasm 4.9161ms -2026-01-28 14:14:12.267 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Authorization.8nosel0t6a.wasm - null null -2026-01-28 14:14:12.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.268 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.268 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.268 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.268 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.268 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.269 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.269 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.269 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.269 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.269 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.269 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.269 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.269 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.269 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.270 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.Authorization.8nosel0t6a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b9vfzkzuzt-{0}-8nosel0t6a-8nosel0t6a.gz' -2026-01-28 14:14:12.270 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.270 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Authorization.8nosel0t6a.wasm - 200 23862 application/wasm 2.9645ms -2026-01-28 14:14:12.276 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Forms.au92kshad9.wasm - null null -2026-01-28 14:14:12.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.277 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.277 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.277 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.277 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.277 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.277 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.278 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.278 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.278 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.278 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.278 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.278 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.278 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.278 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.279 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.Forms.au92kshad9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0l9h2m1r4h-{0}-au92kshad9-au92kshad9.gz' -2026-01-28 14:14:12.279 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.279 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Forms.au92kshad9.wasm - 200 37691 application/wasm 3.3666ms -2026-01-28 14:14:12.285 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Web.gl9seasc22.wasm - null null -2026-01-28 14:14:12.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.286 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.286 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.286 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.286 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.287 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.287 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.287 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.287 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.287 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.287 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.287 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.287 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.287 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.287 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.287 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.287 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.287 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.287 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.287 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.287 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.287 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.289 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.Web.gl9seasc22.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fqoi4if8m2-{0}-gl9seasc22-gl9seasc22.gz' -2026-01-28 14:14:12.289 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.289 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Web.gl9seasc22.wasm - 200 179023 application/wasm 3.9211ms -2026-01-28 14:14:12.295 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.9qaxkpf6y7.wasm - null null -2026-01-28 14:14:12.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.296 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.296 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.296 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.296 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.296 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.296 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.297 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.297 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.297 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.297 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.297 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.297 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.297 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.297 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.298 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.WebAssembly.9qaxkpf6y7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4vwfdqnp17-{0}-9qaxkpf6y7-9qaxkpf6y7.gz' -2026-01-28 14:14:12.298 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.299 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.9qaxkpf6y7.wasm - 200 155978 application/wasm 3.5328ms -2026-01-28 14:14:12.304 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.q8d1vzef3m.wasm - null null -2026-01-28 14:14:12.305 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.305 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.305 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.305 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.305 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.305 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.305 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.305 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.305 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.305 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.305 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.305 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.305 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.305 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.306 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.306 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.306 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.306 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.306 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.306 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.306 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.306 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.307 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.q8d1vzef3m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\19o2at4dip-{0}-q8d1vzef3m-q8d1vzef3m.gz' -2026-01-28 14:14:12.307 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.307 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.q8d1vzef3m.wasm - 200 96064 application/wasm 3.5034ms -2026-01-28 14:14:12.312 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Metadata.begmnasal1.wasm - null null -2026-01-28 14:14:12.313 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.313 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.313 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.313 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.313 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.313 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.313 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.313 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.313 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.313 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.313 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.313 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.313 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.313 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.313 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.314 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.314 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.314 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.314 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.314 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.314 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.314 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.314 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Metadata.begmnasal1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\94aawuaijs-{0}-begmnasal1-begmnasal1.gz' -2026-01-28 14:14:12.314 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.315 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Metadata.begmnasal1.wasm - 200 5942 application/wasm 2.4804ms -2026-01-28 14:14:12.320 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.WebUtilities.6cgd80d0to.wasm - null null -2026-01-28 14:14:12.320 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.321 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.321 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.321 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.321 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.321 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.321 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.321 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.321 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.321 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.321 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.321 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.321 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.321 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.321 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.321 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.321 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.321 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.322 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.WebUtilities.6cgd80d0to.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sk2xioyf5m-{0}-6cgd80d0to-6cgd80d0to.gz' -2026-01-28 14:14:12.322 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.322 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.WebUtilities.6cgd80d0to.wasm - 200 97088 application/wasm 2.915ms -2026-01-28 14:14:12.330 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Bcl.AsyncInterfaces.a6wsrpgfw5.wasm - null null -2026-01-28 14:14:12.330 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.330 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.331 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.331 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.331 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.331 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.331 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.331 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.331 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.331 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.331 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.331 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.331 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.331 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.332 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.332 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Bcl.AsyncInterfaces.a6wsrpgfw5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\efezora84v-{0}-a6wsrpgfw5-a6wsrpgfw5.gz' -2026-01-28 14:14:12.332 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.332 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Bcl.AsyncInterfaces.a6wsrpgfw5.wasm - 200 9526 application/wasm 2.5974ms -2026-01-28 14:14:12.337 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.u1l3a5juxx.wasm - null null -2026-01-28 14:14:12.339 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.339 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.339 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.339 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.339 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.339 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.339 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.339 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.339 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.339 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.339 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.339 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.339 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.339 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.339 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.339 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.339 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.339 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.339 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.339 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.339 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.340 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.341 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.u1l3a5juxx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wloi09r5kq-{0}-u1l3a5juxx-u1l3a5juxx.gz' -2026-01-28 14:14:12.341 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.341 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.u1l3a5juxx.wasm - 200 56123 application/wasm 3.2757ms -2026-01-28 14:14:12.346 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Abstractions.vvlexwbaez.wasm - null null -2026-01-28 14:14:12.346 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.346 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.346 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.346 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.346 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.347 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.347 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.347 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.347 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.347 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.347 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.347 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.347 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.347 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.347 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.347 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.347 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.347 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.347 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.347 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.347 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.347 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.348 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Caching.Abstractions.vvlexwbaez.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b1crvod4be-{0}-vvlexwbaez-vvlexwbaez.gz' -2026-01-28 14:14:12.348 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.348 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Abstractions.vvlexwbaez.wasm - 200 27446 application/wasm 2.431ms -2026-01-28 14:14:12.354 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Hybrid.u0s8zqcpy7.wasm - null null -2026-01-28 14:14:12.355 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.355 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.355 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.355 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.355 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.355 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.355 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.355 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.355 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.355 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.355 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.355 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.355 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.355 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.356 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.356 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.356 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.356 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.356 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.356 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.356 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.356 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.357 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Caching.Hybrid.u0s8zqcpy7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\t7frkttiob-{0}-u0s8zqcpy7-u0s8zqcpy7.gz' -2026-01-28 14:14:12.357 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.357 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Hybrid.u0s8zqcpy7.wasm - 200 85824 application/wasm 3.1573ms -2026-01-28 14:14:12.362 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Memory.6z3ajjz4f1.wasm - null null -2026-01-28 14:14:12.363 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.363 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.363 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.363 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.363 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.363 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.363 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.363 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.363 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.363 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.363 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.363 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.363 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.363 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.364 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.364 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.364 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.364 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.364 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.364 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.364 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.364 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.365 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Caching.Memory.6z3ajjz4f1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6gi3ua4ioz-{0}-6z3ajjz4f1-6z3ajjz4f1.gz' -2026-01-28 14:14:12.365 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.365 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Memory.6z3ajjz4f1.wasm - 200 37691 application/wasm 2.8034ms -2026-01-28 14:14:12.371 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.x8wh4xd62i.wasm - null null -2026-01-28 14:14:12.372 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.372 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.372 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.372 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.372 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.372 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.372 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.372 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.372 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.372 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.372 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.372 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.372 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.372 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.373 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.373 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.373 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.373 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.373 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.373 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.373 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.373 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.374 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.x8wh4xd62i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\h1kacpcskm-{0}-x8wh4xd62i-x8wh4xd62i.gz' -2026-01-28 14:14:12.374 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.374 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.x8wh4xd62i.wasm - 200 34619 application/wasm 3.4717ms -2026-01-28 14:14:12.381 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Abstractions.sgloa63pwd.wasm - null null -2026-01-28 14:14:12.382 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.382 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.382 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.383 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.383 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.383 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.383 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.383 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.383 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.383 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.383 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.383 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.383 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.383 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.383 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.383 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.383 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.383 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.383 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.383 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.383 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.383 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.384 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.Abstractions.sgloa63pwd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\zxi0ykhieh-{0}-sgloa63pwd-sgloa63pwd.gz' -2026-01-28 14:14:12.384 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.385 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Abstractions.sgloa63pwd.wasm - 200 18230 application/wasm 3.0463ms -2026-01-28 14:14:12.391 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Binder.3jwzw3qxt4.wasm - null null -2026-01-28 14:14:12.392 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.392 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.392 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.392 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.392 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.392 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.392 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.392 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.392 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.392 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.392 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.392 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.392 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.392 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.393 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.393 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.393 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.393 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.393 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.393 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.393 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.393 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.394 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.Binder.3jwzw3qxt4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ko014cnbr7-{0}-3jwzw3qxt4-3jwzw3qxt4.gz' -2026-01-28 14:14:12.394 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.394 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Binder.3jwzw3qxt4.wasm - 200 33083 application/wasm 3.4384ms -2026-01-28 14:14:12.400 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.CommandLine.z1qo7xx5ru.wasm - null null -2026-01-28 14:14:12.401 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.401 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.401 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.401 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.401 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.401 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.402 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.402 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.402 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.402 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.402 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.402 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.402 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.402 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.402 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.402 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.402 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.402 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.402 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.402 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.402 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.402 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.403 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.CommandLine.z1qo7xx5ru.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0qcnzm5lmb-{0}-z1qo7xx5ru-z1qo7xx5ru.gz' -2026-01-28 14:14:12.403 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.403 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.CommandLine.z1qo7xx5ru.wasm - 200 15158 application/wasm 2.9052ms -2026-01-28 14:14:12.409 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.EnvironmentVariables.3gcxsk3zbu.wasm - null null -2026-01-28 14:14:12.409 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.410 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.410 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.410 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.410 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.410 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.410 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.411 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.411 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.411 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.411 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.411 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.411 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.411 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.411 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.412 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.EnvironmentVariables.3gcxsk3zbu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\urvjz3sczp-{0}-3gcxsk3zbu-3gcxsk3zbu.gz' -2026-01-28 14:14:12.412 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.412 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.EnvironmentVariables.3gcxsk3zbu.wasm - 200 11574 application/wasm 3.4933ms -2026-01-28 14:14:12.419 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.FileExtensions.phra2kqghi.wasm - null null -2026-01-28 14:14:12.419 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.419 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.420 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.420 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.420 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.420 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.420 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.420 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.420 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.420 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.420 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.420 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.420 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.420 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.420 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.420 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.420 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.420 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.420 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.420 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.420 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.420 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.421 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.FileExtensions.phra2kqghi.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6yhtz7i0uq-{0}-phra2kqghi-phra2kqghi.gz' -2026-01-28 14:14:12.421 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.421 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.FileExtensions.phra2kqghi.wasm - 200 18230 application/wasm 2.7631ms -2026-01-28 14:14:12.427 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Json.9udmvturlf.wasm - null null -2026-01-28 14:14:12.428 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.428 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.428 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.428 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.428 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.428 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.428 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.428 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.428 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.428 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.428 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.428 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.428 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.428 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.429 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.429 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.429 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.429 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.429 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.429 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.429 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.429 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.430 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.Json.9udmvturlf.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jn8nx9ltxb-{0}-9udmvturlf-9udmvturlf.gz' -2026-01-28 14:14:12.430 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.430 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Json.9udmvturlf.wasm - 200 17718 application/wasm 2.7362ms -2026-01-28 14:14:12.435 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.UserSecrets.86yue58ssu.wasm - null null -2026-01-28 14:14:12.436 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.436 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.436 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.436 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.436 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.437 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.437 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.437 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.437 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.437 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.437 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.437 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.437 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.437 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.437 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.437 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.437 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.437 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.437 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.437 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.437 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.437 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.438 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.UserSecrets.86yue58ssu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wlq0vssna7-{0}-86yue58ssu-86yue58ssu.gz' -2026-01-28 14:14:12.438 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.438 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.UserSecrets.86yue58ssu.wasm - 200 16182 application/wasm 3.2951ms -2026-01-28 14:14:12.445 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.92ulj88j6e.wasm - null null -2026-01-28 14:14:12.445 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.445 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.446 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.446 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.446 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.446 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.446 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.446 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.446 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.446 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.446 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.446 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.446 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.446 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.446 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.446 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.446 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.446 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.446 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.446 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.447 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.447 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.449 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.DependencyInjection.92ulj88j6e.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ap6jjl5cdc-{0}-92ulj88j6e-92ulj88j6e.gz' -2026-01-28 14:14:12.449 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.449 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.92ulj88j6e.wasm - 200 85312 application/wasm 4.2519ms -2026-01-28 14:14:12.456 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.qzg75988t9.wasm - null null -2026-01-28 14:14:12.456 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.457 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.457 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.457 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.457 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.457 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.457 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.457 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.457 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.457 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.457 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.457 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.457 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.457 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.457 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.457 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.457 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.458 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.458 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.458 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.458 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.458 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.459 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.DependencyInjection.Abstractions.qzg75988t9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2yinc5vl42-{0}-qzg75988t9-qzg75988t9.gz' -2026-01-28 14:14:12.459 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.459 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.qzg75988t9.wasm - 200 55611 application/wasm 3.3285ms -2026-01-28 14:14:12.465 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.tgzcelqpkb.wasm - null null -2026-01-28 14:14:12.466 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.466 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.466 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.466 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.466 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.466 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.466 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.466 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.466 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.466 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.466 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.466 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.466 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.466 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.467 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.467 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.467 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.467 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.467 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.467 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.467 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.467 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.468 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Diagnostics.tgzcelqpkb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\q77258df46-{0}-tgzcelqpkb-tgzcelqpkb.gz' -2026-01-28 14:14:12.468 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.468 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.tgzcelqpkb.wasm - 200 25910 application/wasm 3.2417ms -2026-01-28 14:14:12.474 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.Abstractions.hq61ozpvxa.wasm - null null -2026-01-28 14:14:12.475 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.475 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.475 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.475 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.475 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.475 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.475 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.475 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.475 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.475 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.475 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.475 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.475 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.475 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.476 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.476 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.476 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.476 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.476 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.476 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.476 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.476 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.477 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Diagnostics.Abstractions.hq61ozpvxa.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\hlwf1zkx1t-{0}-hq61ozpvxa-hq61ozpvxa.gz' -2026-01-28 14:14:12.477 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.477 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.Abstractions.hq61ozpvxa.wasm - 200 20790 application/wasm 3.1236ms -2026-01-28 14:14:12.482 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Abstractions.wbhloeatw3.wasm - null null -2026-01-28 14:14:12.483 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.483 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.483 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.483 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.483 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.483 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.483 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.483 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.483 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.483 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.483 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.483 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.483 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.483 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.484 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.484 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.484 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.484 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.484 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.484 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.484 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.484 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.485 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Abstractions.wbhloeatw3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\hwi4k0i86u-{0}-wbhloeatw3-wbhloeatw3.gz' -2026-01-28 14:14:12.485 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.485 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Abstractions.wbhloeatw3.wasm - 200 13110 application/wasm 2.9497ms -2026-01-28 14:14:12.490 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Composite.z8bwpsdnc0.wasm - null null -2026-01-28 14:14:12.490 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.491 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.491 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.491 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.491 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.491 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.491 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.491 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.491 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.491 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.491 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.491 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.491 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.491 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.492 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.492 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Composite.z8bwpsdnc0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9or5ity2wj-{0}-z8bwpsdnc0-z8bwpsdnc0.gz' -2026-01-28 14:14:12.492 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.492 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Composite.z8bwpsdnc0.wasm - 200 8502 application/wasm 2.5998ms -2026-01-28 14:14:12.498 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Embedded.ptqvg1m34t.wasm - null null -2026-01-28 14:14:12.499 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.499 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.499 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.499 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.499 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.499 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.499 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.499 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.499 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.499 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.499 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.499 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.499 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.499 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.499 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.499 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.499 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.500 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.500 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.500 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.500 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.500 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.500 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Embedded.ptqvg1m34t.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gud3t43je0-{0}-ptqvg1m34t-ptqvg1m34t.gz' -2026-01-28 14:14:12.500 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.501 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Embedded.ptqvg1m34t.wasm - 200 23350 application/wasm 2.6605ms -2026-01-28 14:14:12.506 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Physical.y5k56zvg10.wasm - null null -2026-01-28 14:14:12.507 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.507 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.507 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.507 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.507 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.507 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.507 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.507 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.507 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.507 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.507 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.507 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.507 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.507 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.507 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.507 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.507 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.508 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.508 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.508 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.508 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.508 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.509 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Physical.y5k56zvg10.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\02df65jx0j-{0}-y5k56zvg10-y5k56zvg10.gz' -2026-01-28 14:14:12.509 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.509 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Physical.y5k56zvg10.wasm - 200 35131 application/wasm 2.7584ms -2026-01-28 14:14:12.514 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileSystemGlobbing.4cqycihgg0.wasm - null null -2026-01-28 14:14:12.515 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.515 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.515 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.515 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.515 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.515 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.515 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.515 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.515 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.515 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.515 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.515 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.515 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.515 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.516 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.516 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.516 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.516 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.516 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.516 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.516 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.516 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.517 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileSystemGlobbing.4cqycihgg0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4328gy858z-{0}-4cqycihgg0-4cqycihgg0.gz' -2026-01-28 14:14:12.517 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.517 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileSystemGlobbing.4cqycihgg0.wasm - 200 37691 application/wasm 3.1989ms -2026-01-28 14:14:12.522 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Hosting.Abstractions.5v78u2d057.wasm - null null -2026-01-28 14:14:12.523 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.523 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.523 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.523 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.523 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.523 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.523 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.523 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.523 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.523 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.523 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.523 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.523 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.523 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.524 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.524 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.524 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.524 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.524 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.524 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.524 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.524 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.525 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Hosting.Abstractions.5v78u2d057.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0bjpxbow7h-{0}-5v78u2d057-5v78u2d057.gz' -2026-01-28 14:14:12.525 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.525 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Hosting.Abstractions.5v78u2d057.wasm - 200 43835 application/wasm 2.7635ms -2026-01-28 14:14:12.530 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Http.apre2arxjd.wasm - null null -2026-01-28 14:14:12.531 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.531 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.531 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.531 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.531 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.531 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.531 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.531 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.531 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.531 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.531 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.531 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.531 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.531 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.532 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.532 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.532 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.532 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.532 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.532 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.532 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.532 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.533 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Http.apre2arxjd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ocorhjn9ks-{0}-apre2arxjd-apre2arxjd.gz' -2026-01-28 14:14:12.533 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.533 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Http.apre2arxjd.wasm - 200 82752 application/wasm 3.4613ms -2026-01-28 14:14:12.539 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.mml9tf1r1w.wasm - null null -2026-01-28 14:14:12.539 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.539 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.540 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.540 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.540 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.540 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.540 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.540 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.540 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.540 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.540 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.540 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.540 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.540 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.540 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.540 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.540 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.540 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.540 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.540 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.540 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.540 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.541 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Localization.mml9tf1r1w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uqdbs11skp-{0}-mml9tf1r1w-mml9tf1r1w.gz' -2026-01-28 14:14:12.541 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.541 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.mml9tf1r1w.wasm - 200 21302 application/wasm 2.5583ms -2026-01-28 14:14:12.546 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.Abstractions.80p7fyumuw.wasm - null null -2026-01-28 14:14:12.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.547 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.547 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.548 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.548 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.548 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.548 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.548 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.548 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.548 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.548 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.549 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Localization.Abstractions.80p7fyumuw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j8jaks8ba9-{0}-80p7fyumuw-80p7fyumuw.gz' -2026-01-28 14:14:12.549 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.549 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.Abstractions.80p7fyumuw.wasm - 200 9014 application/wasm 3.0704ms -2026-01-28 14:14:12.554 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.05o184w673.wasm - null null -2026-01-28 14:14:12.554 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.555 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.555 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.555 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.555 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.555 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.555 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.555 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.555 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.555 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.555 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.555 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.555 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.555 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.556 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.556 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Logging.05o184w673.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1cbwctdp50-{0}-05o184w673-05o184w673.gz' -2026-01-28 14:14:12.556 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.557 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.05o184w673.wasm - 200 41275 application/wasm 2.7286ms -2026-01-28 14:14:12.562 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.Abstractions.hwa38jh90v.wasm - null null -2026-01-28 14:14:12.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.563 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.563 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.563 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.563 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.563 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.563 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.563 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.563 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.563 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.563 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.563 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.563 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.563 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.563 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.563 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.563 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.563 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.563 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.563 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.563 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.564 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.564 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Logging.Abstractions.hwa38jh90v.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\zatd8kwe6z-{0}-hwa38jh90v-hwa38jh90v.gz' -2026-01-28 14:14:12.564 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.564 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.Abstractions.hwa38jh90v.wasm - 200 56635 application/wasm 2.768ms -2026-01-28 14:14:12.569 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.zsk78mkyl2.wasm - null null -2026-01-28 14:14:12.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.570 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.571 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.571 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.571 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.571 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.571 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.571 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.571 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.571 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.571 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.572 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Options.zsk78mkyl2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nx5gv127wz-{0}-zsk78mkyl2-zsk78mkyl2.gz' -2026-01-28 14:14:12.572 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.572 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.zsk78mkyl2.wasm - 200 55099 application/wasm 2.5881ms -2026-01-28 14:14:12.576 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.ConfigurationExtensions.qltknulxmy.wasm - null null -2026-01-28 14:14:12.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.577 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.577 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.577 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.577 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.578 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.578 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.578 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.578 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.578 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.578 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.578 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.578 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.578 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.578 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.579 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Options.ConfigurationExtensions.qltknulxmy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\eycsz92dw7-{0}-qltknulxmy-qltknulxmy.gz' -2026-01-28 14:14:12.579 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.579 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.ConfigurationExtensions.qltknulxmy.wasm - 200 11574 application/wasm 2.8012ms -2026-01-28 14:14:12.584 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Primitives.51b5spqlwz.wasm - null null -2026-01-28 14:14:12.585 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.585 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.585 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.585 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.585 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.585 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.585 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.585 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.585 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.585 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.585 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.585 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.585 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.585 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.586 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.586 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.586 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.586 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.586 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.586 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.586 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.586 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.587 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Primitives.51b5spqlwz.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dtxltxy254-{0}-51b5spqlwz-51b5spqlwz.gz' -2026-01-28 14:14:12.587 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.587 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Primitives.51b5spqlwz.wasm - 200 34619 application/wasm 2.6109ms -2026-01-28 14:14:12.592 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Validation.vibclmvzbq.wasm - null null -2026-01-28 14:14:12.593 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.593 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.593 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.593 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.593 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.593 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.593 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.593 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.593 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.593 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.593 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.593 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.593 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.593 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.593 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.593 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.593 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.593 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.593 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.593 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.594 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.594 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.595 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Validation.vibclmvzbq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wxjaiwsnh4-{0}-vibclmvzbq-vibclmvzbq.gz' -2026-01-28 14:14:12.595 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.595 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Validation.vibclmvzbq.wasm - 200 33083 application/wasm 2.769ms -2026-01-28 14:14:12.600 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Abstractions.fm59ec96sb.wasm - null null -2026-01-28 14:14:12.600 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.600 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.601 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.601 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.601 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.601 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.601 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.601 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.601 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.601 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.601 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.601 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.601 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.601 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.601 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.601 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.601 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.601 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.601 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.601 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.601 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.602 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.602 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.Abstractions.fm59ec96sb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pw25ps676d-{0}-fm59ec96sb-fm59ec96sb.gz' -2026-01-28 14:14:12.602 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.602 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Abstractions.fm59ec96sb.wasm - 200 9014 application/wasm 2.5271ms -2026-01-28 14:14:12.608 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.JsonWebTokens.d706uu8nnf.wasm - null null -2026-01-28 14:14:12.608 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.609 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.609 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.609 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.609 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.609 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.609 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.609 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.609 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.609 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.609 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.609 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.609 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.609 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.609 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.609 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.609 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.609 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.609 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.609 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.609 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.610 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.611 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.JsonWebTokens.d706uu8nnf.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0ly9bxx2uc-{0}-d706uu8nnf-d706uu8nnf.gz' -2026-01-28 14:14:12.611 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.611 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.JsonWebTokens.d706uu8nnf.wasm - 200 161610 application/wasm 3.6936ms -2026-01-28 14:14:12.617 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Logging.lzotatrep2.wasm - null null -2026-01-28 14:14:12.618 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.618 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.618 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.618 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.618 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.618 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.619 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.619 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.619 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.619 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.619 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.619 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.619 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.619 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.619 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.620 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.Logging.lzotatrep2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\az540fuh9f-{0}-lzotatrep2-lzotatrep2.gz' -2026-01-28 14:14:12.620 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.620 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Logging.lzotatrep2.wasm - 200 26422 application/wasm 2.753ms -2026-01-28 14:14:12.625 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Tokens.zeqz59uvkx.wasm - null null -2026-01-28 14:14:12.626 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.626 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.626 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.626 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.626 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.627 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.627 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.627 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.627 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.627 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.627 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.627 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.627 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.627 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.627 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.630 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.Tokens.zeqz59uvkx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pe5jdgvqrx-{0}-zeqz59uvkx-zeqz59uvkx.gz' -2026-01-28 14:14:12.630 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.630 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Tokens.zeqz59uvkx.wasm - 200 374125 application/wasm 4.5275ms -2026-01-28 14:14:12.636 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.kksrzpvoig.wasm - null null -2026-01-28 14:14:12.636 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.636 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.636 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.636 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.636 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.637 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.637 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.637 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.637 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.637 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.637 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.637 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.637 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.637 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.637 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.637 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.637 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.637 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.637 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.637 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.637 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.637 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.638 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.JSInterop.kksrzpvoig.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fulott20a4-{0}-kksrzpvoig-kksrzpvoig.gz' -2026-01-28 14:14:12.638 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.638 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.kksrzpvoig.wasm - 200 64827 application/wasm 2.818ms -2026-01-28 14:14:12.643 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.WebAssembly.9udcqny0aq.wasm - null null -2026-01-28 14:14:12.644 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.644 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.644 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.644 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.644 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.644 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.645 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.645 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.645 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.645 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.645 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.645 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.645 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.645 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.645 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.645 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.645 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.645 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.645 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.645 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.645 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.645 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.646 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.JSInterop.WebAssembly.9udcqny0aq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9m4wklcqem-{0}-9udcqny0aq-9udcqny0aq.gz' -2026-01-28 14:14:12.646 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.646 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.WebAssembly.9udcqny0aq.wasm - 200 14646 application/wasm 2.8324ms -2026-01-28 14:14:12.652 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Net.Http.Headers.dqwvlhacs5.wasm - null null -2026-01-28 14:14:12.653 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.653 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.653 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.653 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.653 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.653 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.653 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.653 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.653 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.653 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.653 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.653 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.653 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.653 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.653 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.653 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.653 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.653 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.654 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.654 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.654 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.654 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.655 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Net.Http.Headers.dqwvlhacs5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\awoyestlxb-{0}-dqwvlhacs5-dqwvlhacs5.gz' -2026-01-28 14:14:12.655 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.655 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Net.Http.Headers.dqwvlhacs5.wasm - 200 75072 application/wasm 3.3007ms -2026-01-28 14:14:12.661 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MudBlazor.0eq8xpu5ec.wasm - null null -2026-01-28 14:14:12.662 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.662 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.662 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.662 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.662 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.662 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.662 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.662 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.662 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.662 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.662 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.662 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.662 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.662 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.663 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.663 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.663 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.663 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.663 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.663 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.663 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.663 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.721 +03:00 [INF] Sending file. Request path: '_framework/MudBlazor.0eq8xpu5ec.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c8dbqtqx23-{0}-0eq8xpu5ec-0eq8xpu5ec.gz' -2026-01-28 14:14:12.721 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.721 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MudBlazor.0eq8xpu5ec.wasm - 200 9246396 application/wasm 60.3577ms -2026-01-28 14:14:12.756 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Context.y5n2fi0oo0.wasm - null null -2026-01-28 14:14:12.756 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.756 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.757 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.757 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.757 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.757 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.757 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.757 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.757 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.757 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.757 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.757 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.757 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.757 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.758 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.759 +03:00 [INF] Sending file. Request path: '_framework/Nito.AsyncEx.Context.y5n2fi0oo0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6cfa8ozy3y-{0}-y5n2fi0oo0-y5n2fi0oo0.gz' -2026-01-28 14:14:12.759 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.759 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Context.y5n2fi0oo0.wasm - 200 13622 application/wasm 3.0848ms -2026-01-28 14:14:12.764 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Tasks.pmw3wnkbvb.wasm - null null -2026-01-28 14:14:12.765 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.765 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.765 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.765 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.765 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.765 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.766 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.766 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.766 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.766 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.766 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.766 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.766 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.766 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.766 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.767 +03:00 [INF] Sending file. Request path: '_framework/Nito.AsyncEx.Tasks.pmw3wnkbvb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pw3yczwgxh-{0}-pmw3wnkbvb-pmw3wnkbvb.gz' -2026-01-28 14:14:12.767 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.767 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Tasks.pmw3wnkbvb.wasm - 200 35643 application/wasm 2.8893ms -2026-01-28 14:14:12.772 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Nito.Disposables.86nxvj1yiv.wasm - null null -2026-01-28 14:14:12.773 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.773 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.773 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.773 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.773 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.773 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.774 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.774 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.774 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.774 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.774 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.774 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.774 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.774 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.774 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.774 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.774 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.774 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.774 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.774 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.774 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.774 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.775 +03:00 [INF] Sending file. Request path: '_framework/Nito.Disposables.86nxvj1yiv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4m6819m7ll-{0}-86nxvj1yiv-86nxvj1yiv.gz' -2026-01-28 14:14:12.775 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.775 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Nito.Disposables.86nxvj1yiv.wasm - 200 22326 application/wasm 2.8381ms -2026-01-28 14:14:12.780 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/NUglify.p1yxori32v.wasm - null null -2026-01-28 14:14:12.781 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.781 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.781 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.781 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.781 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.781 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.781 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.781 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.781 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.781 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.781 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.781 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.781 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.781 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.781 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.781 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.781 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.781 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.781 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.781 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.781 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.782 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.785 +03:00 [INF] Sending file. Request path: '_framework/NUglify.p1yxori32v.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2fi9048uqb-{0}-p1yxori32v-p1yxori32v.gz' -2026-01-28 14:14:12.785 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.785 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/NUglify.p1yxori32v.wasm - 200 637333 application/wasm 5.22ms -2026-01-28 14:14:12.797 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/OpenIddict.Abstractions.xc5u4bcwuv.wasm - null null -2026-01-28 14:14:12.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.798 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.798 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.798 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.798 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.799 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.799 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.799 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.799 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.799 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.799 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.799 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.799 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.799 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.799 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.799 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.799 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.799 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.799 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.799 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.799 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.799 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.803 +03:00 [INF] Sending file. Request path: '_framework/OpenIddict.Abstractions.xc5u4bcwuv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\46s7kaf9kj-{0}-xc5u4bcwuv-xc5u4bcwuv.gz' -2026-01-28 14:14:12.803 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.803 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/OpenIddict.Abstractions.xc5u4bcwuv.wasm - 200 380269 application/wasm 6.1879ms -2026-01-28 14:14:12.815 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Riok.Mapperly.Abstractions.bgo5wowxjs.wasm - null null -2026-01-28 14:14:12.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.817 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.817 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.817 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.817 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.817 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.817 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.818 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.818 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.818 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.818 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.818 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.818 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.818 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.818 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.819 +03:00 [INF] Sending file. Request path: '_framework/Riok.Mapperly.Abstractions.bgo5wowxjs.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3d5qji182j-{0}-bgo5wowxjs-bgo5wowxjs.gz' -2026-01-28 14:14:12.819 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.819 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Riok.Mapperly.Abstractions.bgo5wowxjs.wasm - 200 33083 application/wasm 3.9227ms -2026-01-28 14:14:12.826 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.CodeDom.fbxkfrockh.wasm - null null -2026-01-28 14:14:12.826 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.826 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.827 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.827 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.827 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.827 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.827 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.827 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.827 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.827 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.827 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.827 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.827 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.827 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.827 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.827 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.827 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.827 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.827 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.827 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.827 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.828 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.829 +03:00 [INF] Sending file. Request path: '_framework/System.CodeDom.fbxkfrockh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j53ve7gv1w-{0}-fbxkfrockh-fbxkfrockh.gz' -2026-01-28 14:14:12.829 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.830 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.CodeDom.fbxkfrockh.wasm - 200 174415 application/wasm 3.8503ms -2026-01-28 14:14:12.835 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.EventLog.x6zrz89c6o.wasm - null null -2026-01-28 14:14:12.835 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.835 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.835 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.835 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.835 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.836 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.836 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.836 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.836 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.836 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.836 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.836 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.836 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.836 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.836 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.837 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.EventLog.x6zrz89c6o.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j2puov35am-{0}-x6zrz89c6o-x6zrz89c6o.gz' -2026-01-28 14:14:12.837 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.837 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.EventLog.x6zrz89c6o.wasm - 200 41787 application/wasm 2.7508ms -2026-01-28 14:14:12.842 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IdentityModel.Tokens.Jwt.5tt1rwyygx.wasm - null null -2026-01-28 14:14:12.843 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.843 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.843 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.843 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.843 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.843 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.843 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.843 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.843 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.843 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.843 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.843 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.843 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.843 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.844 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.844 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.844 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.844 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.844 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.844 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.844 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.844 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.845 +03:00 [INF] Sending file. Request path: '_framework/System.IdentityModel.Tokens.Jwt.5tt1rwyygx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tr0pha0myb-{0}-5tt1rwyygx-5tt1rwyygx.gz' -2026-01-28 14:14:12.845 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.845 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IdentityModel.Tokens.Jwt.5tt1rwyygx.wasm - 200 81216 application/wasm 3.2604ms -2026-01-28 14:14:12.850 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.Dynamic.Core.2czhr4esfi.wasm - null null -2026-01-28 14:14:12.851 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.851 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.851 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.851 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.851 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.851 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.851 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.851 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.851 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.852 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.852 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.852 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.852 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.852 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.852 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.852 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.852 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.852 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.852 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.852 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.852 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.852 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.855 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.Dynamic.Core.2czhr4esfi.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\i8w7eyc5en-{0}-2czhr4esfi-2czhr4esfi.gz' -2026-01-28 14:14:12.855 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.855 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.Dynamic.Core.2czhr4esfi.wasm - 200 240985 application/wasm 4.9291ms -2026-01-28 14:14:12.860 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Management.ot1u48wl1s.wasm - null null -2026-01-28 14:14:12.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.861 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.861 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.861 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.861 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.862 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.862 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.862 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.862 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.862 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.862 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.862 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.862 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.862 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.862 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.863 +03:00 [INF] Sending file. Request path: '_framework/System.Management.ot1u48wl1s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\evjyfukwb1-{0}-ot1u48wl1s-ot1u48wl1s.gz' -2026-01-28 14:14:12.863 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.863 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Management.ot1u48wl1s.wasm - 200 63803 application/wasm 2.7124ms -2026-01-28 14:14:12.868 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/TimeZoneConverter.halbc9brmz.wasm - null null -2026-01-28 14:14:12.868 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.868 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.868 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.869 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.869 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.869 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.869 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.869 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.869 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.869 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.869 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.869 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.869 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.869 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.869 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.869 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.869 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.869 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.869 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.869 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.869 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.869 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.870 +03:00 [INF] Sending file. Request path: '_framework/TimeZoneConverter.halbc9brmz.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xqev0b9yez-{0}-halbc9brmz-halbc9brmz.gz' -2026-01-28 14:14:12.870 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.870 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/TimeZoneConverter.halbc9brmz.wasm - 200 63803 application/wasm 2.5635ms -2026-01-28 14:14:12.875 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.CSharp.aars8n89vy.wasm - null null -2026-01-28 14:14:12.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.876 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.876 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.876 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.876 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.876 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.876 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.876 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.876 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.876 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.876 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.876 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.876 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.876 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.877 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.879 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.CSharp.aars8n89vy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\esvbxkosdi-{0}-aars8n89vy-aars8n89vy.gz' -2026-01-28 14:14:12.879 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.879 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.CSharp.aars8n89vy.wasm - 200 301411 application/wasm 4.2538ms -2026-01-28 14:14:12.886 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.Core.upxd87cdr1.wasm - null null -2026-01-28 14:14:12.886 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.886 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.887 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.887 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.887 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.887 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.887 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.887 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.887 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.887 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.887 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.887 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.887 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.887 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.887 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.887 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.887 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.887 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.887 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.887 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.887 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.887 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.890 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.VisualBasic.Core.upxd87cdr1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jc5kei53j8-{0}-upxd87cdr1-upxd87cdr1.gz' -2026-01-28 14:14:12.890 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.890 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.Core.upxd87cdr1.wasm - 200 418674 application/wasm 4.1258ms -2026-01-28 14:14:12.895 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.lo3va0ewdb.wasm - null null -2026-01-28 14:14:12.896 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.896 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.896 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.896 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.896 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.896 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.896 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.896 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.896 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.896 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.896 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.896 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.896 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.896 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.897 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.897 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.897 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.897 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.897 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.897 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.897 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.897 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.898 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.VisualBasic.lo3va0ewdb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\57p19o16fi-{0}-lo3va0ewdb-lo3va0ewdb.gz' -2026-01-28 14:14:12.898 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.898 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.lo3va0ewdb.wasm - 200 6966 application/wasm 2.7092ms -2026-01-28 14:14:12.903 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Primitives.xf0i7ifc2c.wasm - null null -2026-01-28 14:14:12.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.903 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.903 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.903 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.903 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.904 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.904 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.904 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.904 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.904 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.904 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.904 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.904 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.904 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.904 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.904 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.904 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.904 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.904 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.904 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.904 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.904 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.905 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Win32.Primitives.xf0i7ifc2c.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\p8pizku5xb-{0}-xf0i7ifc2c-xf0i7ifc2c.gz' -2026-01-28 14:14:12.905 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.905 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Primitives.xf0i7ifc2c.wasm - 200 5430 application/wasm 2.5208ms -2026-01-28 14:14:12.909 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Registry.egcs66c38p.wasm - null null -2026-01-28 14:14:12.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.911 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.911 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.911 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.911 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.911 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.911 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.911 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.911 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.911 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.911 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.911 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.911 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.912 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.912 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.912 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.912 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.912 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.912 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.912 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.912 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.913 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Win32.Registry.egcs66c38p.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ouubhvk51-{0}-egcs66c38p-egcs66c38p.gz' -2026-01-28 14:14:12.913 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.913 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Registry.egcs66c38p.wasm - 200 22838 application/wasm 3.8056ms -2026-01-28 14:14:12.919 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.AppContext.229uy454et.wasm - null null -2026-01-28 14:14:12.919 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.919 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.920 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.920 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.920 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.920 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.920 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.920 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.920 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.920 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.920 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.920 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.921 +03:00 [INF] Sending file. Request path: '_framework/System.AppContext.229uy454et.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vtyu92lgvy-{0}-229uy454et-229uy454et.gz' -2026-01-28 14:14:12.921 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.921 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.AppContext.229uy454et.wasm - 200 4918 application/wasm 2.4039ms -2026-01-28 14:14:12.925 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Buffers.ffy4vk49sl.wasm - null null -2026-01-28 14:14:12.926 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.926 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.927 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.927 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.927 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.927 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.927 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.927 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.927 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.927 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.927 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.927 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.927 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.927 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.927 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.927 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.927 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.927 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.927 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.927 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.927 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.927 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.928 +03:00 [INF] Sending file. Request path: '_framework/System.Buffers.ffy4vk49sl.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\abrvn071f9-{0}-ffy4vk49sl-ffy4vk49sl.gz' -2026-01-28 14:14:12.928 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.928 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Buffers.ffy4vk49sl.wasm - 200 4918 application/wasm 2.8692ms -2026-01-28 14:14:12.933 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.Concurrent.vwjty21qm0.wasm - null null -2026-01-28 14:14:12.934 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.934 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.934 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.934 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.934 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.934 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.934 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.934 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.934 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.934 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.934 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.934 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.934 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.934 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.935 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.935 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.935 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.935 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.935 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.935 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.935 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.935 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.936 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.Concurrent.vwjty21qm0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5kmfc755lz-{0}-vwjty21qm0-vwjty21qm0.gz' -2026-01-28 14:14:12.936 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.936 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.Concurrent.vwjty21qm0.wasm - 200 78656 application/wasm 2.8278ms -2026-01-28 14:14:12.941 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.Immutable.62ow9webvq.wasm - null null -2026-01-28 14:14:12.941 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.941 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.942 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.942 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.942 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.942 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.942 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.942 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.942 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.942 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.942 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.942 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.942 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.942 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.942 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.942 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.942 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.942 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.942 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.942 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.942 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.942 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.944 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.Immutable.62ow9webvq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\y8eoflnwlp-{0}-62ow9webvq-62ow9webvq.gz' -2026-01-28 14:14:12.944 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.945 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.Immutable.62ow9webvq.wasm - 200 240985 application/wasm 3.7754ms -2026-01-28 14:14:12.951 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.NonGeneric.8znze2bng9.wasm - null null -2026-01-28 14:14:12.951 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.951 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.951 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.951 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.951 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.952 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.952 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.952 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.952 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.952 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.952 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.952 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.952 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.952 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.952 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.952 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.952 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.952 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.952 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.952 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.952 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.953 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.953 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.NonGeneric.8znze2bng9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\iq26svu8f5-{0}-8znze2bng9-8znze2bng9.gz' -2026-01-28 14:14:12.953 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.953 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.NonGeneric.8znze2bng9.wasm - 200 37691 application/wasm 2.7555ms -2026-01-28 14:14:12.959 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.Specialized.xek5hgzu5v.wasm - null null -2026-01-28 14:14:12.960 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.960 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.960 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.960 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.960 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.960 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.960 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.960 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.960 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.960 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.960 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.960 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.960 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.960 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.961 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.961 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.961 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.961 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.961 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.961 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.961 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.961 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.962 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.Specialized.xek5hgzu5v.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4cpzjuj3r0-{0}-xek5hgzu5v-xek5hgzu5v.gz' -2026-01-28 14:14:12.962 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.962 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.Specialized.xek5hgzu5v.wasm - 200 37691 application/wasm 2.9938ms -2026-01-28 14:14:12.968 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.0nghqyig8i.wasm - null null -2026-01-28 14:14:12.969 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.969 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.969 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.969 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.969 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.969 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.969 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.969 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.969 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.969 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.969 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.969 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.969 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.969 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.969 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.970 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.970 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.970 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.970 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.970 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.970 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.970 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.971 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.0nghqyig8i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rssb0afnfp-{0}-0nghqyig8i-0nghqyig8i.gz' -2026-01-28 14:14:12.971 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.971 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.0nghqyig8i.wasm - 200 102725 application/wasm 3.1042ms -2026-01-28 14:14:12.976 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Annotations.x5puxnf36m.wasm - null null -2026-01-28 14:14:12.977 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.977 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.977 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.977 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.977 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.978 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.978 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.978 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.978 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.978 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.978 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.978 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.978 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.978 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.978 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.978 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.978 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.978 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.978 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.978 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.978 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.978 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.980 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.Annotations.x5puxnf36m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sxzb8xtw7k-{0}-x5puxnf36m-x5puxnf36m.gz' -2026-01-28 14:14:12.980 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.980 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Annotations.x5puxnf36m.wasm - 200 92480 application/wasm 3.378ms -2026-01-28 14:14:12.985 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.DataAnnotations.w951woxztj.wasm - null null -2026-01-28 14:14:12.986 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.986 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.986 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.986 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.986 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.986 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.986 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.986 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.986 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.986 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.986 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.986 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.986 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.986 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.987 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.987 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.987 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.987 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.987 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.987 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.987 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.987 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.988 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.DataAnnotations.w951woxztj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\koqxcel3zt-{0}-w951woxztj-w951woxztj.gz' -2026-01-28 14:14:12.988 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.988 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.DataAnnotations.w951woxztj.wasm - 200 6454 application/wasm 2.6647ms -2026-01-28 14:14:12.993 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.EventBasedAsync.xxfp6nuzvv.wasm - null null -2026-01-28 14:14:12.993 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.993 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:12.994 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:12.994 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:12.994 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.994 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:12.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:12.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:12.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:12.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:12.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:12.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:12.994 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:12.994 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:12.994 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:12.994 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:12.994 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:12.994 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:12.994 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:12.994 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:12.994 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.995 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.EventBasedAsync.xxfp6nuzvv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vq3ormnt3h-{0}-xxfp6nuzvv-xxfp6nuzvv.gz' -2026-01-28 14:14:12.995 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:12.995 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.EventBasedAsync.xxfp6nuzvv.wasm - 200 16182 application/wasm 2.8494ms -2026-01-28 14:14:13.001 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Primitives.lfp6xvb2nc.wasm - null null -2026-01-28 14:14:13.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.002 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.002 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.002 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.002 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.002 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.002 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.003 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.003 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.003 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.003 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.003 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.003 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.003 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.003 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.004 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.Primitives.lfp6xvb2nc.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\f7c6808jvl-{0}-lfp6xvb2nc-lfp6xvb2nc.gz' -2026-01-28 14:14:13.004 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.004 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Primitives.lfp6xvb2nc.wasm - 200 32054 application/wasm 2.8712ms -2026-01-28 14:14:13.009 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.TypeConverter.b6pminnty5.wasm - null null -2026-01-28 14:14:13.010 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.010 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.010 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.010 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.010 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.011 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.011 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.011 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.011 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.011 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.011 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.011 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.011 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.011 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.011 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.014 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.TypeConverter.b6pminnty5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lj5t7hnftt-{0}-b6pminnty5-b6pminnty5.gz' -2026-01-28 14:14:13.014 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.014 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.TypeConverter.b6pminnty5.wasm - 200 306531 application/wasm 4.6475ms -2026-01-28 14:14:13.019 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.1kxs5658en.wasm - null null -2026-01-28 14:14:13.020 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.020 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.020 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.020 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.020 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.020 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.020 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.020 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.020 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.020 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.020 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.020 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.020 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.020 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.021 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.021 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.021 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.021 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.021 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.021 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.021 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.021 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.022 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.1kxs5658en.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3bfqm2cg1o-{0}-1kxs5658en-1kxs5658en.gz' -2026-01-28 14:14:13.022 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.022 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.1kxs5658en.wasm - 200 5942 application/wasm 2.9846ms -2026-01-28 14:14:13.027 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Configuration.dfuzh9rwie.wasm - null null -2026-01-28 14:14:13.027 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.028 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.028 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.028 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.028 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.028 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.028 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.028 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.028 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.028 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.028 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.028 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.028 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.028 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.028 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.028 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.028 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.028 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.028 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.028 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.028 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.029 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.029 +03:00 [INF] Sending file. Request path: '_framework/System.Configuration.dfuzh9rwie.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xe6xuwrov9-{0}-dfuzh9rwie-dfuzh9rwie.gz' -2026-01-28 14:14:13.029 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.029 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Configuration.dfuzh9rwie.wasm - 200 9014 application/wasm 2.5ms -2026-01-28 14:14:13.034 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Console.5bpbf67g8o.wasm - null null -2026-01-28 14:14:13.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.035 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.035 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.035 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.035 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.036 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.036 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.036 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.036 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.036 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.036 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.036 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.036 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.036 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.036 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.036 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.036 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.036 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.036 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.036 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.036 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.036 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.037 +03:00 [INF] Sending file. Request path: '_framework/System.Console.5bpbf67g8o.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6mvz9phqs1-{0}-5bpbf67g8o-5bpbf67g8o.gz' -2026-01-28 14:14:13.037 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.037 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Console.5bpbf67g8o.wasm - 200 43835 application/wasm 2.8969ms -2026-01-28 14:14:13.042 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Core.zxsh7ohdyg.wasm - null null -2026-01-28 14:14:13.043 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.043 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.043 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.043 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.043 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.044 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.044 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.044 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.044 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.044 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.044 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.044 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.044 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.044 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.044 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.045 +03:00 [INF] Sending file. Request path: '_framework/System.Core.zxsh7ohdyg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\cubawh6yyf-{0}-zxsh7ohdyg-zxsh7ohdyg.gz' -2026-01-28 14:14:13.045 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.045 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Core.zxsh7ohdyg.wasm - 200 13110 application/wasm 2.8634ms -2026-01-28 14:14:13.051 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Data.Common.f0gomia98j.wasm - null null -2026-01-28 14:14:13.051 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.051 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.051 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.051 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.051 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.052 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.052 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.052 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.052 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.052 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.052 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.052 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.052 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.052 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.052 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.059 +03:00 [INF] Sending file. Request path: '_framework/System.Data.Common.f0gomia98j.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1c47smzjbl-{0}-f0gomia98j-f0gomia98j.gz' -2026-01-28 14:14:13.059 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.059 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Data.Common.f0gomia98j.wasm - 200 1008076 application/wasm 8.3812ms -2026-01-28 14:14:13.067 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Data.DataSetExtensions.3k3coynn1w.wasm - null null -2026-01-28 14:14:13.068 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.068 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.068 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.068 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.068 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.069 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.069 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.069 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.069 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.069 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.069 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.069 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.069 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.069 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.069 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.069 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.069 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.069 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.069 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.069 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.069 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.069 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.070 +03:00 [INF] Sending file. Request path: '_framework/System.Data.DataSetExtensions.3k3coynn1w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ud5iprd0cp-{0}-3k3coynn1w-3k3coynn1w.gz' -2026-01-28 14:14:13.070 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.070 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Data.DataSetExtensions.3k3coynn1w.wasm - 200 5430 application/wasm 2.7425ms -2026-01-28 14:14:13.075 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Data.d1s9ppg3o7.wasm - null null -2026-01-28 14:14:13.076 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.076 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.076 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.076 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.076 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.077 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.077 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.077 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.077 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.077 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.077 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.077 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.077 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.077 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.077 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.077 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.077 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.077 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.077 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.077 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.077 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.077 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.078 +03:00 [INF] Sending file. Request path: '_framework/System.Data.d1s9ppg3o7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\z59k6pwvr9-{0}-d1s9ppg3o7-d1s9ppg3o7.gz' -2026-01-28 14:14:13.078 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.078 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Data.d1s9ppg3o7.wasm - 200 15158 application/wasm 2.7032ms -2026-01-28 14:14:13.083 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Contracts.yj802auekg.wasm - null null -2026-01-28 14:14:13.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.084 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.084 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.084 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.084 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.084 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.084 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.085 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.085 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.085 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.085 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.085 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.085 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.085 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.085 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.085 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Contracts.yj802auekg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\895yo00sin-{0}-yj802auekg-yj802auekg.gz' -2026-01-28 14:14:13.086 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.086 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Contracts.yj802auekg.wasm - 200 5942 application/wasm 2.4973ms -2026-01-28 14:14:13.090 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Debug.d3luf33vju.wasm - null null -2026-01-28 14:14:13.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.091 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.091 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.091 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.091 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.091 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.091 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.092 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.092 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.092 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.092 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.092 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.092 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.092 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.092 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.092 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Debug.d3luf33vju.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\eplp8tl5qp-{0}-d3luf33vju-d3luf33vju.gz' -2026-01-28 14:14:13.092 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.093 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Debug.d3luf33vju.wasm - 200 5430 application/wasm 2.4844ms -2026-01-28 14:14:13.098 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.DiagnosticSource.4iwxfpqf71.wasm - null null -2026-01-28 14:14:13.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.099 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.099 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.099 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.099 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.099 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.099 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.099 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.099 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.100 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.100 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.101 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.DiagnosticSource.4iwxfpqf71.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1hb9b6viqf-{0}-4iwxfpqf71-4iwxfpqf71.gz' -2026-01-28 14:14:13.101 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.101 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.DiagnosticSource.4iwxfpqf71.wasm - 200 192335 application/wasm 3.5672ms -2026-01-28 14:14:13.107 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.FileVersionInfo.pqffbmgf59.wasm - null null -2026-01-28 14:14:13.107 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.107 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.107 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.107 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.107 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.108 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.108 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.108 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.108 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.108 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.108 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.108 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.108 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.108 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.108 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.108 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.108 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.108 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.108 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.108 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.108 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.108 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.109 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.FileVersionInfo.pqffbmgf59.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s56fv99ax6-{0}-pqffbmgf59-pqffbmgf59.gz' -2026-01-28 14:14:13.109 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.109 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.FileVersionInfo.pqffbmgf59.wasm - 200 12598 application/wasm 2.6967ms -2026-01-28 14:14:13.115 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Process.hgedtugxkh.wasm - null null -2026-01-28 14:14:13.115 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.116 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.116 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.116 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.116 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.116 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.116 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.116 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.116 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.116 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.116 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.116 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.116 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.117 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.117 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Process.hgedtugxkh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ulvoxvx0qx-{0}-hgedtugxkh-hgedtugxkh.gz' -2026-01-28 14:14:13.117 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.117 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Process.hgedtugxkh.wasm - 200 46395 application/wasm 2.8454ms -2026-01-28 14:14:13.122 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.StackTrace.apl6dmc0ay.wasm - null null -2026-01-28 14:14:13.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.123 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.123 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.123 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.123 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.123 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.124 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.124 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.124 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.124 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.124 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.124 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.124 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.124 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.124 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.125 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.StackTrace.apl6dmc0ay.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b4bxks5sgj-{0}-apl6dmc0ay-apl6dmc0ay.gz' -2026-01-28 14:14:13.125 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.125 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.StackTrace.apl6dmc0ay.wasm - 200 15670 application/wasm 3.0985ms -2026-01-28 14:14:13.131 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.TextWriterTraceListener.p621ruagc5.wasm - null null -2026-01-28 14:14:13.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.131 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.132 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.132 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.132 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.132 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.132 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.132 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.132 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.132 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.132 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.132 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.132 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.132 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.133 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.133 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.TextWriterTraceListener.p621ruagc5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0rz7u0vbo5-{0}-p621ruagc5-p621ruagc5.gz' -2026-01-28 14:14:13.133 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.133 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.TextWriterTraceListener.p621ruagc5.wasm - 200 21302 application/wasm 2.8224ms -2026-01-28 14:14:13.138 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Tools.f5hnfusd9n.wasm - null null -2026-01-28 14:14:13.139 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.139 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.139 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.139 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.139 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.140 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.140 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.140 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.140 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.140 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.140 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.140 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.140 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.140 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.140 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.140 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.140 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.140 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.140 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.140 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.140 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.141 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.141 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Tools.f5hnfusd9n.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rtkunlcxi7-{0}-f5hnfusd9n-f5hnfusd9n.gz' -2026-01-28 14:14:13.141 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.142 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Tools.f5hnfusd9n.wasm - 200 4918 application/wasm 3.1232ms -2026-01-28 14:14:13.147 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.TraceSource.z6jsaoha6p.wasm - null null -2026-01-28 14:14:13.148 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.148 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.148 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.148 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.148 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.148 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.148 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.148 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.148 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.148 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.148 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.148 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.148 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.148 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.148 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.149 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.149 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.149 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.149 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.149 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.149 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.149 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.150 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.TraceSource.z6jsaoha6p.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3okia77zo6-{0}-z6jsaoha6p-z6jsaoha6p.gz' -2026-01-28 14:14:13.150 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.150 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.TraceSource.z6jsaoha6p.wasm - 200 48443 application/wasm 2.8627ms -2026-01-28 14:14:13.155 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Tracing.d1w6x6c56c.wasm - null null -2026-01-28 14:14:13.155 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.155 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.156 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.156 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.156 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.156 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.156 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.156 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.156 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.156 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.156 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.156 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.156 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.156 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.156 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.156 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.156 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.156 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.156 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.156 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.156 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.157 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.157 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Tracing.d1w6x6c56c.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bl5rt2o9qk-{0}-d1w6x6c56c-d1w6x6c56c.gz' -2026-01-28 14:14:13.157 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.157 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Tracing.d1w6x6c56c.wasm - 200 5942 application/wasm 2.8177ms -2026-01-28 14:14:13.163 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Drawing.Primitives.l0kpbmmg5r.wasm - null null -2026-01-28 14:14:13.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.164 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.164 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.164 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.164 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.164 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.164 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.164 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.165 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.165 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.165 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.165 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.165 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.165 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.165 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.166 +03:00 [INF] Sending file. Request path: '_framework/System.Drawing.Primitives.l0kpbmmg5r.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mnh24cyvjl-{0}-l0kpbmmg5r-l0kpbmmg5r.gz' -2026-01-28 14:14:13.166 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.166 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Drawing.Primitives.l0kpbmmg5r.wasm - 200 54587 application/wasm 2.9853ms -2026-01-28 14:14:13.171 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Drawing.ur4stg427u.wasm - null null -2026-01-28 14:14:13.171 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.171 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.172 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.172 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.172 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.172 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.172 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.172 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.172 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.172 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.172 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.172 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.172 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.172 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.172 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.173 +03:00 [INF] Sending file. Request path: '_framework/System.Drawing.ur4stg427u.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tcko64rf2o-{0}-ur4stg427u-ur4stg427u.gz' -2026-01-28 14:14:13.173 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.173 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Drawing.ur4stg427u.wasm - 200 10038 application/wasm 2.8226ms -2026-01-28 14:14:13.178 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Dynamic.Runtime.hhm1961hd1.wasm - null null -2026-01-28 14:14:13.179 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.179 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.179 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.179 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.179 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.179 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.179 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.179 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.180 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.180 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.180 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.180 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.180 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.180 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.180 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.180 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.180 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.180 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.180 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.180 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.180 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.180 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.181 +03:00 [INF] Sending file. Request path: '_framework/System.Dynamic.Runtime.hhm1961hd1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bmbd8giz1p-{0}-hhm1961hd1-hhm1961hd1.gz' -2026-01-28 14:14:13.181 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.181 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Dynamic.Runtime.hhm1961hd1.wasm - 200 5942 application/wasm 2.5826ms -2026-01-28 14:14:13.186 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Formats.Asn1.9b1kh77dim.wasm - null null -2026-01-28 14:14:13.186 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.186 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.187 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.187 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.187 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.187 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.187 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.187 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.187 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.187 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.187 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.187 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.187 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.187 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.187 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.187 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.187 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.187 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.187 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.187 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.187 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.188 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.189 +03:00 [INF] Sending file. Request path: '_framework/System.Formats.Asn1.9b1kh77dim.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3nsgkkymfm-{0}-9b1kh77dim-9b1kh77dim.gz' -2026-01-28 14:14:13.189 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.189 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Formats.Asn1.9b1kh77dim.wasm - 200 86848 application/wasm 3.2912ms -2026-01-28 14:14:13.195 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Formats.Tar.pwu9oiomot.wasm - null null -2026-01-28 14:14:13.196 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.196 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.196 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.196 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.196 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.196 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.197 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.197 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.197 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.197 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.197 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.197 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.197 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.197 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.197 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.198 +03:00 [INF] Sending file. Request path: '_framework/System.Formats.Tar.pwu9oiomot.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\hazqfqk5pt-{0}-pwu9oiomot-pwu9oiomot.gz' -2026-01-28 14:14:13.198 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.198 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Formats.Tar.pwu9oiomot.wasm - 200 28470 application/wasm 3.3832ms -2026-01-28 14:14:13.203 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Globalization.Calendars.w6686c3eg8.wasm - null null -2026-01-28 14:14:13.204 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.204 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.204 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.204 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.204 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.205 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.205 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.205 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.205 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.205 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.205 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.205 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.205 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.205 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.205 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.205 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.205 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.205 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.205 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.205 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.205 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.205 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.206 +03:00 [INF] Sending file. Request path: '_framework/System.Globalization.Calendars.w6686c3eg8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\095aowv2ry-{0}-w6686c3eg8-w6686c3eg8.gz' -2026-01-28 14:14:13.206 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.206 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Globalization.Calendars.w6686c3eg8.wasm - 200 5430 application/wasm 2.6385ms -2026-01-28 14:14:13.211 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Globalization.Extensions.koczvzp0tt.wasm - null null -2026-01-28 14:14:13.212 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.212 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.212 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.212 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.212 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.212 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.212 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.212 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.212 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.212 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.212 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.212 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.212 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.212 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.212 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.212 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.213 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.213 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.213 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.213 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.213 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.213 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.213 +03:00 [INF] Sending file. Request path: '_framework/System.Globalization.Extensions.koczvzp0tt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dl0jfhz19c-{0}-koczvzp0tt-koczvzp0tt.gz' -2026-01-28 14:14:13.213 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.214 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Globalization.Extensions.koczvzp0tt.wasm - 200 4918 application/wasm 2.7586ms -2026-01-28 14:14:13.219 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Globalization.k8m97q3m8s.wasm - null null -2026-01-28 14:14:13.220 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.220 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.220 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.220 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.220 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.220 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.220 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.220 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.220 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.220 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.220 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.220 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.220 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.220 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.221 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.221 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.221 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.221 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.221 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.221 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.221 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.221 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.222 +03:00 [INF] Sending file. Request path: '_framework/System.Globalization.k8m97q3m8s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8q1hdhcajb-{0}-k8m97q3m8s-k8m97q3m8s.gz' -2026-01-28 14:14:13.222 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.222 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Globalization.k8m97q3m8s.wasm - 200 5430 application/wasm 2.9736ms -2026-01-28 14:14:13.228 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.Brotli.66hvl0dk85.wasm - null null -2026-01-28 14:14:13.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.229 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.230 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.230 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.230 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.230 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.230 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.231 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.231 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.231 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.231 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.231 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.231 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.231 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.231 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.231 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.232 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Compression.Brotli.66hvl0dk85.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\klv0zda5b4-{0}-66hvl0dk85-66hvl0dk85.gz' -2026-01-28 14:14:13.232 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.233 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.Brotli.66hvl0dk85.wasm - 200 18230 application/wasm 4.3952ms -2026-01-28 14:14:13.238 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.FileSystem.jhbp0nl2b8.wasm - null null -2026-01-28 14:14:13.239 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.239 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.239 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.240 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.240 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.240 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.240 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.240 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.240 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.240 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.240 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.240 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.240 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.240 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.241 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.241 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Compression.FileSystem.jhbp0nl2b8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3qa8sgt8n1-{0}-jhbp0nl2b8-jhbp0nl2b8.gz' -2026-01-28 14:14:13.241 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.241 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.FileSystem.jhbp0nl2b8.wasm - 200 4918 application/wasm 3.0449ms -2026-01-28 14:14:13.247 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.ZipFile.nap78ewmdw.wasm - null null -2026-01-28 14:14:13.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.248 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.248 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.248 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.248 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.249 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.249 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.249 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.249 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.249 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.249 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.249 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.249 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.249 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.249 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.249 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.249 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.249 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.249 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.249 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.249 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.249 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.250 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Compression.ZipFile.nap78ewmdw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s0uvr55768-{0}-nap78ewmdw-nap78ewmdw.gz' -2026-01-28 14:14:13.250 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.251 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.ZipFile.nap78ewmdw.wasm - 200 43323 application/wasm 3.4944ms -2026-01-28 14:14:13.256 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.wjdy7ns833.wasm - null null -2026-01-28 14:14:13.257 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.257 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.257 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.257 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.257 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.257 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.257 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.257 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.257 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.257 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.257 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.257 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.257 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.257 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.258 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.258 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.258 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.258 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.258 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.258 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.258 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.258 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.260 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Compression.wjdy7ns833.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b9wmrmes1g-{0}-wjdy7ns833-wjdy7ns833.gz' -2026-01-28 14:14:13.260 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.260 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.wjdy7ns833.wasm - 200 157514 application/wasm 3.3429ms -2026-01-28 14:14:13.265 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.AccessControl.eod3jwbqn7.wasm - null null -2026-01-28 14:14:13.266 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.266 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.266 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.266 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.266 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.267 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.267 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.267 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.267 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.267 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.267 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.267 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.267 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.267 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.267 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.267 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.267 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.267 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.267 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.267 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.267 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.267 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.268 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.AccessControl.eod3jwbqn7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dxkig4l83f-{0}-eod3jwbqn7-eod3jwbqn7.gz' -2026-01-28 14:14:13.268 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.268 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.AccessControl.eod3jwbqn7.wasm - 200 21814 application/wasm 3.1785ms -2026-01-28 14:14:13.273 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.DriveInfo.driq9z3dvq.wasm - null null -2026-01-28 14:14:13.274 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.274 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.274 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.274 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.274 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.275 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.275 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.275 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.275 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.275 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.275 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.275 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.275 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.275 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.275 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.275 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.275 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.275 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.275 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.275 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.275 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.275 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.276 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.DriveInfo.driq9z3dvq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\53tiabgbqz-{0}-driq9z3dvq-driq9z3dvq.gz' -2026-01-28 14:14:13.276 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.276 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.DriveInfo.driq9z3dvq.wasm - 200 13622 application/wasm 2.8487ms -2026-01-28 14:14:13.281 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.Primitives.81fwc35czq.wasm - null null -2026-01-28 14:14:13.282 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.282 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.282 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.282 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.282 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.282 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.282 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.282 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.282 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.282 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.282 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.282 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.282 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.282 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.283 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.283 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.283 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.283 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.283 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.283 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.283 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.283 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.283 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.Primitives.81fwc35czq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3hdbxu1ccm-{0}-81fwc35czq-81fwc35czq.gz' -2026-01-28 14:14:13.283 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.284 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.Primitives.81fwc35czq.wasm - 200 4918 application/wasm 2.9164ms -2026-01-28 14:14:13.290 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.Watcher.adgwo4kuza.wasm - null null -2026-01-28 14:14:13.290 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.290 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.290 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.290 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.290 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.291 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.291 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.291 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.291 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.291 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.291 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.291 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.291 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.291 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.291 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.291 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.291 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.291 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.291 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.291 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.291 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.291 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.292 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.Watcher.adgwo4kuza.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0nk9uqd91z-{0}-adgwo4kuza-adgwo4kuza.gz' -2026-01-28 14:14:13.292 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.292 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.Watcher.adgwo4kuza.wasm - 200 22838 application/wasm 2.6891ms -2026-01-28 14:14:13.297 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.bwu3sqaj6h.wasm - null null -2026-01-28 14:14:13.298 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.298 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.298 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.298 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.298 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.299 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.299 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.299 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.299 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.299 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.299 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.299 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.299 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.299 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.299 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.299 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.299 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.299 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.299 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.299 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.299 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.299 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.300 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.bwu3sqaj6h.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0oeun214in-{0}-bwu3sqaj6h-bwu3sqaj6h.gz' -2026-01-28 14:14:13.300 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.300 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.bwu3sqaj6h.wasm - 200 5430 application/wasm 3.0385ms -2026-01-28 14:14:13.306 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.IsolatedStorage.h5a2uwu0ao.wasm - null null -2026-01-28 14:14:13.307 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.307 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.307 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.307 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.307 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.307 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.307 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.307 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.307 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.307 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.307 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.307 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.307 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.307 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.308 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.308 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.308 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.308 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.308 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.308 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.308 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.308 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.309 +03:00 [INF] Sending file. Request path: '_framework/System.IO.IsolatedStorage.h5a2uwu0ao.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wxrt5vpq1k-{0}-h5a2uwu0ao-h5a2uwu0ao.gz' -2026-01-28 14:14:13.309 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.309 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.IsolatedStorage.h5a2uwu0ao.wasm - 200 24886 application/wasm 3.0253ms -2026-01-28 14:14:13.315 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.MemoryMappedFiles.7rigkgafok.wasm - null null -2026-01-28 14:14:13.316 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.316 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.316 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.316 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.316 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.316 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.316 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.316 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.316 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.316 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.316 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.316 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.316 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.316 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.317 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.317 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.317 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.317 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.317 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.317 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.317 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.317 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.318 +03:00 [INF] Sending file. Request path: '_framework/System.IO.MemoryMappedFiles.7rigkgafok.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vyic7lxnxv-{0}-7rigkgafok-7rigkgafok.gz' -2026-01-28 14:14:13.318 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.318 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.MemoryMappedFiles.7rigkgafok.wasm - 200 39739 application/wasm 3.6498ms -2026-01-28 14:14:13.324 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipelines.pq56wwa14f.wasm - null null -2026-01-28 14:14:13.325 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.325 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.325 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.325 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.325 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.325 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.325 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.325 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.325 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.325 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.325 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.325 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.325 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.325 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.326 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.326 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.326 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.326 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.326 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.326 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.326 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.326 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.327 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Pipelines.pq56wwa14f.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\a08rh4wqum-{0}-pq56wwa14f-pq56wwa14f.gz' -2026-01-28 14:14:13.327 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.327 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipelines.pq56wwa14f.wasm - 200 67904 application/wasm 3.3691ms -2026-01-28 14:14:13.332 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipes.AccessControl.orawgey7bd.wasm - null null -2026-01-28 14:14:13.333 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.333 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.333 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.333 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.333 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.333 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.333 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.333 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.333 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.334 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.334 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.334 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.334 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.334 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.334 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.334 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.334 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.334 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.335 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Pipes.AccessControl.orawgey7bd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\l16mq4yf9p-{0}-orawgey7bd-orawgey7bd.gz' -2026-01-28 14:14:13.335 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.335 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipes.AccessControl.orawgey7bd.wasm - 200 13110 application/wasm 3.3046ms -2026-01-28 14:14:13.341 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipes.qv5hx9ne5m.wasm - null null -2026-01-28 14:14:13.341 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.342 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.342 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.342 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.342 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.342 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.342 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.342 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.342 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.342 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.342 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.342 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.342 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.342 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.342 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.342 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.342 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.342 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.342 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.342 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.342 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.343 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.343 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Pipes.qv5hx9ne5m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\r2irkbzfn5-{0}-qv5hx9ne5m-qv5hx9ne5m.gz' -2026-01-28 14:14:13.343 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.343 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipes.qv5hx9ne5m.wasm - 200 32054 application/wasm 2.7007ms -2026-01-28 14:14:13.349 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.UnmanagedMemoryStream.zjpuh62vtt.wasm - null null -2026-01-28 14:14:13.350 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.350 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.351 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.351 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.351 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.351 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.351 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.351 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.351 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.351 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.351 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.351 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.351 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.351 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.351 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.351 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.351 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.351 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.351 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.351 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.351 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.352 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.352 +03:00 [INF] Sending file. Request path: '_framework/System.IO.UnmanagedMemoryStream.zjpuh62vtt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\u2mfjvv6a6-{0}-zjpuh62vtt-zjpuh62vtt.gz' -2026-01-28 14:14:13.352 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.353 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.UnmanagedMemoryStream.zjpuh62vtt.wasm - 200 5430 application/wasm 3.2314ms -2026-01-28 14:14:13.357 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.kdm5se4z4i.wasm - null null -2026-01-28 14:14:13.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.358 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.358 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.358 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.358 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.358 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.358 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.359 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.359 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.359 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.359 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.359 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.359 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.359 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.359 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.359 +03:00 [INF] Sending file. Request path: '_framework/System.IO.kdm5se4z4i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tx0zr2bfyn-{0}-kdm5se4z4i-kdm5se4z4i.gz' -2026-01-28 14:14:13.359 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.360 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.kdm5se4z4i.wasm - 200 5430 application/wasm 2.3987ms -2026-01-28 14:14:13.365 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.AsyncEnumerable.24q069vvmu.wasm - null null -2026-01-28 14:14:13.365 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.365 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.366 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.366 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.366 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.366 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.366 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.366 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.366 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.366 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.366 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.366 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.366 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.366 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.366 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.366 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.366 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.366 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.366 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.366 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.366 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.366 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.369 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.AsyncEnumerable.24q069vvmu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c7lzsfjd6q-{0}-24q069vvmu-24q069vvmu.gz' -2026-01-28 14:14:13.369 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.369 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.AsyncEnumerable.24q069vvmu.wasm - 200 446327 application/wasm 4.6889ms -2026-01-28 14:14:13.375 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.Expressions.5vac4cfeo2.wasm - null null -2026-01-28 14:14:13.376 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.376 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.376 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.376 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.376 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.376 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.376 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.376 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.376 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.376 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.376 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.376 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.376 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.376 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.377 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.377 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.377 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.377 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.377 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.377 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.377 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.377 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.381 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.Expressions.5vac4cfeo2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ofq1bjb4ny-{0}-5vac4cfeo2-5vac4cfeo2.gz' -2026-01-28 14:14:13.381 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.381 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.Expressions.5vac4cfeo2.wasm - 200 565131 application/wasm 6.2747ms -2026-01-28 14:14:13.389 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.Parallel.wec9zwybs3.wasm - null null -2026-01-28 14:14:13.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.389 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.389 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.389 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.389 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.390 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.390 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.390 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.390 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.390 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.390 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.390 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.390 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.390 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.390 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.393 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.Parallel.wec9zwybs3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gqwqnnwtf4-{0}-wec9zwybs3-wec9zwybs3.gz' -2026-01-28 14:14:13.393 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.393 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.Parallel.wec9zwybs3.wasm - 200 212820 application/wasm 3.9913ms -2026-01-28 14:14:13.399 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.Queryable.aacsqokaru.wasm - null null -2026-01-28 14:14:13.400 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.400 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.400 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.400 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.400 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.400 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.401 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.401 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.401 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.401 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.401 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.401 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.401 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.401 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.401 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.401 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.401 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.401 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.401 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.401 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.401 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.401 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.402 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.Queryable.aacsqokaru.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6oa4hfxdqf-{0}-aacsqokaru-aacsqokaru.gz' -2026-01-28 14:14:13.402 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.403 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.Queryable.aacsqokaru.wasm - 200 68416 application/wasm 3.2538ms -2026-01-28 14:14:13.408 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.xsk9czcoz7.wasm - null null -2026-01-28 14:14:13.409 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.409 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.409 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.409 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.409 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.409 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.409 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.409 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.409 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.409 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.409 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.409 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.410 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.410 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.410 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.410 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.410 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.410 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.410 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.410 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.410 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.412 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.xsk9czcoz7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xukhwpcysr-{0}-xsk9czcoz7-xsk9czcoz7.gz' -2026-01-28 14:14:13.412 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.412 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.xsk9czcoz7.wasm - 200 190799 application/wasm 4.1851ms -2026-01-28 14:14:13.417 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Memory.av3iy8oqe6.wasm - null null -2026-01-28 14:14:13.418 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.418 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.418 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.418 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.418 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.418 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.418 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.418 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.418 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.418 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.418 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.418 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.418 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.418 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.419 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.419 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.419 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.419 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.419 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.419 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.419 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.419 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.420 +03:00 [INF] Sending file. Request path: '_framework/System.Memory.av3iy8oqe6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\20k8bcs2ry-{0}-av3iy8oqe6-av3iy8oqe6.gz' -2026-01-28 14:14:13.420 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.420 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Memory.av3iy8oqe6.wasm - 200 45371 application/wasm 2.5645ms -2026-01-28 14:14:13.425 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Http.Json.f5ti54ia1a.wasm - null null -2026-01-28 14:14:13.426 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.426 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.426 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.426 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.426 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.427 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.427 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.427 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.427 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.427 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.427 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.427 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.427 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.427 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.427 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.427 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.427 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.427 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.427 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.427 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.427 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.427 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.428 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Http.Json.f5ti54ia1a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\hdhp2fv8el-{0}-f5ti54ia1a-f5ti54ia1a.gz' -2026-01-28 14:14:13.428 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.428 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Http.Json.f5ti54ia1a.wasm - 200 45883 application/wasm 3.3017ms -2026-01-28 14:14:13.435 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Http.xnexopyo77.wasm - null null -2026-01-28 14:14:13.436 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.436 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.436 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.436 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.436 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.436 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.436 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.436 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.436 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.436 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.436 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.436 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.436 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.436 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.436 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.436 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.436 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.436 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.436 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.436 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.436 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.437 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.438 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Http.xnexopyo77.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5zhsh7htpt-{0}-xnexopyo77-xnexopyo77.gz' -2026-01-28 14:14:13.439 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.439 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Http.xnexopyo77.wasm - 200 286046 application/wasm 3.7506ms -2026-01-28 14:14:13.445 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.HttpListener.qea3lr0ivv.wasm - null null -2026-01-28 14:14:13.446 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.446 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.446 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.446 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.446 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.447 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.447 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.447 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.447 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.447 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.447 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.447 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.447 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.447 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.447 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.447 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.447 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.447 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.447 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.447 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.447 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.447 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.448 +03:00 [INF] Sending file. Request path: '_framework/System.Net.HttpListener.qea3lr0ivv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xstee2l2o3-{0}-qea3lr0ivv-qea3lr0ivv.gz' -2026-01-28 14:14:13.448 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.449 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.HttpListener.qea3lr0ivv.wasm - 200 45883 application/wasm 3.2498ms -2026-01-28 14:14:13.454 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Mail.kabvwy0nwb.wasm - null null -2026-01-28 14:14:13.455 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.455 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.455 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.455 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.455 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.455 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.456 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.456 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.456 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.456 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.456 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.456 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.456 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.456 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.456 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.456 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.456 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.456 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.456 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.456 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.456 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.456 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.458 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Mail.kabvwy0nwb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\brj66r630l-{0}-kabvwy0nwb-kabvwy0nwb.gz' -2026-01-28 14:14:13.458 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.458 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Mail.kabvwy0nwb.wasm - 200 95040 application/wasm 3.6787ms -2026-01-28 14:14:13.463 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.NameResolution.r77xqyi48e.wasm - null null -2026-01-28 14:14:13.464 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.464 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.464 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.464 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.464 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.464 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.464 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.464 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.464 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.464 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.465 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.465 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.465 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.465 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.465 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.465 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.465 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.465 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.465 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.465 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.465 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.466 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.467 +03:00 [INF] Sending file. Request path: '_framework/System.Net.NameResolution.r77xqyi48e.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0muzq1nn1l-{0}-r77xqyi48e-r77xqyi48e.gz' -2026-01-28 14:14:13.467 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.467 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.NameResolution.r77xqyi48e.wasm - 200 14134 application/wasm 4.0092ms -2026-01-28 14:14:13.472 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.NetworkInformation.4y8ae4b47g.wasm - null null -2026-01-28 14:14:13.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.474 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.474 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.474 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.474 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.474 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.474 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.474 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.474 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.474 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.474 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.474 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.474 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.474 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.474 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.474 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.474 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.474 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.475 +03:00 [INF] Sending file. Request path: '_framework/System.Net.NetworkInformation.4y8ae4b47g.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\t7lf75pu6w-{0}-4y8ae4b47g-4y8ae4b47g.gz' -2026-01-28 14:14:13.475 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.476 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.NetworkInformation.4y8ae4b47g.wasm - 200 32054 application/wasm 3.2963ms -2026-01-28 14:14:13.482 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Ping.fb39s7nqmu.wasm - null null -2026-01-28 14:14:13.482 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.483 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.483 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.483 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.483 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.483 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.483 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.483 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.483 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.483 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.483 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.483 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.483 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.483 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.483 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.483 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.483 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.483 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.483 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.483 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.483 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.484 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.484 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Ping.fb39s7nqmu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1qhthfilvz-{0}-fb39s7nqmu-fb39s7nqmu.gz' -2026-01-28 14:14:13.484 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.484 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Ping.fb39s7nqmu.wasm - 200 17718 application/wasm 2.6876ms -2026-01-28 14:14:13.490 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Primitives.2oo4pve6tx.wasm - null null -2026-01-28 14:14:13.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.491 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.491 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.491 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.491 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.491 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.491 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.492 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.492 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.492 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.492 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.492 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.492 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.492 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.492 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.493 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Primitives.2oo4pve6tx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xxez8u380e-{0}-2oo4pve6tx-2oo4pve6tx.gz' -2026-01-28 14:14:13.493 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.493 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Primitives.2oo4pve6tx.wasm - 200 97088 application/wasm 3.2641ms -2026-01-28 14:14:13.499 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Quic.wedsu6m1ok.wasm - null null -2026-01-28 14:14:13.499 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.499 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.499 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.500 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.500 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.500 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.500 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.500 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.500 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.500 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.500 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.500 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.500 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.500 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.500 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.500 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.500 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.500 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.500 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.500 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.500 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.500 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.501 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Quic.wedsu6m1ok.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mavmo5ad6x-{0}-wedsu6m1ok-wedsu6m1ok.gz' -2026-01-28 14:14:13.501 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.501 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Quic.wedsu6m1ok.wasm - 200 28982 application/wasm 2.9112ms -2026-01-28 14:14:13.507 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Requests.dd8um1v0v4.wasm - null null -2026-01-28 14:14:13.508 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.508 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.508 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.508 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.508 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.508 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.508 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.508 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.508 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.508 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.508 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.508 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.508 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.508 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.509 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.509 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.509 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.509 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.509 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.509 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.509 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.509 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.510 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Requests.dd8um1v0v4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\g8osyueis5-{0}-dd8um1v0v4-dd8um1v0v4.gz' -2026-01-28 14:14:13.510 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.510 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Requests.dd8um1v0v4.wasm - 200 55611 application/wasm 3.0135ms -2026-01-28 14:14:13.516 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Security.j01yc12epg.wasm - null null -2026-01-28 14:14:13.517 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.517 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.517 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.517 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.517 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.517 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.517 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.517 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.517 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.517 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.517 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.518 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.518 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.518 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.518 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.518 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.518 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.518 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.518 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.518 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.518 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.518 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.520 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Security.j01yc12epg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vd1ks16ws6-{0}-j01yc12epg-j01yc12epg.gz' -2026-01-28 14:14:13.520 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.520 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Security.j01yc12epg.wasm - 200 104261 application/wasm 3.6977ms -2026-01-28 14:14:13.525 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.ServerSentEvents.n20pwunwwa.wasm - null null -2026-01-28 14:14:13.526 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.526 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.526 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.526 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.526 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.526 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.527 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.527 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.527 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.527 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.527 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.527 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.527 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.527 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.527 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.527 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.527 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.527 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.527 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.527 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.527 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.527 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.528 +03:00 [INF] Sending file. Request path: '_framework/System.Net.ServerSentEvents.n20pwunwwa.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rp6twqxirl-{0}-n20pwunwwa-n20pwunwwa.gz' -2026-01-28 14:14:13.528 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.528 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.ServerSentEvents.n20pwunwwa.wasm - 200 30518 application/wasm 3.0806ms -2026-01-28 14:14:13.562 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.ServicePoint.6qgdmrxct2.wasm - null null -2026-01-28 14:14:13.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.563 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.563 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.563 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.563 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.563 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.563 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.563 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.563 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.563 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.563 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.563 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.563 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.563 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.563 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.563 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.563 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.564 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.565 +03:00 [INF] Sending file. Request path: '_framework/System.Net.ServicePoint.6qgdmrxct2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v7t97n1u19-{0}-6qgdmrxct2-6qgdmrxct2.gz' -2026-01-28 14:14:13.565 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.565 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.ServicePoint.6qgdmrxct2.wasm - 200 4918 application/wasm 3.4877ms -2026-01-28 14:14:13.570 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Sockets.0jj55xk9rv.wasm - null null -2026-01-28 14:14:13.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.571 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.571 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.571 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.571 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.571 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.571 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.571 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.571 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.571 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.571 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.572 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Sockets.0jj55xk9rv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\i4k589b7bn-{0}-0jj55xk9rv-0jj55xk9rv.gz' -2026-01-28 14:14:13.572 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.572 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Sockets.0jj55xk9rv.wasm - 200 64315 application/wasm 2.5123ms -2026-01-28 14:14:13.577 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebClient.3wc74qco9q.wasm - null null -2026-01-28 14:14:13.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.578 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.578 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.578 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.578 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.578 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.578 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.578 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.578 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.578 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.579 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.579 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.579 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.579 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.579 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.580 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebClient.3wc74qco9q.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9mnjsb8x3q-{0}-3wc74qco9q-3wc74qco9q.gz' -2026-01-28 14:14:13.580 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.580 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebClient.3wc74qco9q.wasm - 200 45883 application/wasm 2.7401ms -2026-01-28 14:14:13.584 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebHeaderCollection.4ybcvi6krs.wasm - null null -2026-01-28 14:14:13.585 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.585 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.585 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.585 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.585 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.586 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.586 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.586 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.586 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.586 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.586 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.586 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.586 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.586 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.586 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.586 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.586 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.586 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.586 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.586 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.586 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.586 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.587 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebHeaderCollection.4ybcvi6krs.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\apet8won7e-{0}-4ybcvi6krs-4ybcvi6krs.gz' -2026-01-28 14:14:13.587 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.587 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebHeaderCollection.4ybcvi6krs.wasm - 200 22838 application/wasm 2.781ms -2026-01-28 14:14:13.592 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebProxy.zxvs9bwlaq.wasm - null null -2026-01-28 14:14:13.593 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.593 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.593 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.593 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.593 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.593 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.593 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.593 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.593 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.593 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.593 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.593 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.593 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.593 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.594 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.594 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.594 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.594 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.594 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.594 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.594 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.594 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.595 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebProxy.zxvs9bwlaq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n8e7iy8bgt-{0}-zxvs9bwlaq-zxvs9bwlaq.gz' -2026-01-28 14:14:13.595 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.595 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebProxy.zxvs9bwlaq.wasm - 200 11574 application/wasm 2.9603ms -2026-01-28 14:14:13.599 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebSockets.Client.n57nf3z1br.wasm - null null -2026-01-28 14:14:13.600 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.600 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.600 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.600 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.600 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.600 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.600 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.600 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.600 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.600 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.600 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.600 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.600 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.600 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.601 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.601 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.601 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.601 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.601 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.601 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.601 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.601 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.602 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebSockets.Client.n57nf3z1br.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rnseevpeje-{0}-n57nf3z1br-n57nf3z1br.gz' -2026-01-28 14:14:13.602 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.602 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebSockets.Client.n57nf3z1br.wasm - 200 42299 application/wasm 2.4575ms -2026-01-28 14:14:13.607 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebSockets.i3475fl55i.wasm - null null -2026-01-28 14:14:13.608 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.608 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.608 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.608 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.608 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.608 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.608 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.608 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.608 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.608 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.608 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.608 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.608 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.608 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.609 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.609 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.609 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.609 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.609 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.609 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.609 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.609 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.610 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebSockets.i3475fl55i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fixxlx5x95-{0}-i3475fl55i-i3475fl55i.gz' -2026-01-28 14:14:13.610 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.610 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebSockets.i3475fl55i.wasm - 200 98629 application/wasm 3.2358ms -2026-01-28 14:14:13.615 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.2jb9y9tls4.wasm - null null -2026-01-28 14:14:13.615 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.616 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.616 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.616 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.616 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.616 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.616 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.616 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.616 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.616 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.616 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.616 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.616 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.616 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.617 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.617 +03:00 [INF] Sending file. Request path: '_framework/System.Net.2jb9y9tls4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sdhyils1a8-{0}-2jb9y9tls4-2jb9y9tls4.gz' -2026-01-28 14:14:13.617 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.617 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.2jb9y9tls4.wasm - 200 6966 application/wasm 2.6991ms -2026-01-28 14:14:13.622 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Numerics.Vectors.tjoypuu8wa.wasm - null null -2026-01-28 14:14:13.623 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.623 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.623 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.623 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.623 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.623 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.623 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.623 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.623 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.623 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.623 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.623 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.623 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.623 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.624 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.624 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.624 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.624 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.624 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.624 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.624 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.624 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.625 +03:00 [INF] Sending file. Request path: '_framework/System.Numerics.Vectors.tjoypuu8wa.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\52qfucpyv5-{0}-tjoypuu8wa-tjoypuu8wa.gz' -2026-01-28 14:14:13.625 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.625 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Numerics.Vectors.tjoypuu8wa.wasm - 200 5430 application/wasm 2.5345ms -2026-01-28 14:14:13.629 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Numerics.zb6snwiiqo.wasm - null null -2026-01-28 14:14:13.630 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.630 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.630 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.630 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.630 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.630 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.630 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.630 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.630 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.630 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.630 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.630 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.630 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.630 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.631 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.631 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.631 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.631 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.631 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.631 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.631 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.631 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.632 +03:00 [INF] Sending file. Request path: '_framework/System.Numerics.zb6snwiiqo.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3mhjbwzot4-{0}-zb6snwiiqo-zb6snwiiqo.gz' -2026-01-28 14:14:13.632 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.632 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Numerics.zb6snwiiqo.wasm - 200 4918 application/wasm 2.4808ms -2026-01-28 14:14:13.637 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ObjectModel.qra8ipv6cl.wasm - null null -2026-01-28 14:14:13.637 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.637 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.637 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.637 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.638 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.638 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.638 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.638 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.638 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.638 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.638 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.638 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.638 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.638 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.638 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.638 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.638 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.638 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.638 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.638 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.638 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.638 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.639 +03:00 [INF] Sending file. Request path: '_framework/System.ObjectModel.qra8ipv6cl.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\69h7jimh8b-{0}-qra8ipv6cl-qra8ipv6cl.gz' -2026-01-28 14:14:13.639 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.639 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ObjectModel.qra8ipv6cl.wasm - 200 31030 application/wasm 2.4175ms -2026-01-28 14:14:13.644 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.DataContractSerialization.cdaesawoob.wasm - null null -2026-01-28 14:14:13.645 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.645 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.645 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.645 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.645 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.645 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.645 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.645 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.645 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.645 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.645 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.645 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.645 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.645 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.645 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.645 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.645 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.645 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.645 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.645 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.645 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.646 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.650 +03:00 [INF] Sending file. Request path: '_framework/System.Private.DataContractSerialization.cdaesawoob.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xukodscfdt-{0}-cdaesawoob-cdaesawoob.gz' -2026-01-28 14:14:13.650 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.650 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.DataContractSerialization.cdaesawoob.wasm - 200 849331 application/wasm 5.8442ms -2026-01-28 14:14:13.658 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.Uri.d7c7uu4en8.wasm - null null -2026-01-28 14:14:13.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.659 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.659 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.659 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.659 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.659 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.659 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.660 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.660 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.660 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.660 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.660 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.660 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.660 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.660 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.661 +03:00 [INF] Sending file. Request path: '_framework/System.Private.Uri.d7c7uu4en8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ru8d7hu3hx-{0}-d7c7uu4en8-d7c7uu4en8.gz' -2026-01-28 14:14:13.661 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.661 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.Uri.d7c7uu4en8.wasm - 200 95040 application/wasm 3.0809ms -2026-01-28 14:14:13.666 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.Xml.Linq.yklun9npsh.wasm - null null -2026-01-28 14:14:13.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.666 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.666 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.667 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.667 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.667 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.667 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.667 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.667 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.667 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.667 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.667 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.667 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.667 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.667 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.669 +03:00 [INF] Sending file. Request path: '_framework/System.Private.Xml.Linq.yklun9npsh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wby45u92ah-{0}-yklun9npsh-yklun9npsh.gz' -2026-01-28 14:14:13.669 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.669 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.Xml.Linq.yklun9npsh.wasm - 200 143690 application/wasm 3.1601ms -2026-01-28 14:14:13.674 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.Xml.8fl2owujec.wasm - null null -2026-01-28 14:14:13.675 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.675 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.675 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.675 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.675 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.676 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.676 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.676 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.676 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.676 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.676 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.676 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.676 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.676 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.676 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.676 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.676 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.676 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.676 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.676 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.676 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.676 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.695 +03:00 [INF] Sending file. Request path: '_framework/System.Private.Xml.8fl2owujec.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4tw2sl7qh6-{0}-8fl2owujec-8fl2owujec.gz' -2026-01-28 14:14:13.695 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.695 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.Xml.8fl2owujec.wasm - 200 3096336 application/wasm 20.5738ms -2026-01-28 14:14:13.722 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.DispatchProxy.dur3huf884.wasm - null null -2026-01-28 14:14:13.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.723 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.723 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.723 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.723 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.723 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.724 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.724 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.724 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.724 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.724 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.724 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.724 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.724 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.724 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.724 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.724 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.724 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.725 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.DispatchProxy.dur3huf884.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1vtfgkdvnc-{0}-dur3huf884-dur3huf884.gz' -2026-01-28 14:14:13.725 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.725 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.DispatchProxy.dur3huf884.wasm - 200 27958 application/wasm 3.135ms -2026-01-28 14:14:13.730 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.ILGeneration.pei97jn90w.wasm - null null -2026-01-28 14:14:13.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.731 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.731 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.731 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.731 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.732 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.732 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.732 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.732 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.732 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.732 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.732 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.732 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.732 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.732 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.733 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.733 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.733 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.733 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.733 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.733 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.733 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.734 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Emit.ILGeneration.pei97jn90w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v1gyf0d1ub-{0}-pei97jn90w-pei97jn90w.gz' -2026-01-28 14:14:13.734 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.734 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.ILGeneration.pei97jn90w.wasm - 200 5430 application/wasm 3.824ms -2026-01-28 14:14:13.738 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.Lightweight.ywsyqlj9p1.wasm - null null -2026-01-28 14:14:13.739 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.739 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.739 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.739 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.739 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.739 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.739 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.739 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.739 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.739 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.740 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.740 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.740 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.740 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.740 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.740 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.740 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.740 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.740 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.741 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Emit.Lightweight.ywsyqlj9p1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fhnd5yeiv1-{0}-ywsyqlj9p1-ywsyqlj9p1.gz' -2026-01-28 14:14:13.741 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.741 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.Lightweight.ywsyqlj9p1.wasm - 200 5430 application/wasm 2.5134ms -2026-01-28 14:14:13.747 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.tumhikm19o.wasm - null null -2026-01-28 14:14:13.748 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.748 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.748 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.748 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.748 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.748 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.748 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.748 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.748 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.748 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.748 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.748 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.748 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.748 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.749 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.749 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.749 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.749 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.749 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.749 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.749 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.749 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.751 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Emit.tumhikm19o.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vgtdlzmyp9-{0}-tumhikm19o-tumhikm19o.gz' -2026-01-28 14:14:13.751 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.751 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.tumhikm19o.wasm - 200 122693 application/wasm 4.0367ms -2026-01-28 14:14:13.756 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Extensions.z98cfn5ig8.wasm - null null -2026-01-28 14:14:13.756 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.757 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.757 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.757 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.757 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.757 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.757 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.757 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.757 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.757 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.757 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.757 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.757 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.757 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.758 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.758 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Extensions.z98cfn5ig8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5188hd084t-{0}-z98cfn5ig8-z98cfn5ig8.gz' -2026-01-28 14:14:13.758 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.758 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Extensions.z98cfn5ig8.wasm - 200 4918 application/wasm 2.8202ms -2026-01-28 14:14:13.764 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Metadata.j4t1n1ywxj.wasm - null null -2026-01-28 14:14:13.765 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.765 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.765 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.765 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.765 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.766 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.766 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.766 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.766 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.766 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.766 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.766 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.766 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.766 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.767 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.770 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Metadata.j4t1n1ywxj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ih2v39fwix-{0}-j4t1n1ywxj-j4t1n1ywxj.gz' -2026-01-28 14:14:13.770 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.770 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Metadata.j4t1n1ywxj.wasm - 200 493441 application/wasm 5.511ms -2026-01-28 14:14:13.776 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Primitives.p4ntci6hk7.wasm - null null -2026-01-28 14:14:13.777 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.777 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.777 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.777 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.777 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.778 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.778 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.778 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.778 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.778 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.778 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.778 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.778 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.778 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.778 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.778 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.778 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.778 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.778 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.778 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.778 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.778 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.779 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Primitives.p4ntci6hk7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\z9kjf4ns5o-{0}-p4ntci6hk7-p4ntci6hk7.gz' -2026-01-28 14:14:13.779 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.779 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Primitives.p4ntci6hk7.wasm - 200 5430 application/wasm 2.9424ms -2026-01-28 14:14:13.785 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.TypeExtensions.puzzlnwex2.wasm - null null -2026-01-28 14:14:13.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.786 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.786 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.786 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.786 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.786 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.787 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.787 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.787 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.787 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.787 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.787 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.787 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.787 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.787 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.788 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.TypeExtensions.puzzlnwex2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7ukk8euu3c-{0}-puzzlnwex2-puzzlnwex2.gz' -2026-01-28 14:14:13.788 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.788 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.TypeExtensions.puzzlnwex2.wasm - 200 14134 application/wasm 2.8815ms -2026-01-28 14:14:13.793 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.lt32pnnkzd.wasm - null null -2026-01-28 14:14:13.794 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.794 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.794 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.794 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.794 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.794 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.794 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.794 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.794 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.794 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.794 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.794 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.795 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.795 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.795 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.795 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.795 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.795 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.795 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.795 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.795 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.795 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.796 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.lt32pnnkzd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5zfqu7bsm3-{0}-lt32pnnkzd-lt32pnnkzd.gz' -2026-01-28 14:14:13.796 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.796 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.lt32pnnkzd.wasm - 200 5942 application/wasm 3.2759ms -2026-01-28 14:14:13.802 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Resources.Reader.c8jfsntxbn.wasm - null null -2026-01-28 14:14:13.803 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.803 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.803 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.803 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.803 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.803 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.803 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.803 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.803 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.803 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.803 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.803 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.803 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.803 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.804 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.804 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.804 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.804 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.804 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.804 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.804 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.804 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.805 +03:00 [INF] Sending file. Request path: '_framework/System.Resources.Reader.c8jfsntxbn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5fcb3hbz6f-{0}-c8jfsntxbn-c8jfsntxbn.gz' -2026-01-28 14:14:13.805 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.805 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Resources.Reader.c8jfsntxbn.wasm - 200 4918 application/wasm 2.6284ms -2026-01-28 14:14:13.810 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Resources.ResourceManager.q30psrnl7u.wasm - null null -2026-01-28 14:14:13.811 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.811 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.812 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.812 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.812 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.812 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.812 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.812 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.812 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.812 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.812 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.812 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.812 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.812 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.812 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.812 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.812 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.812 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.812 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.812 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.813 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.813 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.813 +03:00 [INF] Sending file. Request path: '_framework/System.Resources.ResourceManager.q30psrnl7u.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\k3xfrex2pp-{0}-q30psrnl7u-q30psrnl7u.gz' -2026-01-28 14:14:13.813 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.814 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Resources.ResourceManager.q30psrnl7u.wasm - 200 5430 application/wasm 3.1493ms -2026-01-28 14:14:13.821 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Resources.Writer.wvyn0j1lcg.wasm - null null -2026-01-28 14:14:13.822 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.822 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.822 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.822 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.822 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.822 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.822 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.822 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.822 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.822 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.822 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.822 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.822 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.822 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.823 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.823 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.823 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.823 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.823 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.823 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.823 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.823 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.824 +03:00 [INF] Sending file. Request path: '_framework/System.Resources.Writer.wvyn0j1lcg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wsg9isam35-{0}-wvyn0j1lcg-wvyn0j1lcg.gz' -2026-01-28 14:14:13.824 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.824 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Resources.Writer.wvyn0j1lcg.wasm - 200 16694 application/wasm 2.9266ms -2026-01-28 14:14:13.831 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.CompilerServices.Unsafe.djrvtrz9tb.wasm - null null -2026-01-28 14:14:13.832 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.832 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.832 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.832 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.832 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.832 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.832 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.832 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.832 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.832 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.832 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.832 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.832 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.832 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.833 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.833 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.833 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.833 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.833 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.833 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.833 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.833 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.834 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.CompilerServices.Unsafe.djrvtrz9tb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\smsvmq9glf-{0}-djrvtrz9tb-djrvtrz9tb.gz' -2026-01-28 14:14:13.834 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.834 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.CompilerServices.Unsafe.djrvtrz9tb.wasm - 200 4918 application/wasm 2.6736ms -2026-01-28 14:14:13.839 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.CompilerServices.VisualC.luekj4crl6.wasm - null null -2026-01-28 14:14:13.841 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.841 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.841 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.841 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.841 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.841 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.841 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.841 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.841 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.841 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.841 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.841 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.841 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.841 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.841 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.842 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.842 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.842 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.842 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.842 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.842 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.842 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.843 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.CompilerServices.VisualC.luekj4crl6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\w5clnjen17-{0}-luekj4crl6-luekj4crl6.gz' -2026-01-28 14:14:13.843 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.843 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.CompilerServices.VisualC.luekj4crl6.wasm - 200 6966 application/wasm 3.6622ms -2026-01-28 14:14:13.849 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Extensions.d5mymlulmr.wasm - null null -2026-01-28 14:14:13.850 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.850 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.850 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.850 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.850 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.850 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.850 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.850 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.850 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.850 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.850 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.850 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.850 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.850 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.851 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.851 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.851 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.851 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.851 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.851 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.851 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.851 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.852 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Extensions.d5mymlulmr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n6jkmkc1vw-{0}-d5mymlulmr-d5mymlulmr.gz' -2026-01-28 14:14:13.852 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.852 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Extensions.d5mymlulmr.wasm - 200 7478 application/wasm 3.1797ms -2026-01-28 14:14:13.858 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Handles.ih3cmfwxzd.wasm - null null -2026-01-28 14:14:13.859 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.859 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.859 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.859 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.859 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.859 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.859 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.859 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.859 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.859 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.859 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.859 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.859 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.859 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.859 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.859 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.859 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.859 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.859 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.859 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.859 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.860 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.860 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Handles.ih3cmfwxzd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2b53wjzpk1-{0}-ih3cmfwxzd-ih3cmfwxzd.gz' -2026-01-28 14:14:13.860 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.860 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Handles.ih3cmfwxzd.wasm - 200 5430 application/wasm 2.5209ms -2026-01-28 14:14:13.865 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.RuntimeInformation.nvwt5l6jkw.wasm - null null -2026-01-28 14:14:13.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.866 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.866 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.867 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.867 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.867 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.867 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.867 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.867 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.867 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.867 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.868 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.InteropServices.RuntimeInformation.nvwt5l6jkw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5rxlvv130r-{0}-nvwt5l6jkw-nvwt5l6jkw.gz' -2026-01-28 14:14:13.868 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.868 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.RuntimeInformation.nvwt5l6jkw.wasm - 200 4918 application/wasm 2.7365ms -2026-01-28 14:14:13.873 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.0us88a4qml.wasm - null null -2026-01-28 14:14:13.874 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.874 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.874 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.874 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.874 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.874 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.875 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.875 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.875 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.875 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.875 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.875 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.875 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.875 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.875 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.876 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.InteropServices.0us88a4qml.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\t1e5pdefro-{0}-0us88a4qml-0us88a4qml.gz' -2026-01-28 14:14:13.876 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.876 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.0us88a4qml.wasm - 200 54587 application/wasm 2.9762ms -2026-01-28 14:14:13.882 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Intrinsics.bd7qf7pr2d.wasm - null null -2026-01-28 14:14:13.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.883 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.883 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.883 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.883 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.883 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.883 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.884 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.884 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.884 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.884 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.884 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.884 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.884 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.884 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.885 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Intrinsics.bd7qf7pr2d.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\q8hyt22w7t-{0}-bd7qf7pr2d-bd7qf7pr2d.gz' -2026-01-28 14:14:13.885 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.885 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Intrinsics.bd7qf7pr2d.wasm - 200 6966 application/wasm 2.8948ms -2026-01-28 14:14:13.890 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Loader.opo019ewpt.wasm - null null -2026-01-28 14:14:13.891 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.891 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.891 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.891 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.891 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.891 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.891 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.891 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.891 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.891 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.891 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.891 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.891 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.891 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.891 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.891 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.891 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.891 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.891 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.891 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.891 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.891 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.892 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Loader.opo019ewpt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lulkrkawwl-{0}-opo019ewpt-opo019ewpt.gz' -2026-01-28 14:14:13.892 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.892 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Loader.opo019ewpt.wasm - 200 5430 application/wasm 2.3141ms -2026-01-28 14:14:13.897 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Numerics.opgppvbdi6.wasm - null null -2026-01-28 14:14:13.898 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.898 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.898 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.898 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.898 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.898 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.898 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.898 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.898 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.898 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.898 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.898 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.898 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.898 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.899 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.899 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.899 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.899 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.899 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.899 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.899 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.899 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.901 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Numerics.opgppvbdi6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\15lzitxs0t-{0}-opgppvbdi6-opgppvbdi6.gz' -2026-01-28 14:14:13.901 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.901 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Numerics.opgppvbdi6.wasm - 200 134986 application/wasm 3.8101ms -2026-01-28 14:14:13.907 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Formatters.seonqd55ks.wasm - null null -2026-01-28 14:14:13.907 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.907 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.907 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.907 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.907 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.908 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.908 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.908 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.908 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.908 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.908 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.908 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.908 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.908 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.908 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.908 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.908 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.908 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.908 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.908 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.908 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.908 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.909 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.Formatters.seonqd55ks.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n0v9yl0jh6-{0}-seonqd55ks-seonqd55ks.gz' -2026-01-28 14:14:13.909 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.909 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Formatters.seonqd55ks.wasm - 200 55611 application/wasm 2.9358ms -2026-01-28 14:14:13.914 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Json.zn0mp7kdmp.wasm - null null -2026-01-28 14:14:13.915 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.915 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.915 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.915 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.915 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.915 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.915 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.915 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.915 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.915 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.915 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.915 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.915 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.915 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.916 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.916 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.916 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.916 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.916 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.916 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.916 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.916 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.917 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.Json.zn0mp7kdmp.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wh4w9dsljz-{0}-zn0mp7kdmp-zn0mp7kdmp.gz' -2026-01-28 14:14:13.917 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.917 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Json.zn0mp7kdmp.wasm - 200 5430 application/wasm 2.3564ms -2026-01-28 14:14:13.922 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Primitives.yueinvlj2j.wasm - null null -2026-01-28 14:14:13.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.923 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.923 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.923 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.923 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.923 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.923 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.923 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.923 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.923 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.923 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.923 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.923 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.923 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.924 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.924 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.Primitives.yueinvlj2j.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n1gdasegta-{0}-yueinvlj2j-yueinvlj2j.gz' -2026-01-28 14:14:13.924 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.925 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Primitives.yueinvlj2j.wasm - 200 13110 application/wasm 2.6507ms -2026-01-28 14:14:13.929 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Xml.v8gymdawqg.wasm - null null -2026-01-28 14:14:13.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.930 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.931 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.931 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.931 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.931 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.931 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.931 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.931 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.931 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.931 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.932 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.Xml.v8gymdawqg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j0zo8hxl7f-{0}-v8gymdawqg-v8gymdawqg.gz' -2026-01-28 14:14:13.932 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.932 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Xml.v8gymdawqg.wasm - 200 6454 application/wasm 2.6018ms -2026-01-28 14:14:13.938 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.gs7sg0u955.wasm - null null -2026-01-28 14:14:13.938 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.938 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.938 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.938 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.938 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.939 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.939 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.939 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.939 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.939 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.939 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.939 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.939 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.939 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.939 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.939 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.939 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.939 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.939 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.939 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.939 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.939 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.940 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.gs7sg0u955.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c9urnolypd-{0}-gs7sg0u955-gs7sg0u955.gz' -2026-01-28 14:14:13.940 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.940 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.gs7sg0u955.wasm - 200 6966 application/wasm 2.4007ms -2026-01-28 14:14:13.946 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.6bp69qbwkj.wasm - null null -2026-01-28 14:14:13.946 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.947 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.947 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.947 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.947 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.947 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.947 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.947 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.947 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.947 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.947 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.947 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.947 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.947 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.947 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.947 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.947 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.947 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.947 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.947 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.947 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.948 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.949 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.6bp69qbwkj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\35jd1dce24-{0}-6bp69qbwkj-6bp69qbwkj.gz' -2026-01-28 14:14:13.949 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.949 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.6bp69qbwkj.wasm - 200 34619 application/wasm 3.2851ms -2026-01-28 14:14:13.955 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.AccessControl.6rjkcrpkiw.wasm - null null -2026-01-28 14:14:13.956 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.956 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.956 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.956 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.956 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.956 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.956 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.956 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.956 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.956 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.956 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.956 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.956 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.956 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.957 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.957 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.957 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.957 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.957 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.957 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.957 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.957 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.958 +03:00 [INF] Sending file. Request path: '_framework/System.Security.AccessControl.6rjkcrpkiw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ad9pnuyu1n-{0}-6rjkcrpkiw-6rjkcrpkiw.gz' -2026-01-28 14:14:13.958 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.958 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.AccessControl.6rjkcrpkiw.wasm - 200 47931 application/wasm 2.9593ms -2026-01-28 14:14:13.964 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Claims.hk3ae85l96.wasm - null null -2026-01-28 14:14:13.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.966 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.966 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.966 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.966 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.966 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.966 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.966 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.966 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.966 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.966 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.966 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.966 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.966 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.966 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.966 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.966 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.966 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.967 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Claims.hk3ae85l96.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vbfh1norfg-{0}-hk3ae85l96-hk3ae85l96.gz' -2026-01-28 14:14:13.968 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.968 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Claims.hk3ae85l96.wasm - 200 44859 application/wasm 3.6877ms -2026-01-28 14:14:13.974 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Algorithms.whyyu092ah.wasm - null null -2026-01-28 14:14:13.975 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.975 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.975 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.975 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.975 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.975 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.975 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.975 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.975 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.975 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.975 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.975 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.975 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.975 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.976 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.976 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.976 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.976 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.976 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.976 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.976 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.976 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.977 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Algorithms.whyyu092ah.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lts4eaytip-{0}-whyyu092ah-whyyu092ah.gz' -2026-01-28 14:14:13.977 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.977 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Algorithms.whyyu092ah.wasm - 200 6966 application/wasm 2.9453ms -2026-01-28 14:14:13.983 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Cng.m6se2pcpu2.wasm - null null -2026-01-28 14:14:13.984 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.984 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.984 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.984 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.984 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.985 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.985 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.985 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.985 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.985 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.985 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.985 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.985 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.985 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.986 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.986 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.986 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.986 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.986 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.986 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.986 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.986 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.987 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Cng.m6se2pcpu2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fe4hdxl6xd-{0}-m6se2pcpu2-m6se2pcpu2.gz' -2026-01-28 14:14:13.987 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.987 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Cng.m6se2pcpu2.wasm - 200 5942 application/wasm 3.9086ms -2026-01-28 14:14:13.992 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Csp.hhoaoktf3s.wasm - null null -2026-01-28 14:14:13.993 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.993 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:13.993 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:13.993 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:13.993 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.994 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:13.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:13.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:13.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:13.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:13.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:13.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:13.994 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:13.994 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:13.994 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:13.994 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:13.994 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:13.994 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:13.994 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:13.994 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:13.994 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.996 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Csp.hhoaoktf3s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\e6c5growx5-{0}-hhoaoktf3s-hhoaoktf3s.gz' -2026-01-28 14:14:13.996 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:13.996 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Csp.hhoaoktf3s.wasm - 200 5942 application/wasm 3.3812ms -2026-01-28 14:14:14.001 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Encoding.52vboi33gw.wasm - null null -2026-01-28 14:14:14.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.002 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.002 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.002 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.002 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.003 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.003 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.003 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.003 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.003 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.003 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.003 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.003 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.003 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.003 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.003 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.003 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.003 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.003 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.003 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.003 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.003 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.004 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Encoding.52vboi33gw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9nnkgpt0mz-{0}-52vboi33gw-52vboi33gw.gz' -2026-01-28 14:14:14.004 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.004 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Encoding.52vboi33gw.wasm - 200 5430 application/wasm 2.887ms -2026-01-28 14:14:14.009 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.OpenSsl.ml0tyz68i8.wasm - null null -2026-01-28 14:14:14.010 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.010 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.010 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.010 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.010 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.010 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.010 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.010 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.010 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.010 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.010 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.011 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.011 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.011 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.011 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.011 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.011 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.011 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.011 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.011 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.012 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.OpenSsl.ml0tyz68i8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ggd18ngby9-{0}-ml0tyz68i8-ml0tyz68i8.gz' -2026-01-28 14:14:14.012 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.012 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.OpenSsl.ml0tyz68i8.wasm - 200 5430 application/wasm 2.6805ms -2026-01-28 14:14:14.018 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Primitives.1dlu2dh7y8.wasm - null null -2026-01-28 14:14:14.019 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.019 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.019 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.019 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.019 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.019 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.019 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.019 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.019 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.019 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.019 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.019 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.019 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.019 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.020 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.020 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.020 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.020 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.020 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.020 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.020 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.020 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.021 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Primitives.1dlu2dh7y8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ibvt59z0m8-{0}-1dlu2dh7y8-1dlu2dh7y8.gz' -2026-01-28 14:14:14.021 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.021 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Primitives.1dlu2dh7y8.wasm - 200 5430 application/wasm 3.2808ms -2026-01-28 14:14:14.026 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.X509Certificates.6uh0qispd4.wasm - null null -2026-01-28 14:14:14.027 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.027 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.027 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.027 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.027 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.028 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.028 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.028 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.028 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.028 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.028 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.028 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.028 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.028 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.028 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.028 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.028 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.028 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.028 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.028 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.028 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.028 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.029 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.X509Certificates.6uh0qispd4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kv01n2x7di-{0}-6uh0qispd4-6uh0qispd4.gz' -2026-01-28 14:14:14.029 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.029 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.X509Certificates.6uh0qispd4.wasm - 200 6454 application/wasm 2.9031ms -2026-01-28 14:14:14.035 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.mbts90zzn6.wasm - null null -2026-01-28 14:14:14.036 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.036 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.036 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.036 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.036 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.037 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.037 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.037 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.037 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.037 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.037 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.037 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.037 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.037 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.037 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.037 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.037 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.037 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.037 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.037 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.037 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.037 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.042 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.mbts90zzn6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\najz3idkx9-{0}-mbts90zzn6-mbts90zzn6.gz' -2026-01-28 14:14:14.042 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.042 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.mbts90zzn6.wasm - 200 642453 application/wasm 6.4113ms -2026-01-28 14:14:14.050 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Principal.Windows.rp57epmxji.wasm - null null -2026-01-28 14:14:14.050 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.050 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.050 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.050 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.050 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.051 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.051 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.051 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.051 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.051 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.051 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.051 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.051 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.051 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.051 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.051 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.051 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.051 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.051 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.051 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.051 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.051 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.052 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Principal.Windows.rp57epmxji.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6c4gn33xif-{0}-rp57epmxji-rp57epmxji.gz' -2026-01-28 14:14:14.052 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.052 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Principal.Windows.rp57epmxji.wasm - 200 27446 application/wasm 2.703ms -2026-01-28 14:14:14.057 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Principal.0lplkfn42e.wasm - null null -2026-01-28 14:14:14.058 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.059 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.059 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.059 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.059 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.059 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.059 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.059 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.059 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.059 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.059 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.060 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Principal.0lplkfn42e.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bapixjfy1p-{0}-0lplkfn42e-0lplkfn42e.gz' -2026-01-28 14:14:14.060 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.060 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Principal.0lplkfn42e.wasm - 200 4918 application/wasm 2.6659ms -2026-01-28 14:14:14.065 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.SecureString.dhwpww24h2.wasm - null null -2026-01-28 14:14:14.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.066 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.066 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.066 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.066 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.066 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.067 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.067 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.067 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.067 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.067 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.067 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.067 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.067 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.067 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.067 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.067 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.067 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.068 +03:00 [INF] Sending file. Request path: '_framework/System.Security.SecureString.dhwpww24h2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\z7kpj97i3q-{0}-dhwpww24h2-dhwpww24h2.gz' -2026-01-28 14:14:14.068 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.068 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.SecureString.dhwpww24h2.wasm - 200 5430 application/wasm 2.8246ms -2026-01-28 14:14:14.072 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.l9hsxb0sdk.wasm - null null -2026-01-28 14:14:14.073 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.073 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.073 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.073 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.073 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.073 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.074 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.074 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.074 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.074 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.074 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.074 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.074 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.074 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.074 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.075 +03:00 [INF] Sending file. Request path: '_framework/System.Security.l9hsxb0sdk.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4w9pau8lca-{0}-l9hsxb0sdk-l9hsxb0sdk.gz' -2026-01-28 14:14:14.075 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.075 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.l9hsxb0sdk.wasm - 200 7990 application/wasm 2.4144ms -2026-01-28 14:14:14.080 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ServiceModel.Web.zcvkay2idv.wasm - null null -2026-01-28 14:14:14.080 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.081 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.081 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.081 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.081 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.081 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.081 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.081 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.081 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.081 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.081 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.081 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.081 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.081 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.081 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.081 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.081 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.082 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.082 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.082 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.082 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.082 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.083 +03:00 [INF] Sending file. Request path: '_framework/System.ServiceModel.Web.zcvkay2idv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wy542848av-{0}-zcvkay2idv-zcvkay2idv.gz' -2026-01-28 14:14:14.083 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.083 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ServiceModel.Web.zcvkay2idv.wasm - 200 6454 application/wasm 3.0401ms -2026-01-28 14:14:14.087 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ServiceProcess.x10kdcthsy.wasm - null null -2026-01-28 14:14:14.088 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.088 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.088 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.088 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.088 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.088 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.089 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.089 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.089 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.089 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.089 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.089 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.089 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.089 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.089 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.089 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.089 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.089 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.089 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.089 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.089 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.089 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.090 +03:00 [INF] Sending file. Request path: '_framework/System.ServiceProcess.x10kdcthsy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2yoiew09ss-{0}-x10kdcthsy-x10kdcthsy.gz' -2026-01-28 14:14:14.090 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.090 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ServiceProcess.x10kdcthsy.wasm - 200 5430 application/wasm 2.4421ms -2026-01-28 14:14:14.095 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.CodePages.36p8aommvy.wasm - null null -2026-01-28 14:14:14.095 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.095 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.095 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.095 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.095 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.096 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.096 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.096 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.096 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.096 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.096 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.096 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.096 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.096 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.096 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.096 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.096 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.096 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.096 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.096 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.096 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.096 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.100 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Encoding.CodePages.36p8aommvy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lrsfp7sbdw-{0}-36p8aommvy-36p8aommvy.gz' -2026-01-28 14:14:14.100 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.101 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.CodePages.36p8aommvy.wasm - 200 732580 application/wasm 5.9876ms -2026-01-28 14:14:14.107 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.Extensions.7s9z475qvj.wasm - null null -2026-01-28 14:14:14.108 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.108 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.108 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.108 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.108 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.108 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.108 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.108 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.109 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.109 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.109 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.109 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.109 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.109 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.109 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.109 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.109 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.110 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Encoding.Extensions.7s9z475qvj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ij3a13vyp7-{0}-7s9z475qvj-7s9z475qvj.gz' -2026-01-28 14:14:14.110 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.110 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.Extensions.7s9z475qvj.wasm - 200 5430 application/wasm 2.585ms -2026-01-28 14:14:14.114 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.ldc2rqh80i.wasm - null null -2026-01-28 14:14:14.115 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.115 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.116 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.116 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.116 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.116 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.116 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.116 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.116 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.116 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.116 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.117 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Encoding.ldc2rqh80i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\w1z5z4lpop-{0}-ldc2rqh80i-ldc2rqh80i.gz' -2026-01-28 14:14:14.117 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.117 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.ldc2rqh80i.wasm - 200 5430 application/wasm 3.0163ms -2026-01-28 14:14:14.122 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Encodings.Web.8dol48h5sw.wasm - null null -2026-01-28 14:14:14.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.123 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.123 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.123 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.123 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.123 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.123 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.123 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.123 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.123 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.123 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.123 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.123 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.123 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.123 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.123 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.124 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Encodings.Web.8dol48h5sw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b5ft8vnha4-{0}-8dol48h5sw-8dol48h5sw.gz' -2026-01-28 14:14:14.124 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.125 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Encodings.Web.8dol48h5sw.wasm - 200 55611 application/wasm 2.7077ms -2026-01-28 14:14:14.130 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Json.3vc5r851ef.wasm - null null -2026-01-28 14:14:14.130 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.131 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.131 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.131 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.131 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.131 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.131 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.132 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.132 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.132 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.132 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.132 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.132 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.132 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.132 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.136 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Json.3vc5r851ef.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\is1y7e0ewf-{0}-3vc5r851ef-3vc5r851ef.gz' -2026-01-28 14:14:14.136 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.136 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Json.3vc5r851ef.wasm - 200 638869 application/wasm 6.3003ms -2026-01-28 14:14:14.143 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.RegularExpressions.fa55zq7noc.wasm - null null -2026-01-28 14:14:14.144 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.144 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.144 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.144 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.144 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.144 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.144 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.144 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.144 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.144 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.145 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.145 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.145 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.145 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.145 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.145 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.145 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.145 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.148 +03:00 [INF] Sending file. Request path: '_framework/System.Text.RegularExpressions.fa55zq7noc.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b5e2kemd87-{0}-fa55zq7noc-fa55zq7noc.gz' -2026-01-28 14:14:14.148 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.148 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.RegularExpressions.fa55zq7noc.wasm - 200 374637 application/wasm 4.6127ms -2026-01-28 14:14:14.154 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.AccessControl.0jx6t23d4a.wasm - null null -2026-01-28 14:14:14.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.154 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.154 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.154 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.154 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.155 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.155 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.155 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.155 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.155 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.155 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.155 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.155 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.155 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.155 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.155 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.155 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.155 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.155 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.155 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.155 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.155 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.156 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.AccessControl.0jx6t23d4a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7hxeyq70th-{0}-0jx6t23d4a-0jx6t23d4a.gz' -2026-01-28 14:14:14.156 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.156 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.AccessControl.0jx6t23d4a.wasm - 200 23350 application/wasm 2.2652ms -2026-01-28 14:14:14.162 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Channels.5yls0a3tlo.wasm - null null -2026-01-28 14:14:14.163 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.163 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.163 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.163 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.163 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.164 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.164 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.164 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.164 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.164 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.164 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.164 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.164 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.164 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.164 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.165 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Channels.5yls0a3tlo.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\yfc45zghwv-{0}-5yls0a3tlo-5yls0a3tlo.gz' -2026-01-28 14:14:14.165 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.165 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Channels.5yls0a3tlo.wasm - 200 56123 application/wasm 3.1709ms -2026-01-28 14:14:14.171 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Overlapped.7fzdvfjpcj.wasm - null null -2026-01-28 14:14:14.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.172 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.172 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.172 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.172 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.172 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.172 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.173 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.173 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.173 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.173 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.173 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.173 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.173 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.173 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.174 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Overlapped.7fzdvfjpcj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1nn32vjcux-{0}-7fzdvfjpcj-7fzdvfjpcj.gz' -2026-01-28 14:14:14.174 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.174 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Overlapped.7fzdvfjpcj.wasm - 200 5430 application/wasm 2.9081ms -2026-01-28 14:14:14.180 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Dataflow.b1bop2hs5a.wasm - null null -2026-01-28 14:14:14.180 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.180 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.180 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.180 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.181 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.181 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.181 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.181 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.181 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.181 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.181 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.181 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.181 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.181 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.181 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.181 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.181 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.181 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.181 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.181 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.181 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.181 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.183 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Tasks.Dataflow.b1bop2hs5a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bygxarg1od-{0}-b1bop2hs5a-b1bop2hs5a.gz' -2026-01-28 14:14:14.183 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.183 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Dataflow.b1bop2hs5a.wasm - 200 175439 application/wasm 3.3273ms -2026-01-28 14:14:14.188 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Extensions.w1aib1cdwa.wasm - null null -2026-01-28 14:14:14.189 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.189 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.189 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.189 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.189 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.189 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.189 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.189 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.189 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.189 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.189 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.189 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.189 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.189 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.190 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.190 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.190 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.190 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.190 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.190 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.190 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.190 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.191 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Tasks.Extensions.w1aib1cdwa.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wzcconrhmx-{0}-w1aib1cdwa-w1aib1cdwa.gz' -2026-01-28 14:14:14.191 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.191 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Extensions.w1aib1cdwa.wasm - 200 5430 application/wasm 2.5006ms -2026-01-28 14:14:14.195 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Parallel.k09pj8k6wz.wasm - null null -2026-01-28 14:14:14.196 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.196 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.196 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.196 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.196 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.197 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.197 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.197 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.197 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.197 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.197 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.197 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.197 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.197 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.197 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.198 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Tasks.Parallel.k09pj8k6wz.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\eo71wakl9t-{0}-k09pj8k6wz-k09pj8k6wz.gz' -2026-01-28 14:14:14.198 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.198 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Parallel.k09pj8k6wz.wasm - 200 51003 application/wasm 2.5651ms -2026-01-28 14:14:14.203 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.ixxtp5uj8k.wasm - null null -2026-01-28 14:14:14.203 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.203 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.203 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.203 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.203 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.204 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.204 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.204 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.204 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.204 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.204 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.204 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.204 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.204 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.204 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.204 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.204 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.204 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.204 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.204 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.204 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.204 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.205 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Tasks.ixxtp5uj8k.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dmqlrfwu1b-{0}-ixxtp5uj8k-ixxtp5uj8k.gz' -2026-01-28 14:14:14.205 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.205 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.ixxtp5uj8k.wasm - 200 6454 application/wasm 2.502ms -2026-01-28 14:14:14.210 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Thread.oikmdgabjt.wasm - null null -2026-01-28 14:14:14.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.211 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.211 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.211 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.211 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.211 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.211 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.211 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.211 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.211 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.211 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.211 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.211 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.211 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.211 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.212 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Thread.oikmdgabjt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v09yqluov3-{0}-oikmdgabjt-oikmdgabjt.gz' -2026-01-28 14:14:14.212 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.212 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Thread.oikmdgabjt.wasm - 200 5430 application/wasm 2.3394ms -2026-01-28 14:14:14.217 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.ThreadPool.szctd5y8bn.wasm - null null -2026-01-28 14:14:14.217 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.218 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.218 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.218 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.218 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.218 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.218 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.218 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.218 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.218 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.218 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.218 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.218 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.218 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.218 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.219 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.ThreadPool.szctd5y8bn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jfyqp856kd-{0}-szctd5y8bn-szctd5y8bn.gz' -2026-01-28 14:14:14.219 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.219 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.ThreadPool.szctd5y8bn.wasm - 200 5430 application/wasm 2.427ms -2026-01-28 14:14:14.223 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Timer.k8rrsskw5o.wasm - null null -2026-01-28 14:14:14.224 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.224 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.224 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.224 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.224 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.224 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.224 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.224 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.224 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.224 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.224 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.224 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.224 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.224 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.225 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.225 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.225 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.225 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.225 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.225 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.225 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.225 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.225 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Timer.k8rrsskw5o.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kw1ofqxbky-{0}-k8rrsskw5o-k8rrsskw5o.gz' -2026-01-28 14:14:14.225 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.226 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Timer.k8rrsskw5o.wasm - 200 4918 application/wasm 2.2761ms -2026-01-28 14:14:14.230 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.s2hrn953g9.wasm - null null -2026-01-28 14:14:14.231 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.231 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.231 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.232 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.232 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.232 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.232 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.232 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.232 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.232 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.232 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.232 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.232 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.232 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.233 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.233 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.233 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.233 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.233 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.233 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.233 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.233 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.234 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.s2hrn953g9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6obifrcy4d-{0}-s2hrn953g9-s2hrn953g9.gz' -2026-01-28 14:14:14.234 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.234 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.s2hrn953g9.wasm - 200 34619 application/wasm 3.7667ms -2026-01-28 14:14:14.239 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Transactions.Local.nufsb5pyrr.wasm - null null -2026-01-28 14:14:14.239 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.239 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.239 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.240 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.240 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.240 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.240 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.240 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.240 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.240 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.240 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.240 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.240 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.240 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.240 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.242 +03:00 [INF] Sending file. Request path: '_framework/System.Transactions.Local.nufsb5pyrr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vnl4qu3in7-{0}-nufsb5pyrr-nufsb5pyrr.gz' -2026-01-28 14:14:14.242 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.242 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Transactions.Local.nufsb5pyrr.wasm - 200 165711 application/wasm 3.2151ms -2026-01-28 14:14:14.246 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Transactions.3ezo8twol7.wasm - null null -2026-01-28 14:14:14.247 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.247 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.247 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.247 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.247 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.248 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.248 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.248 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.248 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.248 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.248 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.248 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.248 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.248 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.248 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.249 +03:00 [INF] Sending file. Request path: '_framework/System.Transactions.3ezo8twol7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v8zohqruou-{0}-3ezo8twol7-3ezo8twol7.gz' -2026-01-28 14:14:14.249 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.249 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Transactions.3ezo8twol7.wasm - 200 6454 application/wasm 2.5281ms -2026-01-28 14:14:14.253 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ValueTuple.lle7yi2fzv.wasm - null null -2026-01-28 14:14:14.254 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.254 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.254 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.254 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.254 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.254 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.254 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.254 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.254 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.254 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.254 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.254 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.254 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.254 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.254 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.254 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.254 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.254 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.254 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.254 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.254 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.255 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.255 +03:00 [INF] Sending file. Request path: '_framework/System.ValueTuple.lle7yi2fzv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\io39vdvq9n-{0}-lle7yi2fzv-lle7yi2fzv.gz' -2026-01-28 14:14:14.255 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.255 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ValueTuple.lle7yi2fzv.wasm - 200 5430 application/wasm 2.1591ms -2026-01-28 14:14:14.260 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Web.HttpUtility.u5rdfpwou6.wasm - null null -2026-01-28 14:14:14.260 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.260 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.260 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.260 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.260 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.261 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.261 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.261 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.261 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.261 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.261 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.261 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.261 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.261 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.261 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.261 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.261 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.261 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.261 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.261 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.261 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.261 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.262 +03:00 [INF] Sending file. Request path: '_framework/System.Web.HttpUtility.u5rdfpwou6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rn4buhtgqs-{0}-u5rdfpwou6-u5rdfpwou6.gz' -2026-01-28 14:14:14.262 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.262 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Web.HttpUtility.u5rdfpwou6.wasm - 200 19766 application/wasm 2.2874ms -2026-01-28 14:14:14.267 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Web.wygikf6la5.wasm - null null -2026-01-28 14:14:14.267 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.268 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.268 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.268 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.268 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.268 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.268 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.268 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.268 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.268 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.268 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.268 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.268 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.268 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.268 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.269 +03:00 [INF] Sending file. Request path: '_framework/System.Web.wygikf6la5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ru9f3t39bb-{0}-wygikf6la5-wygikf6la5.gz' -2026-01-28 14:14:14.269 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.269 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Web.wygikf6la5.wasm - 200 4918 application/wasm 2.0242ms -2026-01-28 14:14:14.273 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Windows.axtn86mzz6.wasm - null null -2026-01-28 14:14:14.273 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.274 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.274 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.274 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.274 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.274 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.274 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.274 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.274 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.274 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.274 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.274 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.274 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.274 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.274 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.274 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.274 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.274 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.274 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.274 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.274 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.274 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.275 +03:00 [INF] Sending file. Request path: '_framework/System.Windows.axtn86mzz6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1my90r3byi-{0}-axtn86mzz6-axtn86mzz6.gz' -2026-01-28 14:14:14.275 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.275 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Windows.axtn86mzz6.wasm - 200 5430 application/wasm 2.2046ms -2026-01-28 14:14:14.280 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.Linq.j4b5ce3025.wasm - null null -2026-01-28 14:14:14.281 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.281 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.281 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.281 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.281 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.281 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.281 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.281 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.281 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.281 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.281 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.281 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.281 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.281 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.281 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.281 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.281 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.281 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.281 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.281 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.281 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.281 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.282 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.Linq.j4b5ce3025.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2m6czvvsuo-{0}-j4b5ce3025-j4b5ce3025.gz' -2026-01-28 14:14:14.282 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.282 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.Linq.j4b5ce3025.wasm - 200 5430 application/wasm 2.3723ms -2026-01-28 14:14:14.287 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.ReaderWriter.60z52rxro3.wasm - null null -2026-01-28 14:14:14.287 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.288 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.288 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.288 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.288 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.288 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.288 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.288 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.288 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.288 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.288 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.288 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.288 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.288 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.288 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.289 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.ReaderWriter.60z52rxro3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rg4isli5jp-{0}-60z52rxro3-60z52rxro3.gz' -2026-01-28 14:14:14.289 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.289 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.ReaderWriter.60z52rxro3.wasm - 200 11574 application/wasm 2.4504ms -2026-01-28 14:14:14.295 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.Serialization.pm5yw3aolk.wasm - null null -2026-01-28 14:14:14.295 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.295 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.295 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.295 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.295 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.296 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.296 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.296 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.296 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.296 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.296 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.296 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.296 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.296 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.296 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.296 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.297 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.Serialization.pm5yw3aolk.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\o41cy5pfaz-{0}-pm5yw3aolk-pm5yw3aolk.gz' -2026-01-28 14:14:14.297 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.297 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.Serialization.pm5yw3aolk.wasm - 200 5942 application/wasm 2.5825ms -2026-01-28 14:14:14.302 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XDocument.b4xtw4lbmx.wasm - null null -2026-01-28 14:14:14.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.303 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.303 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.303 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.303 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.303 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.303 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.303 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.303 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.303 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.303 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.303 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.303 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.303 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.304 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.304 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XDocument.b4xtw4lbmx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\veh6k128ug-{0}-b4xtw4lbmx-b4xtw4lbmx.gz' -2026-01-28 14:14:14.304 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.304 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XDocument.b4xtw4lbmx.wasm - 200 5430 application/wasm 2.3922ms -2026-01-28 14:14:14.310 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XPath.XDocument.p6s7bmw3ej.wasm - null null -2026-01-28 14:14:14.311 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.311 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.311 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.311 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.311 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.311 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.311 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.311 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.311 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.311 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.311 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.311 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.311 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.311 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.311 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.311 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.311 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.311 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.311 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.311 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.311 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.312 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.312 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XPath.XDocument.p6s7bmw3ej.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dp2x1o3mj5-{0}-p6s7bmw3ej-p6s7bmw3ej.gz' -2026-01-28 14:14:14.312 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.312 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XPath.XDocument.p6s7bmw3ej.wasm - 200 5430 application/wasm 2.4328ms -2026-01-28 14:14:14.318 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XPath.egozus3d9z.wasm - null null -2026-01-28 14:14:14.319 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.319 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.319 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.319 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.319 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.319 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.319 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.319 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.319 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.319 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.319 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.319 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.319 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.319 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.319 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.319 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.319 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.319 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.319 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.319 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.319 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.320 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.320 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XPath.egozus3d9z.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6kx3a3nw65-{0}-egozus3d9z-egozus3d9z.gz' -2026-01-28 14:14:14.320 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.320 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XPath.egozus3d9z.wasm - 200 5430 application/wasm 2.438ms -2026-01-28 14:14:14.326 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XmlDocument.771pf23z5h.wasm - null null -2026-01-28 14:14:14.326 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.327 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.327 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.327 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.327 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.327 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.327 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.327 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.327 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.327 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.327 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.327 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.327 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.327 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.327 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.328 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.328 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XmlDocument.771pf23z5h.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mit9lp1cls-{0}-771pf23z5h-771pf23z5h.gz' -2026-01-28 14:14:14.328 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.328 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XmlDocument.771pf23z5h.wasm - 200 5430 application/wasm 2.5957ms -2026-01-28 14:14:14.334 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XmlSerializer.h0uogtkh03.wasm - null null -2026-01-28 14:14:14.335 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.335 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.335 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.335 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.335 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.335 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.335 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.335 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.335 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.335 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.335 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.335 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.335 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.335 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.335 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.335 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.335 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.335 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.335 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.335 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.335 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.336 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.336 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XmlSerializer.h0uogtkh03.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6ubynsl46b-{0}-h0uogtkh03-h0uogtkh03.gz' -2026-01-28 14:14:14.336 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.336 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XmlSerializer.h0uogtkh03.wasm - 200 7478 application/wasm 2.3985ms -2026-01-28 14:14:14.343 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.95nan2l20b.wasm - null null -2026-01-28 14:14:14.343 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.343 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.343 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.343 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.343 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.344 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.344 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.344 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.344 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.344 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.344 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.344 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.344 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.344 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.344 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.344 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.344 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.344 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.344 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.344 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.344 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.344 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.345 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.95nan2l20b.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pcooe0k5kk-{0}-95nan2l20b-95nan2l20b.gz' -2026-01-28 14:14:14.345 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.345 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.95nan2l20b.wasm - 200 13110 application/wasm 2.6631ms -2026-01-28 14:14:14.352 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.au65xu8d95.wasm - null null -2026-01-28 14:14:14.353 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.353 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.353 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.353 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.353 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.353 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.353 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.353 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.353 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.353 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.354 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.354 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.354 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.354 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.354 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.354 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.354 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.354 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.354 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.355 +03:00 [INF] Sending file. Request path: '_framework/System.au65xu8d95.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\um28rmltyb-{0}-au65xu8d95-au65xu8d95.gz' -2026-01-28 14:14:14.355 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.355 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.au65xu8d95.wasm - 200 39739 application/wasm 2.655ms -2026-01-28 14:14:14.360 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/WindowsBase.mi3hkxthj8.wasm - null null -2026-01-28 14:14:14.361 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.361 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.361 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.361 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.361 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.361 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.361 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.361 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.361 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.361 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.361 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.361 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.361 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.361 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.361 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.361 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.361 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.361 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.361 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.361 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.361 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.362 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.362 +03:00 [INF] Sending file. Request path: '_framework/WindowsBase.mi3hkxthj8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8syd5uq41h-{0}-mi3hkxthj8-mi3hkxthj8.gz' -2026-01-28 14:14:14.362 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.363 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/WindowsBase.mi3hkxthj8.wasm - 200 5942 application/wasm 2.5129ms -2026-01-28 14:14:14.369 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/mscorlib.uifnjyorgo.wasm - null null -2026-01-28 14:14:14.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.370 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.370 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.370 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.370 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.370 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.370 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.370 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.370 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.370 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.370 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.370 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.370 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.370 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.371 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.372 +03:00 [INF] Sending file. Request path: '_framework/mscorlib.uifnjyorgo.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xpihquz2r5-{0}-uifnjyorgo-uifnjyorgo.gz' -2026-01-28 14:14:14.372 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.372 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/mscorlib.uifnjyorgo.wasm - 200 49467 application/wasm 3.1016ms -2026-01-28 14:14:14.377 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/netstandard.qvqeanc7qr.wasm - null null -2026-01-28 14:14:14.378 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.378 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.378 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.378 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.378 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.378 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.379 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.379 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.379 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.379 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.379 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.379 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.379 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.379 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.379 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.379 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.379 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.379 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.379 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.379 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.379 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.379 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.381 +03:00 [INF] Sending file. Request path: '_framework/netstandard.qvqeanc7qr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ciukkw19kg-{0}-qvqeanc7qr-qvqeanc7qr.gz' -2026-01-28 14:14:14.381 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.381 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/netstandard.qvqeanc7qr.wasm - 200 90432 application/wasm 3.6617ms -2026-01-28 14:14:14.388 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Application.Contracts.uq8ziq260z.wasm - null null -2026-01-28 14:14:14.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.389 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.389 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.389 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.389 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.389 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.389 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.390 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.390 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.390 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.390 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.390 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.390 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.390 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.390 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.391 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Application.Contracts.uq8ziq260z.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0lm5ebgqof-{0}-uq8ziq260z-uq8ziq260z.gz' -2026-01-28 14:14:14.391 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.391 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Application.Contracts.uq8ziq260z.wasm - 200 8502 application/wasm 2.8781ms -2026-01-28 14:14:14.398 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Domain.Shared.a1r7gug13a.wasm - null null -2026-01-28 14:14:14.398 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.398 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.398 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.398 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.398 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.399 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.399 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.399 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.399 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.399 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.399 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.399 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.399 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.399 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.399 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.399 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.399 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.399 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.399 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.399 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.399 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.399 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.400 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Domain.Shared.a1r7gug13a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\qwx72m6fc1-{0}-a1r7gug13a-a1r7gug13a.gz' -2026-01-28 14:14:14.400 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.400 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Domain.Shared.a1r7gug13a.wasm - 200 23350 application/wasm 2.3955ms -2026-01-28 14:14:14.406 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.HttpApi.Client.3wngu4nxgr.wasm - null null -2026-01-28 14:14:14.406 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.406 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.407 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.407 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.407 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.407 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.407 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.407 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.407 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.407 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.407 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.407 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.407 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.407 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.408 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.408 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.HttpApi.Client.3wngu4nxgr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\scloparoeu-{0}-3wngu4nxgr-3wngu4nxgr.gz' -2026-01-28 14:14:14.408 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.408 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.HttpApi.Client.3wngu4nxgr.wasm - 200 7990 application/wasm 2.6018ms -2026-01-28 14:14:14.413 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.Application.Contracts.k8182bqsqt.wasm - null null -2026-01-28 14:14:14.414 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.414 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.414 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.414 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.414 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.415 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.415 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.415 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.415 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.415 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.415 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.415 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.415 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.415 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.415 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.415 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.415 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.415 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.415 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.415 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.415 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.415 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.417 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Account.Application.Contracts.k8182bqsqt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lj6k2ntok7-{0}-k8182bqsqt-k8182bqsqt.gz' -2026-01-28 14:14:14.417 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.417 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.Application.Contracts.k8182bqsqt.wasm - 200 182095 application/wasm 3.543ms -2026-01-28 14:14:14.423 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.HttpApi.Client.tyjyiionpp.wasm - null null -2026-01-28 14:14:14.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.423 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.423 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.423 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.423 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.424 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.424 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.424 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.424 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.424 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.424 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.424 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.424 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.424 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.424 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.425 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Account.HttpApi.Client.tyjyiionpp.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\am5qy7si0d-{0}-tyjyiionpp-tyjyiionpp.gz' -2026-01-28 14:14:14.425 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.425 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.HttpApi.Client.tyjyiionpp.wasm - 200 36667 application/wasm 2.7406ms -2026-01-28 14:14:14.430 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.w8xtoi4w2w.wasm - null null -2026-01-28 14:14:14.431 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.431 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.431 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.431 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.431 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.431 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.431 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.431 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.431 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.431 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.431 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.431 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.431 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.431 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.432 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.432 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.432 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.432 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.432 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.432 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.432 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.432 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.433 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.w8xtoi4w2w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7rtjnlhdr6-{0}-w8xtoi4w2w-w8xtoi4w2w.gz' -2026-01-28 14:14:14.433 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.433 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.w8xtoi4w2w.wasm - 200 23350 application/wasm 2.6418ms -2026-01-28 14:14:14.439 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.tfobi4ljh9.wasm - null null -2026-01-28 14:14:14.440 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.440 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.440 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.440 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.440 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.440 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.440 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.440 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.440 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.440 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.440 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.440 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.440 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.440 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.440 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.440 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.440 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.440 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.440 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.440 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.440 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.441 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.441 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.tfobi4ljh9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dtw2jvq9ko-{0}-tfobi4ljh9-tfobi4ljh9.gz' -2026-01-28 14:14:14.441 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.441 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.tfobi4ljh9.wasm - 200 49979 application/wasm 2.5973ms -2026-01-28 14:14:14.447 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.v2vsbafrsu.wasm - null null -2026-01-28 14:14:14.447 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.447 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.447 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.447 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.447 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.448 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.448 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.448 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.448 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.448 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.448 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.448 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.448 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.448 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.448 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.449 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.v2vsbafrsu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\314s0gg35t-{0}-v2vsbafrsu-v2vsbafrsu.gz' -2026-01-28 14:14:14.449 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.449 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.v2vsbafrsu.wasm - 200 31030 application/wasm 2.6709ms -2026-01-28 14:14:14.454 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.g96eihnnrd.wasm - null null -2026-01-28 14:14:14.455 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.455 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.455 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.455 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.455 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.455 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.455 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.455 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.455 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.455 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.455 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.455 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.455 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.455 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.455 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.455 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.455 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.455 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.455 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.455 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.455 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.456 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.456 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.g96eihnnrd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xik7tubv32-{0}-g96eihnnrd-g96eihnnrd.gz' -2026-01-28 14:14:14.456 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.456 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.g96eihnnrd.wasm - 200 57659 application/wasm 2.44ms -2026-01-28 14:14:14.461 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.ysnekz4aln.wasm - null null -2026-01-28 14:14:14.461 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.462 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.462 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.462 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.462 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.462 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.462 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.462 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.462 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.462 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.462 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.462 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.462 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.462 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.462 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.462 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.462 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.462 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.462 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.462 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.462 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.462 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.463 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.ysnekz4aln.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\29y4ttn7p6-{0}-ysnekz4aln-ysnekz4aln.gz' -2026-01-28 14:14:14.463 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.463 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.ysnekz4aln.wasm - 200 56635 application/wasm 2.2766ms -2026-01-28 14:14:14.468 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.9bxiazim84.wasm - null null -2026-01-28 14:14:14.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.468 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.468 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.468 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.468 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.469 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.469 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.469 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.469 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.469 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.469 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.469 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.469 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.469 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.469 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.469 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.469 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.469 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.469 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.469 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.469 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.469 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.470 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.9bxiazim84.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0h6kud88pg-{0}-9bxiazim84-9bxiazim84.gz' -2026-01-28 14:14:14.470 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.470 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.9bxiazim84.wasm - 200 6966 application/wasm 2.1113ms -2026-01-28 14:14:14.474 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.tlnm5w6vzv.wasm - null null -2026-01-28 14:14:14.475 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.475 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.475 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.475 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.475 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.475 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.475 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.475 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.475 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.475 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.475 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.475 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.475 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.475 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.475 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.475 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.475 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.475 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.475 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.475 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.475 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.475 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.476 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.tlnm5w6vzv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\79f9hg2kci-{0}-tlnm5w6vzv-tlnm5w6vzv.gz' -2026-01-28 14:14:14.476 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.476 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.tlnm5w6vzv.wasm - 200 29494 application/wasm 2.1017ms -2026-01-28 14:14:14.480 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.vwbrjkm58i.wasm - null null -2026-01-28 14:14:14.481 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.481 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.481 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.481 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.481 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.482 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.482 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.482 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.482 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.482 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.482 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.482 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.482 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.482 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.482 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.482 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.482 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.482 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.482 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.482 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.482 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.482 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.483 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.vwbrjkm58i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v23sh1qt8y-{0}-vwbrjkm58i-vwbrjkm58i.gz' -2026-01-28 14:14:14.483 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.483 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.vwbrjkm58i.wasm - 200 9526 application/wasm 2.579ms -2026-01-28 14:14:14.488 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.w3letp91lq.wasm - null null -2026-01-28 14:14:14.488 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.489 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.489 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.489 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.489 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.489 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.489 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.489 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.489 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.489 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.489 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.489 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.489 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.489 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.489 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.489 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.489 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.489 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.489 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.489 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.489 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.489 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.490 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.w3letp91lq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5xzpephnhm-{0}-w3letp91lq-w3letp91lq.gz' -2026-01-28 14:14:14.490 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.490 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.w3letp91lq.wasm - 200 9526 application/wasm 2.4586ms -2026-01-28 14:14:14.495 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.3jjfqno7lg.wasm - null null -2026-01-28 14:14:14.496 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.496 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.496 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.496 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.496 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.496 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.496 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.496 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.496 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.496 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.496 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.496 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.496 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.496 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.496 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.496 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.496 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.496 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.496 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.496 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.496 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.497 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.497 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.3jjfqno7lg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wywr70k095-{0}-3jjfqno7lg-3jjfqno7lg.gz' -2026-01-28 14:14:14.497 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.498 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.3jjfqno7lg.wasm - 200 53051 application/wasm 2.45ms -2026-01-28 14:14:14.503 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Contracts.syr4dyw7am.wasm - null null -2026-01-28 14:14:14.504 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.504 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.504 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.504 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.504 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.504 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.504 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.504 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.504 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.504 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.504 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.504 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.504 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.504 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.504 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.504 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.504 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.504 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.504 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.504 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.504 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.505 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.505 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.Contracts.syr4dyw7am.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ch1l6yg9xg-{0}-syr4dyw7am-syr4dyw7am.gz' -2026-01-28 14:14:14.505 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.505 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Contracts.syr4dyw7am.wasm - 200 32054 application/wasm 2.3181ms -2026-01-28 14:14:14.511 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.bu7idw18jp.wasm - null null -2026-01-28 14:14:14.511 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.511 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.511 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.511 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.511 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.512 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.512 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.512 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.512 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.512 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.512 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.512 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.512 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.512 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.512 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.513 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.bu7idw18jp.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6qc21ahd0h-{0}-bu7idw18jp-bu7idw18jp.gz' -2026-01-28 14:14:14.513 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.513 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.bu7idw18jp.wasm - 200 24886 application/wasm 2.6046ms -2026-01-28 14:14:14.519 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.Contracts.ao19uqfxk1.wasm - null null -2026-01-28 14:14:14.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.519 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.519 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.519 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.519 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.520 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.520 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.520 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.520 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.520 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.520 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.520 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.520 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.520 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.520 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.520 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.520 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.520 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.520 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.520 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.520 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.520 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.521 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Auditing.Contracts.ao19uqfxk1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gvrtk0uenw-{0}-ao19uqfxk1-ao19uqfxk1.gz' -2026-01-28 14:14:14.521 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.521 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.Contracts.ao19uqfxk1.wasm - 200 6454 application/wasm 2.224ms -2026-01-28 14:14:14.526 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.96yxua01gc.wasm - null null -2026-01-28 14:14:14.527 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.527 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.527 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.527 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.527 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.527 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.527 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.527 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.527 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.527 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.527 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.527 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.527 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.527 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.527 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.527 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.527 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.527 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.527 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.527 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.527 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.527 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.528 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Auditing.96yxua01gc.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0bpurwxf4x-{0}-96yxua01gc-96yxua01gc.gz' -2026-01-28 14:14:14.528 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.528 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.96yxua01gc.wasm - 200 51003 application/wasm 2.4293ms -2026-01-28 14:14:14.533 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AuditLogging.Domain.Shared.dftqdjnknx.wasm - null null -2026-01-28 14:14:14.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.534 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.534 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.534 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.534 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.534 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.534 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.534 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.534 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.534 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.535 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.536 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AuditLogging.Domain.Shared.dftqdjnknx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\een9hz6ik5-{0}-dftqdjnknx-dftqdjnknx.gz' -2026-01-28 14:14:14.536 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.536 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AuditLogging.Domain.Shared.dftqdjnknx.wasm - 200 158026 application/wasm 3.0926ms -2026-01-28 14:14:14.541 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.Abstractions.afyzjlgpmi.wasm - null null -2026-01-28 14:14:14.541 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.541 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.541 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.541 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.541 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.542 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.542 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.542 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.542 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.542 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.542 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.542 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.542 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.542 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.542 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.542 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.542 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.542 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.542 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.542 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.542 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.542 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.543 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Authorization.Abstractions.afyzjlgpmi.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mzg3hwxb9z-{0}-afyzjlgpmi-afyzjlgpmi.gz' -2026-01-28 14:14:14.543 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.543 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.Abstractions.afyzjlgpmi.wasm - 200 36155 application/wasm 2.1737ms -2026-01-28 14:14:14.548 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.af69ln5ic4.wasm - null null -2026-01-28 14:14:14.549 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.549 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.549 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.549 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.549 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.549 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.549 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.549 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.549 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.549 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.549 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.549 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.549 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.549 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.549 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.549 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.549 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.549 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.549 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.549 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.549 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.550 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.551 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Authorization.af69ln5ic4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kmfgdovl74-{0}-af69ln5ic4-af69ln5ic4.gz' -2026-01-28 14:14:14.551 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.551 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.af69ln5ic4.wasm - 200 134986 application/wasm 3.4813ms -2026-01-28 14:14:14.558 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.757dvxj4ke.wasm - null null -2026-01-28 14:14:14.560 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.560 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.560 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.560 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.560 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.560 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.560 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.560 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.560 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.560 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.560 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.560 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.560 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.560 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.561 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.561 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.561 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.561 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.561 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.561 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.561 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.561 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.562 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Autofac.757dvxj4ke.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dnh2928fpn-{0}-757dvxj4ke-757dvxj4ke.gz' -2026-01-28 14:14:14.562 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.562 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.757dvxj4ke.wasm - 200 20790 application/wasm 3.8882ms -2026-01-28 14:14:14.572 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.WebAssembly.67r46affwj.wasm - null null -2026-01-28 14:14:14.573 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.573 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.573 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.573 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.573 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.573 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.573 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.573 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.573 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.573 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.573 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.573 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.573 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.574 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.574 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.574 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.574 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.574 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.574 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.574 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.574 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.574 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.575 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Autofac.WebAssembly.67r46affwj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fy88n7o3re-{0}-67r46affwj-67r46affwj.gz' -2026-01-28 14:14:14.575 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.575 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.WebAssembly.67r46affwj.wasm - 200 6454 application/wasm 2.3574ms -2026-01-28 14:14:14.579 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundJobs.Domain.Shared.1ndljj9fe1.wasm - null null -2026-01-28 14:14:14.580 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.580 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.580 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.580 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.580 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.580 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.580 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.580 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.580 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.580 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.580 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.580 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.580 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.580 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.581 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.581 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.581 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.581 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.581 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.581 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.581 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.581 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.582 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BackgroundJobs.Domain.Shared.1ndljj9fe1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\it8pbr6hs7-{0}-1ndljj9fe1-1ndljj9fe1.gz' -2026-01-28 14:14:14.582 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.582 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundJobs.Domain.Shared.1ndljj9fe1.wasm - 200 5430 application/wasm 2.8791ms -2026-01-28 14:14:14.587 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundWorkers.2p6fuqijf3.wasm - null null -2026-01-28 14:14:14.588 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.589 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.589 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.589 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.589 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.589 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.589 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.589 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.589 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.589 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.589 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.589 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.590 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BackgroundWorkers.2p6fuqijf3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tnta0aqntp-{0}-2p6fuqijf3-2p6fuqijf3.gz' -2026-01-28 14:14:14.590 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.590 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundWorkers.2p6fuqijf3.wasm - 200 25398 application/wasm 3.0645ms -2026-01-28 14:14:14.596 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Caching.815cqd6cda.wasm - null null -2026-01-28 14:14:14.596 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.596 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.597 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.597 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.597 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.597 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.597 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.597 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.597 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.597 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.597 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.597 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.597 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.597 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.597 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.597 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.597 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.597 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.597 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.597 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.597 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.598 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.599 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Caching.815cqd6cda.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5pr3wxuvo5-{0}-815cqd6cda-815cqd6cda.gz' -2026-01-28 14:14:14.599 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.599 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Caching.815cqd6cda.wasm - 200 85824 application/wasm 3.3577ms -2026-01-28 14:14:14.604 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Castle.Core.h40m7fuufn.wasm - null null -2026-01-28 14:14:14.605 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.605 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.605 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.605 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.605 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.605 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.605 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.605 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.606 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.606 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.606 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.606 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.606 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.606 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.606 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.606 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.606 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.606 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.606 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.606 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.606 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.606 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.607 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Castle.Core.h40m7fuufn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\f5a40y0td5-{0}-h40m7fuufn-h40m7fuufn.gz' -2026-01-28 14:14:14.607 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.607 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Castle.Core.h40m7fuufn.wasm - 200 11574 application/wasm 3.0978ms -2026-01-28 14:14:14.613 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Core.4xaaeuhx7w.wasm - null null -2026-01-28 14:14:14.614 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.614 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.614 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.614 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.614 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.614 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.614 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.614 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.614 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.614 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.614 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.614 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.614 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.614 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.615 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.615 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.615 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.615 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.615 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.615 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.615 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.615 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.618 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Core.4xaaeuhx7w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\klnckblff1-{0}-4xaaeuhx7w-4xaaeuhx7w.gz' -2026-01-28 14:14:14.618 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.618 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Core.4xaaeuhx7w.wasm - 200 311139 application/wasm 5.0366ms -2026-01-28 14:14:14.624 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Data.xk5nl74k60.wasm - null null -2026-01-28 14:14:14.625 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.625 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.625 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.625 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.625 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.625 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.625 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.626 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.626 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.626 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.626 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.626 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.626 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.626 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.626 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.626 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.626 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.626 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.626 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.626 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.626 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.626 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.627 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Data.xk5nl74k60.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\g2etzqh2n8-{0}-xk5nl74k60-xk5nl74k60.gz' -2026-01-28 14:14:14.627 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.627 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Data.xk5nl74k60.wasm - 200 23862 application/wasm 2.5008ms -2026-01-28 14:14:14.634 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Ddd.Application.Contracts.1kpejy4fde.wasm - null null -2026-01-28 14:14:14.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.635 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.635 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.635 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.635 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.635 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.635 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.635 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.635 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.635 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.635 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.635 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.636 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.636 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.636 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.636 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.636 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Ddd.Application.Contracts.1kpejy4fde.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bq3ub7csyu-{0}-1kpejy4fde-1kpejy4fde.gz' -2026-01-28 14:14:14.636 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.637 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Ddd.Application.Contracts.1kpejy4fde.wasm - 200 37691 application/wasm 2.4606ms -2026-01-28 14:14:14.691 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.DistributedLocking.Abstractions.q8g86pl4ti.wasm - null null -2026-01-28 14:14:14.692 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.692 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.692 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.692 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.692 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.692 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.692 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.693 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.693 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.693 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.693 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.693 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.693 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.693 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.693 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.693 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.694 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.DistributedLocking.Abstractions.q8g86pl4ti.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\qe2ghijxui-{0}-q8g86pl4ti-q8g86pl4ti.gz' -2026-01-28 14:14:14.694 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.694 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.DistributedLocking.Abstractions.q8g86pl4ti.wasm - 200 7990 application/wasm 2.8982ms -2026-01-28 14:14:14.704 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.Abstractions.lbrqgul2g3.wasm - null null -2026-01-28 14:14:14.705 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.705 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.705 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.705 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.705 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.705 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.705 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.705 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.705 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.706 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.706 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.706 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.706 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.706 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.706 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.706 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.706 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.706 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.706 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.706 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.706 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.706 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.707 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.EventBus.Abstractions.lbrqgul2g3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\30q391t77y-{0}-lbrqgul2g3-lbrqgul2g3.gz' -2026-01-28 14:14:14.707 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.707 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.Abstractions.lbrqgul2g3.wasm - 200 20278 application/wasm 2.4793ms -2026-01-28 14:14:14.713 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.4naok44xvm.wasm - null null -2026-01-28 14:14:14.714 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.714 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.714 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.714 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.714 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.715 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.715 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.715 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.715 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.715 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.715 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.715 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.715 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.715 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.715 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.715 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.715 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.715 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.715 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.715 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.715 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.715 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.716 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.EventBus.4naok44xvm.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xdn8i8epqw-{0}-4naok44xvm-4naok44xvm.gz' -2026-01-28 14:14:14.716 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.717 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.4naok44xvm.wasm - 200 85824 application/wasm 3.7561ms -2026-01-28 14:14:14.722 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ExceptionHandling.ecbhbsp3we.wasm - null null -2026-01-28 14:14:14.722 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.722 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.722 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.722 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.722 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.723 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.723 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.723 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.723 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.723 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.723 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.723 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.723 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.723 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.723 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.724 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ExceptionHandling.ecbhbsp3we.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\86e1bzf02o-{0}-ecbhbsp3we-ecbhbsp3we.gz' -2026-01-28 14:14:14.724 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.724 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ExceptionHandling.ecbhbsp3we.wasm - 200 79680 application/wasm 2.7727ms -2026-01-28 14:14:14.730 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Application.Contracts.40s1e77e5m.wasm - null null -2026-01-28 14:14:14.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.731 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.731 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.731 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.731 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.731 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.731 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.732 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.732 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.732 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.732 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.732 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.732 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.732 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.732 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.733 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Application.Contracts.40s1e77e5m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1k1yaajq7n-{0}-40s1e77e5m-40s1e77e5m.gz' -2026-01-28 14:14:14.733 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.733 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Application.Contracts.40s1e77e5m.wasm - 200 11574 application/wasm 2.9718ms -2026-01-28 14:14:14.738 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.nj1v9irvz8.wasm - null null -2026-01-28 14:14:14.739 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.739 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.739 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.739 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.739 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.739 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.739 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.739 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.739 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.739 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.739 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.739 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.739 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.739 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.739 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.739 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.739 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.739 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.739 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.739 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.739 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.740 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.740 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.nj1v9irvz8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\247hfc7v1l-{0}-nj1v9irvz8-nj1v9irvz8.gz' -2026-01-28 14:14:14.740 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.740 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.nj1v9irvz8.wasm - 200 41275 application/wasm 2.3168ms -2026-01-28 14:14:14.746 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Domain.Shared.b0b5pjfr2i.wasm - null null -2026-01-28 14:14:14.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.747 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.747 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.747 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.747 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.747 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.747 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.748 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.748 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.748 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.748 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.748 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.748 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.748 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.748 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.749 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Domain.Shared.b0b5pjfr2i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nv73dihqbu-{0}-b0b5pjfr2i-b0b5pjfr2i.gz' -2026-01-28 14:14:14.749 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.749 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Domain.Shared.b0b5pjfr2i.wasm - 200 47419 application/wasm 2.307ms -2026-01-28 14:14:14.757 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.HttpApi.Client.uclbvotalx.wasm - null null -2026-01-28 14:14:14.758 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.759 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.759 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.759 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.759 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.759 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.759 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.759 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.759 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.759 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.759 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.759 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.759 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.759 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.760 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.761 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.HttpApi.Client.uclbvotalx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5kgd4qlij6-{0}-uclbvotalx-uclbvotalx.gz' -2026-01-28 14:14:14.761 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.761 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.HttpApi.Client.uclbvotalx.wasm - 200 22838 application/wasm 4.1096ms -2026-01-28 14:14:14.770 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Features.wy0y61456s.wasm - null null -2026-01-28 14:14:14.771 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.771 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.771 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.771 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.771 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.771 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.771 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.771 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.771 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.771 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.771 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.771 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.771 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.771 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.771 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.771 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.771 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.771 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.771 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.771 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.771 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.772 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.773 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Features.wy0y61456s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c4f7xcddbd-{0}-wy0y61456s-wy0y61456s.gz' -2026-01-28 14:14:14.773 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.773 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Features.wy0y61456s.wasm - 200 71488 application/wasm 2.9233ms -2026-01-28 14:14:14.778 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.GlobalFeatures.hoqe61zskr.wasm - null null -2026-01-28 14:14:14.778 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.778 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.778 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.778 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.778 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.779 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.779 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.779 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.779 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.779 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.779 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.779 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.779 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.779 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.779 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.779 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.779 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.779 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.779 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.779 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.779 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.779 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.780 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.GlobalFeatures.hoqe61zskr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lgshqof3zp-{0}-hoqe61zskr-hoqe61zskr.gz' -2026-01-28 14:14:14.780 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.780 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.GlobalFeatures.hoqe61zskr.wasm - 200 26422 application/wasm 2.3501ms -2026-01-28 14:14:14.785 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Guids.liit7170e2.wasm - null null -2026-01-28 14:14:14.785 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.785 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.786 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.786 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.786 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.786 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.786 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.786 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.786 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.786 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.786 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.786 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.786 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.786 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.786 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.787 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Guids.liit7170e2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fakjzvu1ye-{0}-liit7170e2-liit7170e2.gz' -2026-01-28 14:14:14.787 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.787 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Guids.liit7170e2.wasm - 200 5942 application/wasm 2.6055ms -2026-01-28 14:14:14.792 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Abstractions.dwudu7bg2j.wasm - null null -2026-01-28 14:14:14.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.793 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.793 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.793 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.793 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.793 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.793 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.794 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.794 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.794 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.794 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.794 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.794 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.794 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.794 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.794 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Abstractions.dwudu7bg2j.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\orvt5319bs-{0}-dwudu7bg2j-dwudu7bg2j.gz' -2026-01-28 14:14:14.794 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.794 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Abstractions.dwudu7bg2j.wasm - 200 5942 application/wasm 2.0195ms -2026-01-28 14:14:14.800 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.gvl0zhfcrh.wasm - null null -2026-01-28 14:14:14.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.801 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.801 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.801 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.801 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.801 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.801 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.802 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.802 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.802 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.802 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.802 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.802 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.802 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.802 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.803 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.gvl0zhfcrh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\esehx2q8xm-{0}-gvl0zhfcrh-gvl0zhfcrh.gz' -2026-01-28 14:14:14.803 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.803 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.gvl0zhfcrh.wasm - 200 96576 application/wasm 2.9187ms -2026-01-28 14:14:14.809 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.lpg5d6esbr.wasm - null null -2026-01-28 14:14:14.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.810 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.810 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.810 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.810 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.810 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.810 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.810 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.810 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.810 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.810 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.810 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.810 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.810 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.811 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.811 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.IdentityModel.lpg5d6esbr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\69zsrpzmke-{0}-lpg5d6esbr-lpg5d6esbr.gz' -2026-01-28 14:14:14.811 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.812 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.lpg5d6esbr.wasm - 200 7990 application/wasm 2.7771ms -2026-01-28 14:14:14.819 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.rizl9dmjps.wasm - null null -2026-01-28 14:14:14.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.820 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.820 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.820 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.820 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.820 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.821 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.821 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.821 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.821 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.821 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.821 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.821 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.821 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.821 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.821 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.821 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.821 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.822 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.rizl9dmjps.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\985eczt6cq-{0}-rizl9dmjps-rizl9dmjps.gz' -2026-01-28 14:14:14.822 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.822 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.rizl9dmjps.wasm - 200 10550 application/wasm 3.5135ms -2026-01-28 14:14:14.828 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.wui0lrbb2n.wasm - null null -2026-01-28 14:14:14.829 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.829 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.829 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.829 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.829 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.829 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.829 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.829 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.829 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.829 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.829 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.830 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.830 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.830 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.830 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.830 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.830 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.830 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.830 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.830 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.831 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.wui0lrbb2n.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\blqvtier8g-{0}-wui0lrbb2n-wui0lrbb2n.gz' -2026-01-28 14:14:14.831 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.831 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.wui0lrbb2n.wasm - 200 54587 application/wasm 2.8066ms -2026-01-28 14:14:14.836 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Application.Contracts.085birxe2b.wasm - null null -2026-01-28 14:14:14.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.837 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.838 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.838 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.838 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.838 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.838 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.838 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.838 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.838 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.838 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.839 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Application.Contracts.085birxe2b.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ru0e3g14jl-{0}-085birxe2b-085birxe2b.gz' -2026-01-28 14:14:14.839 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.839 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Application.Contracts.085birxe2b.wasm - 200 21302 application/wasm 3.0012ms -2026-01-28 14:14:14.844 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.uyv78l0zds.wasm - null null -2026-01-28 14:14:14.845 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.845 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.845 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.845 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.845 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.846 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.846 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.846 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.846 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.846 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.846 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.846 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.846 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.846 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.846 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.846 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.846 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.846 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.846 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.846 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.846 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.846 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.848 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Blazor.MudBlazor.uyv78l0zds.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mcjoi5xqrj-{0}-uyv78l0zds-uyv78l0zds.gz' -2026-01-28 14:14:14.848 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.848 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.uyv78l0zds.wasm - 200 67392 application/wasm 3.4179ms -2026-01-28 14:14:14.852 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.hte2321dzm.wasm - null null -2026-01-28 14:14:14.853 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.853 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.853 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.853 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.853 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.853 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.853 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.853 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.853 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.853 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.853 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.853 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.853 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.853 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.853 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.853 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.853 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.853 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.853 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.853 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.853 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.854 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.854 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.hte2321dzm.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\d0art33lcl-{0}-hte2321dzm-hte2321dzm.gz' -2026-01-28 14:14:14.854 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.854 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.hte2321dzm.wasm - 200 5430 application/wasm 2.4227ms -2026-01-28 14:14:14.860 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Domain.Shared.ymdct2u5om.wasm - null null -2026-01-28 14:14:14.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.861 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.861 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.861 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.861 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.861 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.861 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.861 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.861 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.861 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.861 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.861 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.861 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.861 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.862 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.865 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Domain.Shared.ymdct2u5om.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\o0k8cjq56a-{0}-ymdct2u5om-ymdct2u5om.gz' -2026-01-28 14:14:14.865 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.865 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Domain.Shared.ymdct2u5om.wasm - 200 370029 application/wasm 4.9618ms -2026-01-28 14:14:14.871 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.HttpApi.Client.clb4nzb2zs.wasm - null null -2026-01-28 14:14:14.872 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.872 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.872 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.872 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.872 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.872 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.872 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.872 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.872 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.872 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.872 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.872 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.872 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.872 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.873 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.873 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.873 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.873 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.873 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.873 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.873 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.873 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.874 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.HttpApi.Client.clb4nzb2zs.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bj1jtfcis3-{0}-clb4nzb2zs-clb4nzb2zs.gz' -2026-01-28 14:14:14.874 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.874 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.HttpApi.Client.clb4nzb2zs.wasm - 200 123205 application/wasm 3.3982ms -2026-01-28 14:14:14.879 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.IdentityModel.58e7vj7i45.wasm - null null -2026-01-28 14:14:14.880 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.880 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.880 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.880 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.880 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.880 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.880 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.880 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.880 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.880 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.880 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.880 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.880 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.880 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.881 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.881 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.881 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.881 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.881 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.881 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.881 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.881 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.882 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.IdentityModel.58e7vj7i45.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6dvntei2gj-{0}-58e7vj7i45-58e7vj7i45.gz' -2026-01-28 14:14:14.882 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.882 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.IdentityModel.58e7vj7i45.wasm - 200 32566 application/wasm 2.7883ms -2026-01-28 14:14:14.887 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.Abstractions.dk3pk9ktl7.wasm - null null -2026-01-28 14:14:14.887 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.887 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.887 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.887 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.887 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.888 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.888 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.888 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.888 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.888 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.888 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.888 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.888 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.888 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.888 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.889 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.Abstractions.dk3pk9ktl7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kno3y6bjsa-{0}-dk3pk9ktl7-dk3pk9ktl7.gz' -2026-01-28 14:14:14.889 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.889 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.Abstractions.dk3pk9ktl7.wasm - 200 4918 application/wasm 2.5554ms -2026-01-28 14:14:14.893 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.8u3i5b9etn.wasm - null null -2026-01-28 14:14:14.894 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.894 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.894 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.894 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.894 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.894 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.894 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.894 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.895 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.895 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.895 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.895 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.895 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.895 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.895 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.895 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.895 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.896 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.8u3i5b9etn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xxkqi4ckse-{0}-8u3i5b9etn-8u3i5b9etn.gz' -2026-01-28 14:14:14.896 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.896 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.8u3i5b9etn.wasm - 200 3894 application/wasm 2.5424ms -2026-01-28 14:14:14.901 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.SystemTextJson.dmgvw38e5z.wasm - null null -2026-01-28 14:14:14.902 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.902 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.902 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.902 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.902 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.902 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.902 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.902 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.902 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.902 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.902 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.902 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.902 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.902 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.903 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.903 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.903 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.903 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.903 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.903 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.903 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.903 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.904 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.SystemTextJson.dmgvw38e5z.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\y6nmb5oill-{0}-dmgvw38e5z-dmgvw38e5z.gz' -2026-01-28 14:14:14.904 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.904 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.SystemTextJson.dmgvw38e5z.wasm - 200 24374 application/wasm 3.2494ms -2026-01-28 14:14:14.909 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.Abstractions.j5b6ddcipj.wasm - null null -2026-01-28 14:14:14.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.910 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.910 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.910 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.910 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.910 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.910 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.910 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.910 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.910 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.910 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.911 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.911 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Localization.Abstractions.j5b6ddcipj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6hzosd4d2z-{0}-j5b6ddcipj-j5b6ddcipj.gz' -2026-01-28 14:14:14.911 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.912 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.Abstractions.j5b6ddcipj.wasm - 200 13622 application/wasm 2.6652ms -2026-01-28 14:14:14.917 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.tgarxcuaaj.wasm - null null -2026-01-28 14:14:14.917 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.917 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.917 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.917 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.917 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.918 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.918 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.918 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.918 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.918 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.918 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.918 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.918 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.918 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.918 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.918 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.918 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.918 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.918 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.918 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.918 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.918 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.920 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Localization.tgarxcuaaj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\742lfcokyb-{0}-tgarxcuaaj-tgarxcuaaj.gz' -2026-01-28 14:14:14.920 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.920 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.tgarxcuaaj.wasm - 200 66880 application/wasm 3.1647ms -2026-01-28 14:14:14.924 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Mapperly.mifpi94512.wasm - null null -2026-01-28 14:14:14.925 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.925 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.925 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.925 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.925 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.925 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.925 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.925 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.925 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.925 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.925 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.925 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.925 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.925 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.926 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.926 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.926 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.926 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.926 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.926 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.926 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.926 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.927 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Mapperly.mifpi94512.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wlgf7ryjmc-{0}-mifpi94512-mifpi94512.gz' -2026-01-28 14:14:14.927 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.927 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Mapperly.mifpi94512.wasm - 200 18230 application/wasm 2.7703ms -2026-01-28 14:14:14.932 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Minify.u0ftati5vi.wasm - null null -2026-01-28 14:14:14.932 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.932 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.932 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.932 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.932 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.932 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.932 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.932 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.933 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.933 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.933 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.933 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.933 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.933 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.933 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.933 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.933 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.934 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Minify.u0ftati5vi.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xo92mb2h1m-{0}-u0ftati5vi-u0ftati5vi.gz' -2026-01-28 14:14:14.934 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.935 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Minify.u0ftati5vi.wasm - 200 6966 application/wasm 2.9447ms -2026-01-28 14:14:14.945 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MudBlazorUI.rp0ak0tuw8.wasm - null null -2026-01-28 14:14:14.946 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.946 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.946 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.946 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.946 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.946 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.946 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.946 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.946 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.946 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.946 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.946 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.946 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.946 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.947 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.947 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.947 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.947 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.947 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.947 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.947 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.947 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.949 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MudBlazorUI.rp0ak0tuw8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kchqj3qnme-{0}-rp0ak0tuw8-rp0ak0tuw8.gz' -2026-01-28 14:14:14.949 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:14.949 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MudBlazorUI.rp0ak0tuw8.wasm - 200 137546 application/wasm 4.764ms -2026-01-28 14:14:14.994 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.Abstractions.l8q9drti5i.wasm - null null -2026-01-28 14:14:14.995 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.995 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:14.995 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:14.995 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:14.995 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.996 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:14.996 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:14.996 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:14.996 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:14.996 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:14.996 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:14.996 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.996 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:14.996 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:14.997 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:14.997 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:14.997 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:14.997 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:14.997 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:14.998 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:14.998 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:14.998 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.001 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MultiTenancy.Abstractions.l8q9drti5i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9h6hwofytn-{0}-l8q9drti5i-l8q9drti5i.gz' -2026-01-28 14:14:15.001 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.001 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.Abstractions.l8q9drti5i.wasm - 200 26934 application/wasm 7.4106ms -2026-01-28 14:14:15.011 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.9vppak6oe0.wasm - null null -2026-01-28 14:14:15.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.012 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.012 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.012 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.012 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.012 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.013 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.013 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.013 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.013 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.013 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.013 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.013 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.013 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.013 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.013 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.014 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MultiTenancy.9vppak6oe0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\k4tu4vjqt3-{0}-9vppak6oe0-9vppak6oe0.gz' -2026-01-28 14:14:15.014 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.014 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.9vppak6oe0.wasm - 200 31542 application/wasm 3.4164ms -2026-01-28 14:14:15.021 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectExtending.xqdaldejf6.wasm - null null -2026-01-28 14:14:15.022 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.022 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.022 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.022 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.022 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.022 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.022 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.022 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.022 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.022 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.022 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.022 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.022 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.022 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.023 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.023 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.023 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.023 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.023 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.023 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.023 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.023 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.024 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ObjectExtending.xqdaldejf6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3mtcgnfv0c-{0}-xqdaldejf6-xqdaldejf6.gz' -2026-01-28 14:14:15.024 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.024 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectExtending.xqdaldejf6.wasm - 200 48443 application/wasm 3.2213ms -2026-01-28 14:14:15.030 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectMapping.jfxlue5mz1.wasm - null null -2026-01-28 14:14:15.031 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.031 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.031 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.031 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.031 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.031 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.031 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.031 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.031 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.031 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.031 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.031 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.031 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.031 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.032 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.032 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.032 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.032 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.032 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.032 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.032 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.032 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.033 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ObjectMapping.jfxlue5mz1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\zesov8dx3n-{0}-jfxlue5mz1-jfxlue5mz1.gz' -2026-01-28 14:14:15.033 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.033 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectMapping.jfxlue5mz1.wasm - 200 17206 application/wasm 3.2031ms -2026-01-28 14:14:15.038 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.OpenIddict.Domain.Shared.p76j32m8t5.wasm - null null -2026-01-28 14:14:15.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.039 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.039 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.039 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.039 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.040 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.040 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.041 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.041 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.041 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.041 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.041 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.041 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.041 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.041 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.044 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.OpenIddict.Domain.Shared.p76j32m8t5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\e9mit81pkr-{0}-p76j32m8t5-p76j32m8t5.gz' -2026-01-28 14:14:15.044 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.044 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.OpenIddict.Domain.Shared.p76j32m8t5.wasm - 200 41275 application/wasm 5.7683ms -2026-01-28 14:14:15.052 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Application.Contracts.wmkikr93o7.wasm - null null -2026-01-28 14:14:15.053 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.053 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.053 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.053 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.053 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.053 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.053 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.053 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.053 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.053 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.053 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.053 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.053 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.053 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.054 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.054 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.054 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.054 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.054 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.054 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.054 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.055 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.056 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Application.Contracts.wmkikr93o7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\my5sja1gq5-{0}-wmkikr93o7-wmkikr93o7.gz' -2026-01-28 14:14:15.056 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.056 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Application.Contracts.wmkikr93o7.wasm - 200 14134 application/wasm 3.8836ms -2026-01-28 14:14:15.063 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.zznf2kzkxh.wasm - null null -2026-01-28 14:14:15.064 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.064 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.064 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.064 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.064 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.064 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.064 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.064 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.064 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.064 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.064 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.064 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.064 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.064 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.064 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.064 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.064 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.064 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.064 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.064 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.065 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.065 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.067 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.zznf2kzkxh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kxch0h7hgv-{0}-zznf2kzkxh-zznf2kzkxh.gz' -2026-01-28 14:14:15.067 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.067 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.zznf2kzkxh.wasm - 200 77632 application/wasm 4.3417ms -2026-01-28 14:14:15.072 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.axi1gmd0uq.wasm - null null -2026-01-28 14:14:15.073 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.073 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.073 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.073 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.073 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.074 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.074 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.074 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.074 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.074 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.074 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.074 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.074 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.074 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.075 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.076 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.axi1gmd0uq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\66b7cc8ocy-{0}-axi1gmd0uq-axi1gmd0uq.gz' -2026-01-28 14:14:15.077 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.077 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.axi1gmd0uq.wasm - 200 5942 application/wasm 4.7451ms -2026-01-28 14:14:15.083 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Domain.Shared.ic13klvitm.wasm - null null -2026-01-28 14:14:15.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.084 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.084 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.084 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.084 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.084 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.084 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.084 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.084 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.085 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.085 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.085 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.085 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.085 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.085 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.086 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Domain.Shared.ic13klvitm.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\yzrsadtuc3-{0}-ic13klvitm-ic13klvitm.gz' -2026-01-28 14:14:15.086 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.086 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Domain.Shared.ic13klvitm.wasm - 200 59195 application/wasm 2.9973ms -2026-01-28 14:14:15.091 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.HttpApi.Client.emu449d09n.wasm - null null -2026-01-28 14:14:15.092 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.092 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.092 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.092 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.092 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.092 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.092 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.092 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.092 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.092 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.092 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.092 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.092 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.092 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.093 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.093 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.093 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.093 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.093 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.093 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.093 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.093 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.094 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.HttpApi.Client.emu449d09n.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\oo1t1rirr3-{0}-emu449d09n-emu449d09n.gz' -2026-01-28 14:14:15.094 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.094 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.HttpApi.Client.emu449d09n.wasm - 200 68416 application/wasm 3.1102ms -2026-01-28 14:14:15.099 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.RemoteServices.d8gnck4fgy.wasm - null null -2026-01-28 14:14:15.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.100 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.100 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.100 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.100 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.100 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.100 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.100 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.100 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.100 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.100 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.101 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.RemoteServices.d8gnck4fgy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fxolomud6k-{0}-d8gnck4fgy-d8gnck4fgy.gz' -2026-01-28 14:14:15.101 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.101 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.RemoteServices.d8gnck4fgy.wasm - 200 11574 application/wasm 2.4168ms -2026-01-28 14:14:15.106 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Security.k9ttfxcsex.wasm - null null -2026-01-28 14:14:15.106 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.106 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.106 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.106 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.106 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.107 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.107 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.107 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.107 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.107 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.107 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.107 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.107 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.107 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.107 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.107 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.108 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.108 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.108 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.108 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.108 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.108 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.109 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Security.k9ttfxcsex.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3330bn9dpa-{0}-k9ttfxcsex-k9ttfxcsex.gz' -2026-01-28 14:14:15.109 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.109 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Security.k9ttfxcsex.wasm - 200 48955 application/wasm 3.2656ms -2026-01-28 14:14:15.113 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Serialization.gqp3lze8fb.wasm - null null -2026-01-28 14:14:15.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.114 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.114 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.114 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.114 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.115 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.115 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.115 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.115 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.115 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.115 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.115 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.115 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.115 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.115 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.115 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.115 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.115 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.115 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.115 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.115 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.115 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.116 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Serialization.gqp3lze8fb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jm5tzubbmd-{0}-gqp3lze8fb-gqp3lze8fb.gz' -2026-01-28 14:14:15.116 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.116 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Serialization.gqp3lze8fb.wasm - 200 6966 application/wasm 2.4813ms -2026-01-28 14:14:15.120 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Application.Contracts.xvq3wz5075.wasm - null null -2026-01-28 14:14:15.121 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.121 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.121 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.122 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.122 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.122 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.122 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.122 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.122 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.122 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.122 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.122 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.123 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.123 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Application.Contracts.xvq3wz5075.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sa63frt88b-{0}-xvq3wz5075-xvq3wz5075.gz' -2026-01-28 14:14:15.123 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.124 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Application.Contracts.xvq3wz5075.wasm - 200 14134 application/wasm 3.3497ms -2026-01-28 14:14:15.128 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.yorcbsllti.wasm - null null -2026-01-28 14:14:15.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.129 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.129 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.130 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.130 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.130 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.130 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.130 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.130 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.130 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.130 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.131 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.yorcbsllti.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\du4d4xybrw-{0}-yorcbsllti-yorcbsllti.gz' -2026-01-28 14:14:15.131 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.131 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.yorcbsllti.wasm - 200 59195 application/wasm 2.4668ms -2026-01-28 14:14:15.135 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.rl433unjhk.wasm - null null -2026-01-28 14:14:15.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.136 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.136 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.136 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.136 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.136 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.137 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.137 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.137 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.137 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.137 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.137 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.137 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.137 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.137 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.137 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.137 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.140 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.141 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.rl433unjhk.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\khsc69ietg-{0}-rl433unjhk-rl433unjhk.gz' -2026-01-28 14:14:15.141 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.141 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.rl433unjhk.wasm - 200 5942 application/wasm 5.808ms -2026-01-28 14:14:15.146 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Domain.Shared.ehawvm0lul.wasm - null null -2026-01-28 14:14:15.147 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.147 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.147 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.147 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.147 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.147 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.147 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.147 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.147 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.147 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.147 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.147 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.147 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.147 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.148 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.148 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.148 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.148 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.148 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.148 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.148 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.148 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.149 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Domain.Shared.ehawvm0lul.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\a9lyefc7q1-{0}-ehawvm0lul-ehawvm0lul.gz' -2026-01-28 14:14:15.149 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.149 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Domain.Shared.ehawvm0lul.wasm - 200 86336 application/wasm 3.3417ms -2026-01-28 14:14:15.155 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.HttpApi.Client.2z0jshntcg.wasm - null null -2026-01-28 14:14:15.156 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.156 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.156 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.156 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.156 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.157 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.157 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.157 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.157 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.157 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.157 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.157 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.157 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.157 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.157 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.157 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.157 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.157 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.157 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.157 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.157 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.157 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.158 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.HttpApi.Client.2z0jshntcg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ivgy4mp33s-{0}-2z0jshntcg-2z0jshntcg.gz' -2026-01-28 14:14:15.158 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.158 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.HttpApi.Client.2z0jshntcg.wasm - 200 23862 application/wasm 3.46ms -2026-01-28 14:14:15.163 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Settings.05ptknrv5m.wasm - null null -2026-01-28 14:14:15.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.164 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.164 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.164 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.164 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.164 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.164 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.164 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.164 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.164 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.164 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.164 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.164 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.164 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.165 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.166 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Settings.05ptknrv5m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bgt33y9v4t-{0}-05ptknrv5m-05ptknrv5m.gz' -2026-01-28 14:14:15.166 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.166 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Settings.05ptknrv5m.wasm - 200 40763 application/wasm 2.7763ms -2026-01-28 14:14:15.172 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Application.Contracts.dorwnqqwy5.wasm - null null -2026-01-28 14:14:15.173 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.173 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.173 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.173 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.173 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.174 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.174 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.174 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.174 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.174 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.174 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.174 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.174 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.174 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.174 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.174 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.174 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.174 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.174 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.174 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.174 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.174 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.175 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Application.Contracts.dorwnqqwy5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c16tsznfvz-{0}-dorwnqqwy5-dorwnqqwy5.gz' -2026-01-28 14:14:15.175 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.175 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Application.Contracts.dorwnqqwy5.wasm - 200 12086 application/wasm 3.0012ms -2026-01-28 14:14:15.179 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.h58oqkfeng.wasm - null null -2026-01-28 14:14:15.180 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.180 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.180 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.180 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.180 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.180 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.180 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.180 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.180 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.180 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.180 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.180 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.180 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.180 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.181 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.181 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.181 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.181 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.181 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.181 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.181 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.181 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.182 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.h58oqkfeng.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ckfyi6dd9r-{0}-h58oqkfeng-h58oqkfeng.gz' -2026-01-28 14:14:15.182 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.182 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.h58oqkfeng.wasm - 200 35131 application/wasm 2.4552ms -2026-01-28 14:14:15.195 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.vv7n6m7yut.wasm - null null -2026-01-28 14:14:15.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.195 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.195 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.195 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.195 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.196 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.196 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.196 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.196 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.196 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.196 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.196 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.196 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.196 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.196 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.196 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.196 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.196 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.196 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.196 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.196 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.196 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.197 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.vv7n6m7yut.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xddkl43426-{0}-vv7n6m7yut-vv7n6m7yut.gz' -2026-01-28 14:14:15.197 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.197 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.vv7n6m7yut.wasm - 200 5942 application/wasm 2.5605ms -2026-01-28 14:14:15.207 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Domain.Shared.llpimxq3rm.wasm - null null -2026-01-28 14:14:15.208 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.208 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.208 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.208 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.208 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.208 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.208 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.208 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.208 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.208 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.208 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.208 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.208 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.208 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.209 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.209 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.209 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.209 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.209 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.209 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.209 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.209 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.210 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Domain.Shared.llpimxq3rm.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\so2apr0f18-{0}-llpimxq3rm-llpimxq3rm.gz' -2026-01-28 14:14:15.210 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.211 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Domain.Shared.llpimxq3rm.wasm - 200 44347 application/wasm 3.5653ms -2026-01-28 14:14:15.218 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.HttpApi.Client.bjkg75uhux.wasm - null null -2026-01-28 14:14:15.219 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.219 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.219 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.219 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.219 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.219 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.219 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.219 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.219 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.219 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.219 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.219 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.219 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.219 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.220 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.220 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.220 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.220 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.220 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.220 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.220 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.220 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.221 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.HttpApi.Client.bjkg75uhux.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\imelthvwfz-{0}-bjkg75uhux-bjkg75uhux.gz' -2026-01-28 14:14:15.221 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.221 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.HttpApi.Client.bjkg75uhux.wasm - 200 37179 application/wasm 2.9032ms -2026-01-28 14:14:15.227 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Threading.rwdxyhv0ce.wasm - null null -2026-01-28 14:14:15.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.228 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.228 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.228 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.229 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.229 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.229 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.229 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.229 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.229 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.229 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.230 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Threading.rwdxyhv0ce.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bipe9d19v0-{0}-rwdxyhv0ce-rwdxyhv0ce.gz' -2026-01-28 14:14:15.230 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.230 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Threading.rwdxyhv0ce.wasm - 200 34619 application/wasm 2.9525ms -2026-01-28 14:14:15.236 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Timing.otg12tqej8.wasm - null null -2026-01-28 14:14:15.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.237 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.237 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.237 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.237 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.237 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.237 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.237 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.238 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.238 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.238 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.238 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.238 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.238 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.238 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.238 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.239 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Timing.otg12tqej8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\k5ucu0dgya-{0}-otg12tqej8-otg12tqej8.gz' -2026-01-28 14:14:15.239 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.239 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Timing.otg12tqej8.wasm - 200 19766 application/wasm 2.5337ms -2026-01-28 14:14:15.247 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.wwlqw4om2r.wasm - null null -2026-01-28 14:14:15.247 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.247 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.247 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.248 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.248 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.248 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.248 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.248 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.248 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.248 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.248 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.248 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.248 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.249 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.249 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.251 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.UI.wwlqw4om2r.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pq6xwwf7om-{0}-wwlqw4om2r-wwlqw4om2r.gz' -2026-01-28 14:14:15.251 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.251 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.wwlqw4om2r.wasm - 200 83776 application/wasm 4.2672ms -2026-01-28 14:14:15.258 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.Navigation.gyuxza111s.wasm - null null -2026-01-28 14:14:15.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.259 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.259 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.259 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.259 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.259 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.259 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.259 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.259 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.260 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.260 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.260 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.260 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.260 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.260 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.261 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.UI.Navigation.gyuxza111s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9g5ljk4lon-{0}-gyuxza111s-gyuxza111s.gz' -2026-01-28 14:14:15.261 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.261 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.Navigation.gyuxza111s.wasm - 200 40763 application/wasm 2.7763ms -2026-01-28 14:14:15.268 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Uow.jneickkblt.wasm - null null -2026-01-28 14:14:15.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.268 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.268 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.268 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.268 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.269 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.269 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.269 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.269 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.269 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.269 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.269 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.269 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.269 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.269 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.270 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Uow.jneickkblt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ilu4fbxe2e-{0}-jneickkblt-jneickkblt.gz' -2026-01-28 14:14:15.270 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.270 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Uow.jneickkblt.wasm - 200 39227 application/wasm 2.6652ms -2026-01-28 14:14:15.277 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Abstractions.0mrf0cvj5h.wasm - null null -2026-01-28 14:14:15.278 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.278 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.278 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.278 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.278 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.279 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.279 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.279 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.279 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.279 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.279 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.279 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.279 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.279 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.279 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.279 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.279 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.279 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.279 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.279 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.279 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.279 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.281 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Users.Abstractions.0mrf0cvj5h.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jyt2zu3ttz-{0}-0mrf0cvj5h-0mrf0cvj5h.gz' -2026-01-28 14:14:15.281 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.281 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Abstractions.0mrf0cvj5h.wasm - 200 11062 application/wasm 3.7649ms -2026-01-28 14:14:15.347 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Domain.Shared.h4yyltz4ll.wasm - null null -2026-01-28 14:14:15.348 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.348 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.348 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.348 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.348 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.393 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.394 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.394 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.394 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.394 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.394 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.394 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.394 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.394 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.394 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.394 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.394 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.394 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.394 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.394 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.394 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.394 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.395 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Users.Domain.Shared.h4yyltz4ll.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8bcoe6ftg7-{0}-h4yyltz4ll-h4yyltz4ll.gz' -2026-01-28 14:14:15.395 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.396 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Domain.Shared.h4yyltz4ll.wasm - 200 4918 application/wasm 48.2796ms -2026-01-28 14:14:15.408 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.Abstractions.924wndkz1f.wasm - null null -2026-01-28 14:14:15.409 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.409 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.409 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.410 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.410 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.410 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.410 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.411 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.411 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.411 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.411 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.411 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.411 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.411 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.411 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.412 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Validation.Abstractions.924wndkz1f.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gd6ojlvfcf-{0}-924wndkz1f-924wndkz1f.gz' -2026-01-28 14:14:15.412 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.412 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.Abstractions.924wndkz1f.wasm - 200 6966 application/wasm 4.1007ms -2026-01-28 14:14:15.421 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.0d8qfgigij.wasm - null null -2026-01-28 14:14:15.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.422 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.422 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.422 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.422 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.423 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.423 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.423 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.423 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.423 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.423 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.423 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.423 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.423 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.424 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.426 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Validation.0d8qfgigij.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2i0haqeq52-{0}-0d8qfgigij-0d8qfgigij.gz' -2026-01-28 14:14:15.426 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.426 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.0d8qfgigij.wasm - 200 133962 application/wasm 4.7316ms -2026-01-28 14:14:15.436 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.VirtualFileSystem.gxdtmkr6a5.wasm - null null -2026-01-28 14:14:15.437 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.437 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.437 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.437 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.437 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.438 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.438 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.438 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.438 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.438 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.438 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.438 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.438 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.438 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.438 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.438 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.438 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.438 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.438 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.438 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.438 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.439 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.440 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.VirtualFileSystem.gxdtmkr6a5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\oikj36ifzq-{0}-gxdtmkr6a5-gxdtmkr6a5.gz' -2026-01-28 14:14:15.440 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.440 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.VirtualFileSystem.gxdtmkr6a5.wasm - 200 21302 application/wasm 3.877ms -2026-01-28 14:14:15.450 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.ohwxgh6gpx.wasm - null null -2026-01-28 14:14:15.451 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.451 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.451 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.451 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.451 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.451 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.451 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.452 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.452 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.452 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.452 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.452 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.452 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.452 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.452 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.452 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.452 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.452 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.452 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.452 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.452 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.452 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.453 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.ohwxgh6gpx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b9vq30g1vb-{0}-ohwxgh6gpx-ohwxgh6gpx.gz' -2026-01-28 14:14:15.453 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.453 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.ohwxgh6gpx.wasm - 200 38715 application/wasm 2.8683ms -2026-01-28 14:14:15.461 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/icudt.oh1zvcfom8.dat - null null -2026-01-28 14:14:15.461 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.461 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.462 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.462 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.462 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.462 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.462 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.462 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.462 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.462 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.462 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.462 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.462 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.462 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.462 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.462 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.462 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.462 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.462 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.462 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.462 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.463 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.468 +03:00 [INF] Sending file. Request path: '_framework/icudt.oh1zvcfom8.dat'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\augfne4vvr-{0}-oh1zvcfom8-oh1zvcfom8.gz' -2026-01-28 14:14:15.468 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.468 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/icudt.oh1zvcfom8.dat - 200 492472 application/octet-stream 7.2709ms -2026-01-28 14:14:15.487 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/appsettings.Development.json - null null -2026-01-28 14:14:15.487 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.487 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.487 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.487 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.487 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.488 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.488 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.488 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.488 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.488 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.488 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.488 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.488 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.488 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.488 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.488 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.488 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.488 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.488 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.488 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.488 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.488 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.489 +03:00 [INF] Sending file. Request path: 'appsettings.Development.json'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5yh5mvb6m0-{0}-qygrwjo5h3-qygrwjo5h3.gz' -2026-01-28 14:14:15.489 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.489 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/appsettings.Development.json - 200 41 application/json 2.1488ms -2026-01-28 14:14:15.497 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/appsettings.json - null null -2026-01-28 14:14:15.497 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.497 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:15.497 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:15.497 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:15.497 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.498 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:15.498 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:15.498 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:15.498 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:15.498 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:15.498 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:15.498 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.498 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:15.498 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:15.498 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:15.498 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:15.498 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:15.498 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:15.498 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:15.498 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:15.498 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:15.498 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.499 +03:00 [INF] Sending file. Request path: 'appsettings.json'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\apuwzph3tz-{0}-b8hf2s338i-b8hf2s338i.gz' -2026-01-28 14:14:15.499 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:15.499 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/appsettings.json - 200 136 application/json 2.6461ms -2026-01-28 14:14:21.595 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/api/abp/application-configuration?IncludeLocalizationResources=False&api-version=1.0 - null null -2026-01-28 14:14:21.598 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:21.598 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:21.598 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:21.598 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:21.598 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:21.598 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:21.599 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:21.599 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:21.599 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:21.599 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:21.599 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:21.599 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:21.599 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:21.599 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:21.599 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:21.599 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:21.599 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:21.599 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:21.599 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:21.599 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:21.599 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:21.600 +03:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' -2026-01-28 14:14:21.631 +03:00 [INF] Route matched with {area = "abp", action = "Get", controller = "AbpApplicationConfiguration", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto] GetAsync(Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationRequestOptions) on controller Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController (Volo.Abp.AspNetCore.Mvc). -2026-01-28 14:14:21.768 +03:00 [DBG] Executing AbpApplicationConfigurationAppService.GetAsync()... -2026-01-28 14:14:21.920 +03:00 [DBG] Executed AbpApplicationConfigurationAppService.GetAsync(). -2026-01-28 14:14:21.934 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto'. -2026-01-28 14:14:21.974 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc) in 338.3861ms -2026-01-28 14:14:21.974 +03:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' -2026-01-28 14:14:21.975 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/api/abp/application-configuration?IncludeLocalizationResources=False&api-version=1.0 - 200 null application/json; charset=utf-8 379.9278ms -2026-01-28 14:14:22.841 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/api/abp/application-localization?CultureName=en&OnlyDynamics=True&api-version=1.0 - null null -2026-01-28 14:14:22.844 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:22.844 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:22.844 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:22.844 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:22.844 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:22.844 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:22.844 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:22.844 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:22.844 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:22.844 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:22.844 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:22.844 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:22.845 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:22.845 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:22.845 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:22.845 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:22.845 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:22.845 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:22.845 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:22.845 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:22.845 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:22.845 +03:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationLocalizationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' -2026-01-28 14:14:22.854 +03:00 [INF] Route matched with {area = "abp", action = "Get", controller = "AbpApplicationLocalization", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationDto] GetAsync(Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationRequestDto) on controller Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationLocalizationController (Volo.Abp.AspNetCore.Mvc). -2026-01-28 14:14:22.897 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationDto'. -2026-01-28 14:14:22.899 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationLocalizationController.GetAsync (Volo.Abp.AspNetCore.Mvc) in 45.5355ms -2026-01-28 14:14:22.899 +03:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationLocalizationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' -2026-01-28 14:14:22.899 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/api/abp/application-localization?CultureName=en&OnlyDynamics=True&api-version=1.0 - 200 null application/json; charset=utf-8 58.4775ms -2026-01-28 14:14:23.102 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/resource-collection.-HESH.js - null null -2026-01-28 14:14:23.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:23.103 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:23.103 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:23.103 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:23.103 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:23.103 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:23.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:23.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:23.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:23.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:23.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:23.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:23.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:23.103 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:23.103 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:23.103 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:23.103 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:23.103 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:23.103 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:23.103 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:23.103 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:23.104 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:23.105 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:23.105 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/resource-collection.-HESH.js - 200 33175 application/javascript 3.8806ms -2026-01-28 14:14:26.954 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/bg-01.png - null null -2026-01-28 14:14:26.954 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/img-support.png - null null -2026-01-28 14:14:26.954 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/img-blog.png - null null -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:26.965 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:26.965 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:26.965 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:26.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:14:26.965 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:26.965 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:26.965 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:14:26.965 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:26.965 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:26.965 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:14:26.965 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:26.965 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:26.965 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:14:26.965 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:26.965 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:26.965 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:14:26.965 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:26.965 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:26.965 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:14:26.965 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:26.965 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:26.965 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:26.965 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:14:26.965 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:26.965 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:14:26.965 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:26.965 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:26.965 +03:00 [DBG] No tenant resolved. -2026-01-28 14:14:26.965 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:26.965 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:26.965 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:26.967 +03:00 [INF] Sending file. Request path: 'images/getting-started/img-blog.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\img-blog.png' -2026-01-28 14:14:26.967 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:26.967 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/img-blog.png - 200 30220 image/png 13.251ms -2026-01-28 14:14:26.967 +03:00 [INF] Sending file. Request path: 'images/getting-started/img-support.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\img-support.png' -2026-01-28 14:14:26.967 +03:00 [INF] Sending file. Request path: 'images/getting-started/bg-01.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\bg-01.png' -2026-01-28 14:14:26.967 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:26.967 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:14:26.967 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/img-support.png - 200 23461 image/png 13.3961ms -2026-01-28 14:14:26.967 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/bg-01.png - 200 22111 image/png 13.4217ms -2026-01-28 14:14:30.578 +03:00 [INF] Application is shutting down... -2026-01-28 14:14:30.590 +03:00 [DBG] Stopped background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker -2026-01-28 14:14:30.590 +03:00 [DBG] Stopped background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2026-01-28 14:17:23.956 +03:00 [INF] Starting web host. -2026-01-28 14:17:25.646 +03:00 [DBG] Loaded ABP modules: -2026-01-28 14:17:25.647 +03:00 [DBG] - MyCompanyName.MyProjectName.Blazor.WebApp.MyProjectNameBlazorModule -2026-01-28 14:17:25.647 +03:00 [DBG] - MyCompanyName.MyProjectName.MyProjectNameApplicationModule -2026-01-28 14:17:25.647 +03:00 [DBG] - MyCompanyName.MyProjectName.MyProjectNameDomainModule -2026-01-28 14:17:25.647 +03:00 [DBG] - MyCompanyName.MyProjectName.MyProjectNameDomainSharedModule -2026-01-28 14:17:25.647 +03:00 [DBG] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule -2026-01-28 14:17:25.647 +03:00 [DBG] - Volo.Abp.Validation.AbpValidationModule -2026-01-28 14:17:25.647 +03:00 [DBG] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2026-01-28 14:17:25.647 +03:00 [DBG] - Volo.Abp.Localization.AbpLocalizationModule -2026-01-28 14:17:25.647 +03:00 [DBG] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2026-01-28 14:17:25.647 +03:00 [DBG] - Volo.Abp.Settings.AbpSettingsModule -2026-01-28 14:17:25.647 +03:00 [DBG] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2026-01-28 14:17:25.647 +03:00 [DBG] - Volo.Abp.Security.AbpSecurityModule -2026-01-28 14:17:25.647 +03:00 [DBG] - Volo.Abp.Data.AbpDataModule -2026-01-28 14:17:25.647 +03:00 [DBG] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2026-01-28 14:17:25.647 +03:00 [DBG] - Volo.Abp.Uow.AbpUnitOfWorkModule -2026-01-28 14:17:25.647 +03:00 [DBG] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2026-01-28 14:17:25.647 +03:00 [DBG] - Volo.Abp.Threading.AbpThreadingModule -2026-01-28 14:17:25.647 +03:00 [DBG] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule -2026-01-28 14:17:25.647 +03:00 [DBG] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule -2026-01-28 14:17:25.647 +03:00 [DBG] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2026-01-28 14:17:25.647 +03:00 [DBG] - Volo.Abp.Json.AbpJsonAbstractionsModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Timing.AbpTimingModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Identity.AbpIdentityDomainSharedModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Users.AbpUsersDomainSharedModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Features.AbpFeaturesModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.OpenIddict.AbpOpenIddictDomainSharedModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Auditing.AbpAuditingModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Json.AbpJsonModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Auditing.AbpAuditingContractsModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Domain.AbpDddDomainModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.EventBus.AbpEventBusModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Guids.AbpGuidsModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Specifications.AbpSpecificationsModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Caching.AbpCachingModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Serialization.AbpSerializationModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Domain.AbpDddDomainSharedModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Mapperly.AbpMapperlyModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Identity.AbpIdentityDomainModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Users.AbpUsersDomainModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Users.AbpUsersAbstractionModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.OpenIddict.AbpOpenIddictDomainModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.PermissionManagement.OpenIddict.AbpPermissionManagementDomainOpenIddictModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Authorization.AbpAuthorizationModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Emailing.AbpEmailingModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.TextTemplating.AbpTextTemplatingModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Account.AbpAccountApplicationModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Account.AbpAccountApplicationContractsModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Application.AbpDddApplicationContractsModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Identity.AbpIdentityApplicationModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Application.AbpDddApplicationModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Http.AbpHttpAbstractionsModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.UI.AbpUiModule -2026-01-28 14:17:25.648 +03:00 [DBG] - MyCompanyName.MyProjectName.MyProjectNameApplicationContractsModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule -2026-01-28 14:17:25.648 +03:00 [DBG] - MyCompanyName.MyProjectName.EntityFrameworkCore.MyProjectNameEntityFrameworkCoreModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.OpenIddict.EntityFrameworkCore.AbpOpenIddictEntityFrameworkCoreModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule -2026-01-28 14:17:25.648 +03:00 [DBG] - MyCompanyName.MyProjectName.MyProjectNameHttpApiModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Account.AbpAccountHttpApiModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Identity.AbpIdentityHttpApiModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Http.AbpHttpModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Minify.AbpMinifyModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.AspNetCore.AbpAspNetCoreAbstractionsModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Autofac.AbpAutofacModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Castle.AbpCastleCoreModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Account.Web.AbpAccountWebOpenIddictModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Account.Web.AbpAccountWebModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.AspNetCore.Bundling.AbpAspNetCoreBundlingModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.OpenIddict.AbpOpenIddictAspNetCoreModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.Server.MudBlazorBasicTheme.AbpAspNetCoreComponentsServerMudBlazorBasicThemeModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.AbpAspNetCoreComponentsWebMudBlazorBasicThemeModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.AbpAspNetCoreComponentsWebThemingMudBlazorModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.MudBlazorUI.AbpMudBlazorUIModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.Web.AbpAspNetCoreComponentsWebModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.AbpAspNetCoreComponentsModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.Server.Theming.MudBlazor.AbpAspNetCoreComponentsServerThemingMudBlazorModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.Server.AbpAspNetCoreComponentsServerModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Http.Client.AbpHttpClientModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.RemoteServices.AbpRemoteServicesModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Theme.LeptonXLite.AbpAspNetCoreMvcUiLeptonXLiteThemeModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Identity.Blazor.MudBlazor.Server.AbpIdentityBlazorMudBlazorServerModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.Identity.Blazor.MudBlazor.AbpIdentityBlazorMudBlazorModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.PermissionManagement.Blazor.MudBlazor.AbpPermissionManagementBlazorMudBlazorModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.PermissionManagement.Blazor.MudBlazor.Server.AbpPermissionManagementBlazorMudBlazorServerModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.TenantManagement.Blazor.MudBlazor.Server.AbpTenantManagementBlazorMudBlazorServerModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.TenantManagement.Blazor.MudBlazor.AbpTenantManagementBlazorMudBlazorModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.FeatureManagement.Blazor.MudBlazor.AbpFeatureManagementBlazorMudBlazorModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.SettingManagement.Blazor.MudBlazor.AbpSettingManagementBlazorMudBlazorModule -2026-01-28 14:17:25.648 +03:00 [DBG] - Volo.Abp.SettingManagement.Blazor.MudBlazor.Server.AbpSettingManagementBlazorMudBlazorServerModule -2026-01-28 14:17:25.708 +03:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker -2026-01-28 14:17:25.758 +03:00 [DBG] Started background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2026-01-28 14:17:26.284 +03:00 [INF] User profile is available. Using 'C:\Users\ismai\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2026-01-28 14:17:26.565 +03:00 [INF] Initialized all ABP modules. -2026-01-28 14:17:26.804 +03:00 [INF] Now listening on: https://localhost:44308 -2026-01-28 14:17:26.804 +03:00 [INF] Application started. Press Ctrl+C to shut down. -2026-01-28 14:17:26.804 +03:00 [INF] Hosting environment: Development -2026-01-28 14:17:26.804 +03:00 [INF] Content root path: D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp -2026-01-28 14:17:45.712 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/ - null null -2026-01-28 14:17:46.352 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:46.362 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:46.365 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:46.366 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:46.367 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:46.380 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:46.383 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:46.383 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:46.384 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:46.385 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:46.385 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:46.386 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:46.386 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:46.386 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:46.428 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:46.428 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:46.429 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:46.430 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:46.431 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:46.432 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:46.432 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:46.468 +03:00 [INF] Executing endpoint '/ (/)' -2026-01-28 14:17:46.703 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2026-01-28 14:17:46.705 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2026-01-28 14:17:46.800 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2026-01-28 14:17:46.868 +03:00 [INF] Executed endpoint '/ (/)' -2026-01-28 14:17:46.885 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/ - 200 null text/html; charset=utf-8 1172.8072ms -2026-01-28 14:17:46.895 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/.well-known/appspecific/com.chrome.devtools.json - null null -2026-01-28 14:17:46.895 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/core/abp.css - null null -2026-01-28 14:17:46.901 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:46.901 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:46.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:46.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:46.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:46.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:46.902 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:46.902 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:46.902 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:46.902 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:46.902 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:46.902 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:46.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:46.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:46.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:46.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:46.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:46.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:46.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:46.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:46.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:46.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:46.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:46.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:46.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:46.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:46.903 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:46.903 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:46.904 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:46.904 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:46.904 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:46.904 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:46.904 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:46.904 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:46.904 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:46.904 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:46.904 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:46.904 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:46.904 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:46.904 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:46.904 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:46.904 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:46.906 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:46.907 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/.well-known/appspecific/com.chrome.devtools.json - 404 0 null 11.4042ms -2026-01-28 14:17:46.907 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44308/.well-known/appspecific/com.chrome.devtools.json, Response status code: 404 -2026-01-28 14:17:46.919 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/all.css - null null -2026-01-28 14:17:46.919 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/bootstrap-dim.css - null null -2026-01-28 14:17:46.919 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2026-01-28 14:17:46.919 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/select2/css/select2.min.css - null null -2026-01-28 14:17:46.919 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.css - null null -2026-01-28 14:17:46.919 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/datatables.net-bs5/css/dataTables.bootstrap5.css - null null -2026-01-28 14:17:46.920 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/bootstrap-daterangepicker/daterangepicker.css - null null -2026-01-28 14:17:46.921 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/bootstrap-datepicker/bootstrap-datepicker.min.css - null null -2026-01-28 14:17:46.921 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css - null null -2026-01-28 14:17:46.921 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/toast/abp-toast.css - null null -2026-01-28 14:17:46.921 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/date-range-picker/date-range-picker-styles.css - null null -2026-01-28 14:17:46.921 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/js-bundle.css - null null -2026-01-28 14:17:46.922 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/layout-bundle.css - null null -2026-01-28 14:17:46.922 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/abp-bundle.css - null null -2026-01-28 14:17:46.922 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/font-bundle.css - null null -2026-01-28 14:17:46.922 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2026-01-28 14:17:46.925 +03:00 [INF] Sending file. Request path: '/Themes/LeptonXLite/Global/side-menu/css/abp-bundle.css'. Physical path: 'N/A' -2026-01-28 14:17:46.925 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/date-range-picker/date-range-picker-styles.css'. Physical path: 'N/A' -2026-01-28 14:17:46.925 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/abp-bundle.css - 200 3404 text/css 3.2686ms -2026-01-28 14:17:46.925 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/date-range-picker/date-range-picker-styles.css - 200 338 text/css 4.2077ms -2026-01-28 14:17:46.925 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toast/abp-toast.css'. Physical path: 'N/A' -2026-01-28 14:17:46.925 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/toast/abp-toast.css - 200 2617 text/css 4.5662ms -2026-01-28 14:17:46.925 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'N/A' -2026-01-28 14:17:46.925 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/global-styles.css - null null -2026-01-28 14:17:46.925 +03:00 [INF] Sending file. Request path: '/Themes/LeptonXLite/Global/side-menu/css/font-bundle.css'. Physical path: 'N/A' -2026-01-28 14:17:46.925 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/MudBlazor/MudBlazor.min.css - null null -2026-01-28 14:17:46.925 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css - 200 385 text/css 4.6806ms -2026-01-28 14:17:46.925 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/font-bundle.css - 200 127 text/css 3.0658ms -2026-01-28 14:17:46.926 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2026-01-28 14:17:46.926 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.MudBlazorUI/volo.abp.mudblazorui.css - null null -2026-01-28 14:17:46.926 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/themes/basic/main.css - null null -2026-01-28 14:17:46.927 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/blazor-global-styles.css - null null -2026-01-28 14:17:46.927 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css - null null -2026-01-28 14:17:46.929 +03:00 [INF] Sending file. Request path: 'libs/abp/core/abp.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\534um4fsdt-{0}-6vev71rwdm-6vev71rwdm.gz' -2026-01-28 14:17:46.929 +03:00 [INF] Sending file. Request path: '/Themes/LeptonXLite/Global/side-menu/css/js-bundle.css'. Physical path: 'N/A' -2026-01-28 14:17:46.929 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:46.929 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/core/abp.css - 200 1364 text/css 33.8469ms -2026-01-28 14:17:46.929 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/js-bundle.css - 200 31862 text/css 8.0134ms -2026-01-28 14:17:46.930 +03:00 [INF] Sending file. Request path: '/Themes/LeptonXLite/Global/side-menu/css/layout-bundle.css'. Physical path: 'N/A' -2026-01-28 14:17:46.930 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/layout-bundle.css - 200 31589 text/css 7.9561ms -2026-01-28 14:17:46.930 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/bg-01.png - null null -2026-01-28 14:17:46.930 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/MudBlazor/MudBlazor.min.js - null null -2026-01-28 14:17:46.933 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/img-support.png - null null -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.056 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.056 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.056 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.056 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.056 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.056 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.056 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.056 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.056 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.056 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.056 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.056 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.056 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.056 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.056 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.056 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.056 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.056 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.056 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.056 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.057 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.057 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.057 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.057 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.057 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.057 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.057 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.057 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.057 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.057 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.057 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.057 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.057 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.057 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.057 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.057 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.057 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.057 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.057 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.057 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.057 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.057 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.057 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.057 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.057 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.057 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.057 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.057 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.057 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.057 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.057 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.058 +03:00 [INF] Sending file. Request path: 'MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s4s6fpr8ex-{0}-oa8u55zyfs-oa8u55zyfs.gz' -2026-01-28 14:17:47.058 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\obj\Debug\net10.0\compressed\p1g0cu86en-{0}-c25c931rn9-c25c931rn9.gz' -2026-01-28 14:17:47.058 +03:00 [INF] Sending file. Request path: 'blazor-global-styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\smexgl05zq-{0}-y3n6denrdr-y3n6denrdr.gz' -2026-01-28 14:17:47.058 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/themes/basic/main.css'. Physical path: 'D:\GitHub\abp\modules\basic-theme\src\Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme\obj\Debug\net10.0\compressed\fqd2rlnqku-{0}-tyyka3g39l-tyyka3g39l.gz' -2026-01-28 14:17:47.058 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.MudBlazorUI/volo.abp.mudblazorui.css'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.MudBlazorUI\obj\Debug\net10.0\compressed\giyoea8shq-{0}-8qeawnrprb-8qeawnrprb.gz' -2026-01-28 14:17:47.058 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.058 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.058 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.058 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.058 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.058 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/themes/basic/main.css - 200 120 text/css 132.2194ms -2026-01-28 14:17:47.058 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/blazor-global-styles.css - 200 641 text/css 131.2103ms -2026-01-28 14:17:47.058 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css - 200 317 text/css 131.2102ms -2026-01-28 14:17:47.058 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1375 text/css 132.235ms -2026-01-28 14:17:47.058 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.MudBlazorUI/volo.abp.mudblazorui.css - 200 1120 text/css 132.2303ms -2026-01-28 14:17:47.058 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/img-blog.png - null null -2026-01-28 14:17:47.058 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2026-01-28 14:17:47.058 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2026-01-28 14:17:47.058 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/blazor.web.js - null null -2026-01-28 14:17:47.058 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.058 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.058 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.058 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.058 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.058 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.058 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.059 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.059 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.059 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.059 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.059 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.059 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.059 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.059 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.059 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.059 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.059 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.059 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.059 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.059 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.059 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.059 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.059 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.059 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.059 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.059 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.059 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.059 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.059 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.059 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.059 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.059 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.059 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.059 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.059 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.059 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.059 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.059 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.059 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.059 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.059 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.059 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.059 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.059 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.059 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.059 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.059 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.059 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.059 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.059 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.059 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.059 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.059 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.059 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.059 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.059 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.059 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.059 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.059 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.059 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.059 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.059 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.059 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.059 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.060 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.060 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.060 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.060 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.060 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.060 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.060 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.060 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.060 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.060 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.060 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.060 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.060 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.060 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.060 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.060 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.060 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.060 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.060 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.060 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.060 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.060 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.060 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.060 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.060 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.060 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.060 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.060 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.060 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.060 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.060 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.060 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.060 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.060 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.060 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.060 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.060 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.060 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.060 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.060 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.060 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.060 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.061 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.061 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.061 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.061 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.061 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\obj\Debug\net10.0\compressed\2mj6s76mwx-{0}-qb38od44a4-qb38od44a4.gz' -2026-01-28 14:17:47.061 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.061 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.061 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.061 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.061 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.061 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.061 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.061 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.061 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 486 text/javascript 3.0836ms -2026-01-28 14:17:47.061 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.061 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.062 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.062 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.062 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.062 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.062 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.062 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.062 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.062 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.065 +03:00 [INF] Sending file. Request path: '/Themes/LeptonXLite/Global/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css'. Physical path: 'N/A' -2026-01-28 14:17:47.066 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 200 74827 text/css 143.015ms -2026-01-28 14:17:47.066 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\obj\Debug\net10.0\compressed\rhkuekteef-{0}-cowusv9rvg-cowusv9rvg.gz' -2026-01-28 14:17:47.066 +03:00 [INF] Sending file. Request path: '_content/MudBlazor/MudBlazor.min.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\0wz98yz2xy-{0}-u9015k2po7-u9015k2po7.gz' -2026-01-28 14:17:47.066 +03:00 [INF] Sending file. Request path: 'images/getting-started/img-blog.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\img-blog.png' -2026-01-28 14:17:47.066 +03:00 [INF] Sending file. Request path: 'images/getting-started/img-support.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\img-support.png' -2026-01-28 14:17:47.066 +03:00 [INF] Sending file. Request path: 'images/getting-started/bg-01.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\bg-01.png' -2026-01-28 14:17:47.066 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.066 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.066 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.066 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.066 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.066 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/img-support.png - 200 23461 image/png 133.3289ms -2026-01-28 14:17:47.066 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/MudBlazor/MudBlazor.min.js - 200 11465 text/javascript 136.5412ms -2026-01-28 14:17:47.066 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/img-blog.png - 200 30220 image/png 8.604ms -2026-01-28 14:17:47.066 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8981 text/javascript 8.4564ms -2026-01-28 14:17:47.066 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/bg-01.png - 200 22111 image/png 136.5412ms -2026-01-28 14:17:47.071 +03:00 [INF] Sending file. Request path: '_framework/blazor.web.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\ocy8dvewdt-{0}-2i0r6wwb69-2i0r6wwb69.gz' -2026-01-28 14:17:47.072 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.072 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/blazor.web.js - 200 55628 text/javascript 13.9489ms -2026-01-28 14:17:47.073 +03:00 [INF] Sending file. Request path: '_content/MudBlazor/MudBlazor.min.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\tzxjg6is5z-{0}-du7z45fy1o-du7z45fy1o.gz' -2026-01-28 14:17:47.073 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.073 +03:00 [INF] Sending file. Request path: 'global-styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\rh9y3nvfnm-{0}-bbfo2klxrw-bbfo2klxrw.gz' -2026-01-28 14:17:47.073 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/MudBlazor/MudBlazor.min.css - 200 64451 text/css 147.435ms -2026-01-28 14:17:47.073 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.073 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/global-styles.css - 200 284 text/css 147.5909ms -2026-01-28 14:17:47.075 +03:00 [INF] Sending file. Request path: '/Themes/LeptonXLite/Global/side-menu/css/bootstrap-dim.css'. Physical path: 'N/A' -2026-01-28 14:17:47.075 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/bootstrap-dim.css - 200 308278 text/css 155.9087ms -2026-01-28 14:17:47.077 +03:00 [INF] Sending file. Request path: 'libs/bootstrap-daterangepicker/daterangepicker.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\z8ryymhgcw-{0}-85vbs1dise-85vbs1dise.gz' -2026-01-28 14:17:47.078 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.078 +03:00 [INF] Sending file. Request path: 'libs/select2/css/select2.min.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\6ddblemzii-{0}-ntg7hq0exj-ntg7hq0exj.gz' -2026-01-28 14:17:47.078 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.078 +03:00 [INF] Sending file. Request path: 'libs/bootstrap-datepicker/bootstrap-datepicker.min.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\c98qwcv8t9-{0}-hv5fnth7pn-hv5fnth7pn.gz' -2026-01-28 14:17:47.078 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.078 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/bootstrap-datepicker/bootstrap-datepicker.min.css - 200 15767 text/css 157.1321ms -2026-01-28 14:17:47.078 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/select2/css/select2.min.css - 200 14999 text/css 158.327ms -2026-01-28 14:17:47.078 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/bootstrap-daterangepicker/daterangepicker.css - 200 8102 text/css 157.3683ms -2026-01-28 14:17:47.078 +03:00 [INF] Sending file. Request path: 'libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\14u3fu9aq9-{0}-p8jqw3ap0f-p8jqw3ap0f.gz' -2026-01-28 14:17:47.078 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.078 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.css - 200 54888 text/css 158.5585ms -2026-01-28 14:17:47.079 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\dfuwed8qp2-{0}-9fxst9u6yk-9fxst9u6yk.gz' -2026-01-28 14:17:47.079 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.079 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 38549 text/css 159.4795ms -2026-01-28 14:17:47.080 +03:00 [INF] Sending file. Request path: 'libs/datatables.net-bs5/css/dataTables.bootstrap5.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\2vxqr2b34z-{0}-ln8ra2a4gr-ln8ra2a4gr.gz' -2026-01-28 14:17:47.080 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.080 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/datatables.net-bs5/css/dataTables.bootstrap5.css - 200 21614 text/css 160.5497ms -2026-01-28 14:17:47.080 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\0vulsgakzi-{0}-2ej0o14t5y-2ej0o14t5y.gz' -2026-01-28 14:17:47.080 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.080 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/all.css - 200 110162 text/css 161.1263ms -2026-01-28 14:17:47.122 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2026-01-28 14:17:47.122 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 - null null -2026-01-28 14:17:47.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.124 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.124 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.124 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.124 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.124 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.124 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.124 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.124 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.124 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.124 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.124 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.124 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.125 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.125 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.125 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.125 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.125 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.125 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.125 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.125 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.125 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.125 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.125 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.125 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.125 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.125 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.125 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.125 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.139 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-brands-400.woff2' -2026-01-28 14:17:47.139 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.139 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 - 200 101224 font/woff2 17.0485ms -2026-01-28 14:17:47.143 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' -2026-01-28 14:17:47.143 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.143 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 113152 font/woff2 20.8786ms -2026-01-28 14:17:47.344 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js - null null -2026-01-28 14:17:47.348 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.348 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.348 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.348 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.348 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.349 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.349 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.349 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.349 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.349 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.349 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.349 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.349 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.349 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.349 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.349 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.349 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.349 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.349 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.349 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.350 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.350 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.351 +03:00 [INF] Sending file. Request path: '_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js'. Physical path: 'C:\Users\ismai\.nuget\packages\microsoft.dotnet.hotreload.webassembly.browser\10.0.102\staticwebassets\Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js' -2026-01-28 14:17:47.351 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.351 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js - 200 1862 text/javascript 6.7049ms -2026-01-28 14:17:47.571 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.js - null null -2026-01-28 14:17:47.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.572 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.572 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.573 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.573 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.573 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.573 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.573 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.573 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.573 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.573 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.575 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/favicon.ico - null null -2026-01-28 14:17:47.576 +03:00 [INF] Sending file. Request path: '_framework/dotnet.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uxk8is50o9-{0}-aooho9t0gv-aooho9t0gv.gz' -2026-01-28 14:17:47.576 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.576 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'N/A' -2026-01-28 14:17:47.576 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/favicon.ico - 200 38078 image/x-icon 1.2025ms -2026-01-28 14:17:47.576 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.js - 200 138290 text/javascript 5.1114ms -2026-01-28 14:17:47.606 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.native.cs8mcre4gh.js - null null -2026-01-28 14:17:47.606 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.0j6ezsi0n0.js - null null -2026-01-28 14:17:47.606 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.native.muve7a13r4.wasm - null null -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.607 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.607 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.607 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.607 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.607 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.607 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.607 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.607 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.607 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.607 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.608 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.608 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.608 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.608 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.608 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.608 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.608 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.608 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.608 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.608 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.608 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.608 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.608 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.608 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.608 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.608 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.608 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.608 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.608 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.608 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.608 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.609 +03:00 [INF] Sending file. Request path: '_framework/dotnet.native.cs8mcre4gh.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\k6ua61tyqb-{0}-cs8mcre4gh-cs8mcre4gh.gz' -2026-01-28 14:17:47.609 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.609 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.native.cs8mcre4gh.js - 200 34952 text/javascript 3.5873ms -2026-01-28 14:17:47.609 +03:00 [INF] Sending file. Request path: '_framework/dotnet.runtime.0j6ezsi0n0.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ilxt1pu9fi-{0}-0j6ezsi0n0-0j6ezsi0n0.gz' -2026-01-28 14:17:47.609 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.609 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.0j6ezsi0n0.js - 200 57287 text/javascript 3.9445ms -2026-01-28 14:17:47.620 +03:00 [INF] Sending file. Request path: '_framework/dotnet.native.muve7a13r4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uv3ayj7441-{0}-muve7a13r4-muve7a13r4.gz' -2026-01-28 14:17:47.620 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.620 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.native.muve7a13r4.wasm - 200 1207839 application/wasm 14.2845ms -2026-01-28 14:17:47.624 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.JavaScript.flbdejno7d.wasm - null null -2026-01-28 14:17:47.625 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.626 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.626 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.626 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.626 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.626 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.626 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.626 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.626 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.626 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.626 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.626 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.626 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.626 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.626 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.627 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.627 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.627 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.627 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.627 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.627 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.627 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.629 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.InteropServices.JavaScript.flbdejno7d.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s7btk1c9a3-{0}-flbdejno7d-flbdejno7d.gz' -2026-01-28 14:17:47.629 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.629 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.JavaScript.flbdejno7d.wasm - 200 79680 application/wasm 4.4925ms -2026-01-28 14:17:47.661 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.CoreLib.zjh2w4p93l.wasm - null null -2026-01-28 14:17:47.665 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.665 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.665 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.665 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.666 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.666 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.js.map - null null -2026-01-28 14:17:47.666 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.666 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.666 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.666 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.666 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.666 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.666 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.666 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.666 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.667 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.667 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.667 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.667 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.667 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.667 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.667 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.667 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.667 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.668 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.668 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.668 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.668 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.668 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.668 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.668 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.669 +03:00 [INF] Sending file. Request path: '_framework/dotnet.runtime.js.map'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xqmdb6twc8-{0}-efgkpxn596-efgkpxn596.gz' -2026-01-28 14:17:47.669 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.669 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.js.map - 200 89353 text/plain 3.4476ms -2026-01-28 14:17:47.709 +03:00 [INF] Sending file. Request path: '_framework/System.Private.CoreLib.zjh2w4p93l.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6as1brjopk-{0}-zjh2w4p93l-zjh2w4p93l.gz' -2026-01-28 14:17:47.709 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.709 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.CoreLib.zjh2w4p93l.wasm - 200 4870686 application/wasm 48.0195ms -2026-01-28 14:17:47.753 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.rgbxj6i45y.pdb - null null -2026-01-28 14:17:47.754 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.754 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.754 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.754 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.754 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.754 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.754 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.754 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.754 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.754 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.754 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.754 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.754 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.754 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.755 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.755 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.755 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.755 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.755 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.755 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.755 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.755 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.756 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.rgbxj6i45y.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vzc2x4ap4x-{0}-rgbxj6i45y-rgbxj6i45y.gz' -2026-01-28 14:17:47.756 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.756 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.rgbxj6i45y.pdb - 200 19065 application/octet-stream 2.8682ms -2026-01-28 14:17:47.763 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.3ihkiqtul0.pdb - null null -2026-01-28 14:17:47.764 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.764 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.764 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.764 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.764 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.764 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.764 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.764 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.764 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.764 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.764 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.765 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.765 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.765 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.765 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.765 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.765 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.765 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.765 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.765 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.765 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.766 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.767 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.3ihkiqtul0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6vzgo2e02t-{0}-3ihkiqtul0-3ihkiqtul0.gz' -2026-01-28 14:17:47.767 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.767 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.3ihkiqtul0.pdb - 200 18845 application/octet-stream 4.3164ms -2026-01-28 14:17:47.775 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.q12kofv66i.pdb - null null -2026-01-28 14:17:47.775 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.776 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.776 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.776 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.776 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.776 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.776 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.777 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.777 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.777 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.777 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.777 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.777 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.777 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.777 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.778 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.q12kofv66i.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tiqjr11wdr-{0}-q12kofv66i-q12kofv66i.gz' -2026-01-28 14:17:47.778 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.778 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.q12kofv66i.pdb - 200 40486 application/octet-stream 3.1506ms -2026-01-28 14:17:47.784 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.ugoz0mgqgy.pdb - null null -2026-01-28 14:17:47.785 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.785 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.785 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.785 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.785 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.785 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.785 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.785 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.785 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.785 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.786 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.786 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.786 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.786 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.786 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.786 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.786 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.786 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.786 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.787 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.ugoz0mgqgy.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3z9ena93oc-{0}-ugoz0mgqgy-ugoz0mgqgy.gz' -2026-01-28 14:17:47.787 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.787 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.ugoz0mgqgy.pdb - 200 31293 application/octet-stream 3.1306ms -2026-01-28 14:17:47.792 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.WebAssembly.imimiyzcuo.pdb - null null -2026-01-28 14:17:47.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.793 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.793 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.793 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.793 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.793 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.793 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.794 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.794 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.794 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.794 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.794 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.794 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.794 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.794 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.795 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Autofac.WebAssembly.imimiyzcuo.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\46uzmq97el-{0}-imimiyzcuo-imimiyzcuo.gz' -2026-01-28 14:17:47.795 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.795 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.WebAssembly.imimiyzcuo.pdb - 200 17837 application/octet-stream 2.7506ms -2026-01-28 14:17:47.799 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.xhf7sa1p5x.pdb - null null -2026-01-28 14:17:47.800 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.800 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.800 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.800 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.800 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.801 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.801 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.801 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.801 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.801 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.801 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.801 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.801 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.801 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.801 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.802 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.xhf7sa1p5x.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nvmr6rtxm8-{0}-xhf7sa1p5x-xhf7sa1p5x.gz' -2026-01-28 14:17:47.802 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.802 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.xhf7sa1p5x.pdb - 200 18717 application/octet-stream 2.9105ms -2026-01-28 14:17:47.807 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.aauy841uql.pdb - null null -2026-01-28 14:17:47.808 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.808 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.808 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.808 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.808 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.809 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.809 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.809 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.809 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.809 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.809 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.809 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.809 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.809 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.809 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.809 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.809 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.809 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.809 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.809 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.809 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.810 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.811 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.aauy841uql.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2jefoohlw9-{0}-aauy841uql-aauy841uql.gz' -2026-01-28 14:17:47.811 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.811 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.aauy841uql.pdb - 200 18717 application/octet-stream 3.3118ms -2026-01-28 14:17:47.821 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.gbnu5lon3p.pdb - null null -2026-01-28 14:17:47.822 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.822 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.822 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.822 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.822 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.822 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.822 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.822 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.822 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.822 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.822 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.822 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.822 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.822 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.822 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.823 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.823 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.823 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.823 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.823 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.823 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.823 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.824 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.gbnu5lon3p.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\yqm8xk8yh0-{0}-gbnu5lon3p-gbnu5lon3p.gz' -2026-01-28 14:17:47.824 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.824 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.gbnu5lon3p.pdb - 200 18277 application/octet-stream 2.492ms -2026-01-28 14:17:47.828 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.HttpApi.Client.puryd8tfts.pdb - null null -2026-01-28 14:17:47.829 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.829 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.829 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.829 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.829 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.829 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.829 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.829 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.830 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.830 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.830 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.830 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.830 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.830 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.830 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.830 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.830 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.831 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.HttpApi.Client.puryd8tfts.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wa1oh5lir8-{0}-puryd8tfts-puryd8tfts.gz' -2026-01-28 14:17:47.831 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.831 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.HttpApi.Client.puryd8tfts.pdb - 200 18313 application/octet-stream 2.8673ms -2026-01-28 14:17:47.837 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Application.Contracts.q930c1xwd6.pdb - null null -2026-01-28 14:17:47.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.838 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.838 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.838 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.838 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.838 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.838 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.838 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.838 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.838 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.838 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.839 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Application.Contracts.q930c1xwd6.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7jvwr8mtd4-{0}-q930c1xwd6-q930c1xwd6.gz' -2026-01-28 14:17:47.839 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.839 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Application.Contracts.q930c1xwd6.pdb - 200 17845 application/octet-stream 2.6143ms -2026-01-28 14:17:47.844 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Domain.Shared.bmn2636ymj.pdb - null null -2026-01-28 14:17:47.844 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.844 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.844 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.844 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.844 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.844 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.845 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.845 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.845 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.845 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.845 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.845 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.845 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.845 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.845 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.845 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.845 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.845 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.845 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.845 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.845 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.845 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.846 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Domain.Shared.bmn2636ymj.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rlbmklp40g-{0}-bmn2636ymj-bmn2636ymj.gz' -2026-01-28 14:17:47.846 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.846 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Domain.Shared.bmn2636ymj.pdb - 200 17373 application/octet-stream 2.4914ms -2026-01-28 14:17:47.851 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.tv5yl1psyg.pdb - null null -2026-01-28 14:17:47.851 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.851 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.852 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.852 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.852 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.852 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.852 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.852 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.852 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.852 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.852 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.852 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.852 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.852 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.852 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.852 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.852 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.852 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.852 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.852 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.852 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.852 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.853 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.tv5yl1psyg.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kaxpuw2pqs-{0}-tv5yl1psyg-tv5yl1psyg.gz' -2026-01-28 14:17:47.853 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.853 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.tv5yl1psyg.pdb - 200 21877 application/octet-stream 2.3467ms -2026-01-28 14:17:47.858 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.i3kyf3e5w5.pdb - null null -2026-01-28 14:17:47.858 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.858 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.858 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.858 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.858 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.859 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.859 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.859 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.859 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.859 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.859 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.859 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.859 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.859 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.859 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.859 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.859 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.859 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.859 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.859 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.859 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.859 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.860 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.i3kyf3e5w5.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3g4acw7rc0-{0}-i3kyf3e5w5-i3kyf3e5w5.gz' -2026-01-28 14:17:47.860 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.860 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.i3kyf3e5w5.pdb - 200 28037 application/octet-stream 2.6016ms -2026-01-28 14:17:47.865 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.hcs1zisgxl.pdb - null null -2026-01-28 14:17:47.865 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.866 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.866 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.866 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.866 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.866 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.866 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.866 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.866 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.866 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.867 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.868 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.hcs1zisgxl.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\iqrjqm25rb-{0}-hcs1zisgxl-hcs1zisgxl.gz' -2026-01-28 14:17:47.868 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.868 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.hcs1zisgxl.pdb - 200 41586 application/octet-stream 3.3408ms -2026-01-28 14:17:47.874 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.w6zddju3kj.pdb - null null -2026-01-28 14:17:47.874 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.874 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.874 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.874 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.874 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.875 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.875 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.875 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.875 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.875 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.875 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.875 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.875 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.875 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.875 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.876 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.w6zddju3kj.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wynnfd4qyp-{0}-w6zddju3kj-w6zddju3kj.gz' -2026-01-28 14:17:47.876 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.876 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.w6zddju3kj.pdb - 200 31269 application/octet-stream 2.4196ms -2026-01-28 14:17:47.881 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.kgrhtsi4hq.pdb - null null -2026-01-28 14:17:47.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.881 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.881 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.881 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.881 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.882 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.882 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.882 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.882 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.882 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.882 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.882 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.882 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.882 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.882 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.882 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.882 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.882 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.882 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.882 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.882 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.882 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.883 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.kgrhtsi4hq.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\htac70xodz-{0}-kgrhtsi4hq-kgrhtsi4hq.gz' -2026-01-28 14:17:47.883 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.883 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.kgrhtsi4hq.pdb - 200 18517 application/octet-stream 2.4727ms -2026-01-28 14:17:47.887 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.mqramojkbo.pdb - null null -2026-01-28 14:17:47.887 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.887 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.888 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.888 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.888 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.888 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.888 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.888 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.888 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.888 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.888 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.888 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.888 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.888 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.888 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.889 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.mqramojkbo.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mf8v92gj25-{0}-mqramojkbo-mqramojkbo.gz' -2026-01-28 14:17:47.889 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.889 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.mqramojkbo.pdb - 200 13921 application/octet-stream 2.427ms -2026-01-28 14:17:47.895 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.kbf4e1o5yq.pdb - null null -2026-01-28 14:17:47.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.895 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.895 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.895 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.895 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.896 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.896 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.896 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.896 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.896 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.896 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.896 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.896 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.896 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.896 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.896 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.896 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.896 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.896 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.896 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.896 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.896 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.897 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.kbf4e1o5yq.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\075clw76hm-{0}-kbf4e1o5yq-kbf4e1o5yq.gz' -2026-01-28 14:17:47.897 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.897 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.kbf4e1o5yq.pdb - 200 21557 application/octet-stream 2.5516ms -2026-01-28 14:17:47.902 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.j3nmt0rh5o.pdb - null null -2026-01-28 14:17:47.902 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.902 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.902 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.902 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.902 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.903 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.903 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.903 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.903 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.903 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.903 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.903 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.903 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.903 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.903 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.904 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.j3nmt0rh5o.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gbgteom76y-{0}-j3nmt0rh5o-j3nmt0rh5o.gz' -2026-01-28 14:17:47.904 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.904 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.j3nmt0rh5o.pdb - 200 31349 application/octet-stream 2.413ms -2026-01-28 14:17:47.908 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.ej4nfwopnt.pdb - null null -2026-01-28 14:17:47.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.909 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.909 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.909 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.909 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.909 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.909 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.910 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.910 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.910 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.910 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.910 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.910 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.910 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.910 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.911 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Blazor.MudBlazor.ej4nfwopnt.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8c1zm5wt8e-{0}-ej4nfwopnt-ej4nfwopnt.gz' -2026-01-28 14:17:47.911 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.911 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.ej4nfwopnt.pdb - 200 45622 application/octet-stream 2.6354ms -2026-01-28 14:17:47.915 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MudBlazorUI.kagx9siw5c.pdb - null null -2026-01-28 14:17:47.916 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.916 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.916 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.916 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.916 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.916 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.916 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.916 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.916 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.916 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.916 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.916 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.916 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.916 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.917 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.917 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.917 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.917 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.917 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.917 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.917 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.917 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.918 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MudBlazorUI.kagx9siw5c.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fb4n2yszse-{0}-kagx9siw5c-kagx9siw5c.gz' -2026-01-28 14:17:47.918 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.918 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MudBlazorUI.kagx9siw5c.pdb - 200 75523 application/octet-stream 2.7968ms -2026-01-28 14:17:47.923 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.h9wobfk88b.pdb - null null -2026-01-28 14:17:47.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.923 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.923 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.923 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.923 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.924 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.924 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.924 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.924 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.924 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.924 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.924 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.924 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.924 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.924 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.924 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.924 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.924 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.924 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.924 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.924 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.924 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.925 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.h9wobfk88b.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ouhgkzthum-{0}-h9wobfk88b-h9wobfk88b.gz' -2026-01-28 14:17:47.925 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.926 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.h9wobfk88b.pdb - 200 42806 application/octet-stream 2.7667ms -2026-01-28 14:17:47.930 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.sff8ai0aia.pdb - null null -2026-01-28 14:17:47.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.931 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.931 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.931 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.931 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.931 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.931 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.931 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.931 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.931 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.931 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.931 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.931 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.931 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.932 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.933 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.sff8ai0aia.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xdm6fxeedd-{0}-sff8ai0aia-sff8ai0aia.gz' -2026-01-28 14:17:47.933 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.933 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.sff8ai0aia.pdb - 200 18145 application/octet-stream 2.7212ms -2026-01-28 14:17:47.940 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.6hy2xofs6k.pdb - null null -2026-01-28 14:17:47.941 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.941 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.941 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.941 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.941 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.941 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.942 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.942 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.942 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.942 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.942 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.942 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.942 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.942 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.942 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.942 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.942 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.942 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.942 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.942 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.942 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.942 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.944 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.6hy2xofs6k.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wvossyu6ah-{0}-6hy2xofs6k-6hy2xofs6k.gz' -2026-01-28 14:17:47.944 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.944 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.6hy2xofs6k.pdb - 200 41322 application/octet-stream 3.4217ms -2026-01-28 14:17:47.949 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.phiqfrt9c2.pdb - null null -2026-01-28 14:17:47.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.950 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.950 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.950 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.950 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.950 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.950 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.950 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.951 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.951 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.951 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.951 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.951 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.951 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.951 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.952 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.phiqfrt9c2.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mq253tbkc6-{0}-phiqfrt9c2-phiqfrt9c2.gz' -2026-01-28 14:17:47.952 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.952 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.phiqfrt9c2.pdb - 200 28197 application/octet-stream 2.6077ms -2026-01-28 14:17:47.956 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.Application.Contracts.lnhr5y4bfl.pdb - null null -2026-01-28 14:17:47.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.957 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.957 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.957 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.957 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.957 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.957 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.957 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.957 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.957 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.957 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.957 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.957 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.957 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.958 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.959 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Account.Application.Contracts.lnhr5y4bfl.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uzxye9p8cy-{0}-lnhr5y4bfl-lnhr5y4bfl.gz' -2026-01-28 14:17:47.959 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.959 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.Application.Contracts.lnhr5y4bfl.pdb - 200 19021 application/octet-stream 2.5203ms -2026-01-28 14:17:47.964 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.HttpApi.Client.vbwanrrdq2.pdb - null null -2026-01-28 14:17:47.964 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.964 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.964 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.965 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.965 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.966 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.966 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.966 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.966 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.966 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.966 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.966 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.966 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.967 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Account.HttpApi.Client.vbwanrrdq2.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ntmq6e7ewr-{0}-vbwanrrdq2-vbwanrrdq2.gz' -2026-01-28 14:17:47.967 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.967 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.HttpApi.Client.vbwanrrdq2.pdb - 200 18073 application/octet-stream 3.2804ms -2026-01-28 14:17:47.971 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.hpzdukhxsy.pdb - null null -2026-01-28 14:17:47.971 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.972 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.972 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.972 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.972 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.972 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.972 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.972 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.972 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.972 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.972 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.972 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.972 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.972 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.972 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.972 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.972 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.972 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.972 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.972 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.972 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.973 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.973 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.hpzdukhxsy.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\eoau05i0af-{0}-hpzdukhxsy-hpzdukhxsy.gz' -2026-01-28 14:17:47.974 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.974 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.hpzdukhxsy.pdb - 200 25305 application/octet-stream 2.7393ms -2026-01-28 14:17:47.978 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Contracts.4guztbzukr.pdb - null null -2026-01-28 14:17:47.979 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.979 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.979 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.979 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.979 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.979 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.979 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.979 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.979 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.979 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.979 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.979 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.979 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.979 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.980 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.980 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.980 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.980 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.980 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.980 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.980 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.980 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.981 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.Contracts.4guztbzukr.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ur1wb3r0pv-{0}-4guztbzukr-4guztbzukr.gz' -2026-01-28 14:17:47.981 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.981 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Contracts.4guztbzukr.pdb - 200 26921 application/octet-stream 2.7908ms -2026-01-28 14:17:47.986 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.3fgrvz25ex.pdb - null null -2026-01-28 14:17:47.986 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.986 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.986 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.986 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.986 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.987 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.987 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.987 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.987 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.987 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.987 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.987 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.987 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.987 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.987 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.988 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Auditing.3fgrvz25ex.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\o0dl3ao57v-{0}-3fgrvz25ex-3fgrvz25ex.gz' -2026-01-28 14:17:47.988 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.988 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.3fgrvz25ex.pdb - 200 29913 application/octet-stream 2.3424ms -2026-01-28 14:17:47.992 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.Contracts.ad5k0tpyib.pdb - null null -2026-01-28 14:17:47.993 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.993 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.993 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.993 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.993 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.993 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:47.993 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:47.993 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:47.993 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:47.993 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:47.993 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:47.993 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.993 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:47.993 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:47.993 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:47.993 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:47.993 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:47.993 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:47.993 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:47.994 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:47.994 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:47.994 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.994 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Auditing.Contracts.ad5k0tpyib.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wqxp9ykz4o-{0}-ad5k0tpyib-ad5k0tpyib.gz' -2026-01-28 14:17:47.994 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:47.995 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.Contracts.ad5k0tpyib.pdb - 200 14417 application/octet-stream 2.4504ms -2026-01-28 14:17:47.999 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AuditLogging.Domain.Shared.er7pf6ix9i.pdb - null null -2026-01-28 14:17:47.999 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.999 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:47.999 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:47.999 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:47.999 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.000 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.000 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.000 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.000 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.000 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.000 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.000 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.000 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.000 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.001 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.001 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AuditLogging.Domain.Shared.er7pf6ix9i.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5199po5zxq-{0}-er7pf6ix9i-er7pf6ix9i.gz' -2026-01-28 14:17:48.001 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.001 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AuditLogging.Domain.Shared.er7pf6ix9i.pdb - 200 16493 application/octet-stream 2.6571ms -2026-01-28 14:17:48.006 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.c2wpqbl74n.pdb - null null -2026-01-28 14:17:48.007 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.007 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.007 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.007 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.007 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.008 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.008 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.008 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.008 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.008 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.008 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.008 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.008 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.008 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.008 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.008 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.008 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.008 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.008 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.008 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.008 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.008 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.009 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Authorization.c2wpqbl74n.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sb9kt3tht9-{0}-c2wpqbl74n-c2wpqbl74n.gz' -2026-01-28 14:17:48.009 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.010 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.c2wpqbl74n.pdb - 200 41330 application/octet-stream 3.1767ms -2026-01-28 14:17:48.014 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.Abstractions.njkrkpdqox.pdb - null null -2026-01-28 14:17:48.015 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.015 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.015 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.015 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.015 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.015 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.016 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.016 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.016 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.016 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.016 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.016 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.016 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.016 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.016 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.016 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.016 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.016 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.016 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.016 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.016 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.017 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.017 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Authorization.Abstractions.njkrkpdqox.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\09yc6y4n5e-{0}-njkrkpdqox-njkrkpdqox.gz' -2026-01-28 14:17:48.018 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.018 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.Abstractions.njkrkpdqox.pdb - 200 27181 application/octet-stream 3.8605ms -2026-01-28 14:17:48.023 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.gjl6v1jjym.pdb - null null -2026-01-28 14:17:48.023 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.023 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.023 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.023 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.023 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.024 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.024 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.024 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.024 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.024 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.024 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.024 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.024 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.024 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.024 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.024 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.024 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.024 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.024 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.024 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.024 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.025 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.025 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Autofac.gjl6v1jjym.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jpkrtenkjs-{0}-gjl6v1jjym-gjl6v1jjym.gz' -2026-01-28 14:17:48.025 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.025 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.gjl6v1jjym.pdb - 200 18693 application/octet-stream 2.6837ms -2026-01-28 14:17:48.029 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundJobs.Domain.Shared.5vpn00cswb.pdb - null null -2026-01-28 14:17:48.030 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.030 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.030 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.030 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.030 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.030 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.031 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.031 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.031 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.031 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.031 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.031 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.031 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.031 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.031 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.031 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.031 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.031 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.031 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.031 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.031 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.031 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.033 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BackgroundJobs.Domain.Shared.5vpn00cswb.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\htaazompkm-{0}-5vpn00cswb-5vpn00cswb.gz' -2026-01-28 14:17:48.033 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.033 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundJobs.Domain.Shared.5vpn00cswb.pdb - 200 13221 application/octet-stream 3.8441ms -2026-01-28 14:17:48.038 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundWorkers.huyj44uu0k.pdb - null null -2026-01-28 14:17:48.038 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.038 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.038 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.038 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.038 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.039 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.039 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.039 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.039 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.039 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.039 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.039 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.039 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.039 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.039 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.040 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BackgroundWorkers.huyj44uu0k.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ei0v3zqng-{0}-huyj44uu0k-huyj44uu0k.gz' -2026-01-28 14:17:48.040 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.040 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundWorkers.huyj44uu0k.pdb - 200 19469 application/octet-stream 2.5839ms -2026-01-28 14:17:48.044 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Caching.x1qmvuwbas.pdb - null null -2026-01-28 14:17:48.045 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.045 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.045 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.045 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.045 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.045 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.046 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.046 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.046 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.046 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.046 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.046 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.046 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.046 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.046 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.047 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Caching.x1qmvuwbas.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wokijgaifq-{0}-x1qmvuwbas-x1qmvuwbas.gz' -2026-01-28 14:17:48.047 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.047 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Caching.x1qmvuwbas.pdb - 200 37286 application/octet-stream 2.9163ms -2026-01-28 14:17:48.052 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Castle.Core.b02it10il0.pdb - null null -2026-01-28 14:17:48.053 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.053 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.053 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.053 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.053 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.053 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.053 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.053 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.053 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.053 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.053 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.053 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.053 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.053 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.054 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.054 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.054 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.054 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.054 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.054 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.054 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.054 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.055 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Castle.Core.b02it10il0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dte7v0ocsr-{0}-b02it10il0-b02it10il0.gz' -2026-01-28 14:17:48.055 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.055 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Castle.Core.b02it10il0.pdb - 200 15221 application/octet-stream 2.733ms -2026-01-28 14:17:48.059 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Core.t1nnzj3qxb.pdb - null null -2026-01-28 14:17:48.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.060 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.060 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.060 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.060 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.060 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.060 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.060 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.060 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.060 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.060 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.061 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.061 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.061 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.061 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.062 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Core.t1nnzj3qxb.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c42x4ftr8l-{0}-t1nnzj3qxb-t1nnzj3qxb.gz' -2026-01-28 14:17:48.063 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.063 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Core.t1nnzj3qxb.pdb - 200 148177 application/octet-stream 3.5529ms -2026-01-28 14:17:48.070 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Data.9rv6w6qyku.pdb - null null -2026-01-28 14:17:48.070 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.070 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.070 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.070 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.070 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.071 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.071 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.071 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.071 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.071 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.071 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.071 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.071 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.071 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.071 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.071 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.071 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.071 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.071 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.071 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.071 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.071 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.072 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Data.9rv6w6qyku.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ze3wjukds-{0}-9rv6w6qyku-9rv6w6qyku.gz' -2026-01-28 14:17:48.072 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.073 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Data.9rv6w6qyku.pdb - 200 21821 application/octet-stream 2.9058ms -2026-01-28 14:17:48.078 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Ddd.Application.Contracts.giee71sla7.pdb - null null -2026-01-28 14:17:48.078 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.078 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.078 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.078 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.078 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.078 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.079 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.079 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.079 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.079 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.079 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.079 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.079 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.079 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.079 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.080 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Ddd.Application.Contracts.giee71sla7.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5aiafzhp1m-{0}-giee71sla7-giee71sla7.gz' -2026-01-28 14:17:48.080 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.080 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Ddd.Application.Contracts.giee71sla7.pdb - 200 23417 application/octet-stream 2.7252ms -2026-01-28 14:17:48.085 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.DistributedLocking.Abstractions.65nua6uxpe.pdb - null null -2026-01-28 14:17:48.086 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.086 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.086 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.086 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.086 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.086 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.086 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.086 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.086 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.086 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.086 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.086 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.086 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.086 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.087 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.087 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.087 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.087 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.087 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.087 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.087 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.087 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.088 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.DistributedLocking.Abstractions.65nua6uxpe.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\a8j0sb24cp-{0}-65nua6uxpe-65nua6uxpe.gz' -2026-01-28 14:17:48.088 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.088 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.DistributedLocking.Abstractions.65nua6uxpe.pdb - 200 14657 application/octet-stream 2.8739ms -2026-01-28 14:17:48.092 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.iceog8f4b1.pdb - null null -2026-01-28 14:17:48.093 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.093 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.093 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.093 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.093 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.093 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.093 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.093 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.093 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.093 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.093 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.093 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.093 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.093 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.094 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.094 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.094 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.094 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.094 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.094 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.094 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.094 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.095 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.EventBus.iceog8f4b1.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c7ycdiyl76-{0}-iceog8f4b1-iceog8f4b1.gz' -2026-01-28 14:17:48.095 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.095 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.iceog8f4b1.pdb - 200 37630 application/octet-stream 2.8558ms -2026-01-28 14:17:48.100 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.Abstractions.xi5e4z12z9.pdb - null null -2026-01-28 14:17:48.101 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.101 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.101 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.101 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.101 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.101 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.101 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.101 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.101 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.101 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.101 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.102 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.102 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.102 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.102 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.102 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.102 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.102 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.102 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.102 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.102 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.102 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.103 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.EventBus.Abstractions.xi5e4z12z9.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\w7l86von3o-{0}-xi5e4z12z9-xi5e4z12z9.gz' -2026-01-28 14:17:48.103 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.103 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.Abstractions.xi5e4z12z9.pdb - 200 20237 application/octet-stream 2.8078ms -2026-01-28 14:17:48.108 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ExceptionHandling.25h2gy8c5p.pdb - null null -2026-01-28 14:17:48.108 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.108 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.108 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.108 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.108 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.109 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.109 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.109 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.109 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.109 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.109 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.109 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.109 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.109 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.110 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.111 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ExceptionHandling.25h2gy8c5p.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\m6s0vb39gb-{0}-25h2gy8c5p-25h2gy8c5p.gz' -2026-01-28 14:17:48.111 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.111 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ExceptionHandling.25h2gy8c5p.pdb - 200 20157 application/octet-stream 2.9557ms -2026-01-28 14:17:48.117 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Application.Contracts.0urd6kcrgp.pdb - null null -2026-01-28 14:17:48.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.118 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.118 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.118 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.118 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.118 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.118 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.118 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.118 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.118 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.118 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.118 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.119 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Application.Contracts.0urd6kcrgp.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0ru1qvb3x4-{0}-0urd6kcrgp-0urd6kcrgp.gz' -2026-01-28 14:17:48.119 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.119 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Application.Contracts.0urd6kcrgp.pdb - 200 16981 application/octet-stream 2.7531ms -2026-01-28 14:17:48.124 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Domain.Shared.4mozmqu5fv.pdb - null null -2026-01-28 14:17:48.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.125 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.125 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.125 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.125 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.125 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.125 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.125 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.125 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.125 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.125 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.125 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.125 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.125 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.125 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.125 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.125 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.125 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.125 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.126 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.126 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.126 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.127 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Domain.Shared.4mozmqu5fv.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dnjx07a9gy-{0}-4mozmqu5fv-4mozmqu5fv.gz' -2026-01-28 14:17:48.127 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.127 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Domain.Shared.4mozmqu5fv.pdb - 200 18405 application/octet-stream 2.8858ms -2026-01-28 14:17:48.132 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.HttpApi.Client.3n7n0nm412.pdb - null null -2026-01-28 14:17:48.133 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.133 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.133 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.133 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.133 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.134 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.134 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.134 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.134 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.134 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.134 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.134 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.134 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.134 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.134 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.134 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.134 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.134 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.134 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.134 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.134 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.134 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.135 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.HttpApi.Client.3n7n0nm412.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xephdxvmqy-{0}-3n7n0nm412-3n7n0nm412.gz' -2026-01-28 14:17:48.135 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.135 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.HttpApi.Client.3n7n0nm412.pdb - 200 16661 application/octet-stream 3.2823ms -2026-01-28 14:17:48.140 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Features.e0wztgo5kc.pdb - null null -2026-01-28 14:17:48.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.141 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.141 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.141 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.141 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.141 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.142 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.142 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.142 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.142 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.142 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.142 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.142 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.142 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.142 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.142 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.142 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.143 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Features.e0wztgo5kc.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lwwrm2rnuk-{0}-e0wztgo5kc-e0wztgo5kc.gz' -2026-01-28 14:17:48.143 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.143 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Features.e0wztgo5kc.pdb - 200 31093 application/octet-stream 2.8123ms -2026-01-28 14:17:48.148 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.GlobalFeatures.i3mx9avsa1.pdb - null null -2026-01-28 14:17:48.148 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.148 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.148 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.148 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.148 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.149 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.149 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.149 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.149 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.149 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.149 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.149 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.149 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.149 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.149 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.149 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.150 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.GlobalFeatures.i3mx9avsa1.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8hrz94lbbq-{0}-i3mx9avsa1-i3mx9avsa1.gz' -2026-01-28 14:17:48.150 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.150 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.GlobalFeatures.i3mx9avsa1.pdb - 200 20401 application/octet-stream 2.5271ms -2026-01-28 14:17:48.154 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Guids.trl9ec6i34.pdb - null null -2026-01-28 14:17:48.155 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.155 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.155 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.155 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.155 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.155 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.155 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.155 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.155 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.155 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.155 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.155 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.155 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.155 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.156 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.156 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.156 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.156 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.156 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.156 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.156 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.156 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.157 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Guids.trl9ec6i34.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0qqhgjay94-{0}-trl9ec6i34-trl9ec6i34.gz' -2026-01-28 14:17:48.157 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.157 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Guids.trl9ec6i34.pdb - 200 14061 application/octet-stream 2.9713ms -2026-01-28 14:17:48.161 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.e49tj9fcht.pdb - null null -2026-01-28 14:17:48.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.162 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.162 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.162 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.162 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.162 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.162 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.163 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.163 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.163 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.163 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.163 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.163 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.163 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.163 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.163 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.163 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.163 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.163 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.163 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.163 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.164 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.e49tj9fcht.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b3mu9af069-{0}-e49tj9fcht-e49tj9fcht.gz' -2026-01-28 14:17:48.164 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.164 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.e49tj9fcht.pdb - 200 31453 application/octet-stream 2.8093ms -2026-01-28 14:17:48.168 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Abstractions.k3c9afe7hi.pdb - null null -2026-01-28 14:17:48.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.169 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.169 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.169 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.169 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.169 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.169 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.169 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.169 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.169 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.169 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.170 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.170 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.170 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.170 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.170 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Abstractions.k3c9afe7hi.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j4y3kuv6se-{0}-k3c9afe7hi-k3c9afe7hi.gz' -2026-01-28 14:17:48.170 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.170 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Abstractions.k3c9afe7hi.pdb - 200 13525 application/octet-stream 2.4424ms -2026-01-28 14:17:48.175 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.yru01o8vkp.pdb - null null -2026-01-28 14:17:48.175 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.176 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.176 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.176 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.176 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.176 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.176 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.176 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.176 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.176 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.176 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.176 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.176 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.176 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.176 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.176 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.176 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.176 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.176 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.176 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.176 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.177 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.177 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.yru01o8vkp.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ttya30eyt8-{0}-yru01o8vkp-yru01o8vkp.gz' -2026-01-28 14:17:48.177 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.178 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.yru01o8vkp.pdb - 200 38918 application/octet-stream 2.5901ms -2026-01-28 14:17:48.182 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.3tflefedmx.pdb - null null -2026-01-28 14:17:48.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.183 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.183 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.183 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.183 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.183 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.183 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.183 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.183 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.183 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.183 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.183 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.183 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.183 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.184 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.184 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.IdentityModel.3tflefedmx.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\d3rz4s2afx-{0}-3tflefedmx-3tflefedmx.gz' -2026-01-28 14:17:48.184 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.184 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.3tflefedmx.pdb - 200 16433 application/octet-stream 2.313ms -2026-01-28 14:17:48.189 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Application.Contracts.csmzqgy4d0.pdb - null null -2026-01-28 14:17:48.189 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.189 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.189 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.189 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.189 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.190 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.190 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.190 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.190 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.190 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.190 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.190 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.190 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.190 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.190 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.191 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Application.Contracts.csmzqgy4d0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\h1go2ee35q-{0}-csmzqgy4d0-csmzqgy4d0.gz' -2026-01-28 14:17:48.191 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.191 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Application.Contracts.csmzqgy4d0.pdb - 200 20665 application/octet-stream 2.7342ms -2026-01-28 14:17:48.196 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Domain.Shared.earp2x5g6u.pdb - null null -2026-01-28 14:17:48.196 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.196 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.196 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.196 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.196 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.197 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.197 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.197 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.197 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.197 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.197 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.197 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.197 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.197 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.197 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.198 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Domain.Shared.earp2x5g6u.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wq3qylwiyp-{0}-earp2x5g6u-earp2x5g6u.gz' -2026-01-28 14:17:48.198 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.198 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Domain.Shared.earp2x5g6u.pdb - 200 23785 application/octet-stream 2.8151ms -2026-01-28 14:17:48.203 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.HttpApi.Client.4ey4wjeneg.pdb - null null -2026-01-28 14:17:48.204 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.204 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.204 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.204 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.204 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.204 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.204 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.204 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.204 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.204 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.204 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.204 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.204 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.204 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.204 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.204 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.205 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.205 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.205 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.205 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.205 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.205 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.206 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.HttpApi.Client.4ey4wjeneg.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0u48eqlsj4-{0}-4ey4wjeneg-4ey4wjeneg.gz' -2026-01-28 14:17:48.206 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.206 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.HttpApi.Client.4ey4wjeneg.pdb - 200 23337 application/octet-stream 2.9024ms -2026-01-28 14:17:48.210 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.IdentityModel.biic7mtw2y.pdb - null null -2026-01-28 14:17:48.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.211 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.211 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.211 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.211 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.211 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.211 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.212 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.212 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.212 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.212 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.212 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.212 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.212 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.212 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.213 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.IdentityModel.biic7mtw2y.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\poi5v0je1c-{0}-biic7mtw2y-biic7mtw2y.gz' -2026-01-28 14:17:48.213 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.213 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.IdentityModel.biic7mtw2y.pdb - 200 20817 application/octet-stream 2.7173ms -2026-01-28 14:17:48.217 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.wxbyyf07mz.pdb - null null -2026-01-28 14:17:48.217 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.218 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.218 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.218 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.218 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.218 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.218 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.218 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.219 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.219 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.219 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.219 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.219 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.219 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.219 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.220 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.wxbyyf07mz.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rrchruuh0t-{0}-wxbyyf07mz-wxbyyf07mz.gz' -2026-01-28 14:17:48.220 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.220 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.wxbyyf07mz.pdb - 200 13757 application/octet-stream 2.8786ms -2026-01-28 14:17:48.224 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.Abstractions.b6z6t2mhzy.pdb - null null -2026-01-28 14:17:48.224 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.224 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.225 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.225 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.225 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.225 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.225 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.225 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.225 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.225 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.225 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.226 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.226 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.226 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.226 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.227 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.Abstractions.b6z6t2mhzy.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\u9w5uxptpu-{0}-b6z6t2mhzy-b6z6t2mhzy.gz' -2026-01-28 14:17:48.227 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.227 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.Abstractions.b6z6t2mhzy.pdb - 200 13249 application/octet-stream 2.9364ms -2026-01-28 14:17:48.231 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.SystemTextJson.rdlvucrzj7.pdb - null null -2026-01-28 14:17:48.232 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.232 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.232 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.232 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.232 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.233 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.233 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.233 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.233 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.233 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.233 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.233 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.233 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.233 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.233 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.233 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.233 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.233 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.233 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.233 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.233 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.233 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.234 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.SystemTextJson.rdlvucrzj7.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4rl2glc87e-{0}-rdlvucrzj7-rdlvucrzj7.gz' -2026-01-28 14:17:48.235 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.235 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.SystemTextJson.rdlvucrzj7.pdb - 200 21501 application/octet-stream 3.3455ms -2026-01-28 14:17:48.239 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.ellkzq2obz.pdb - null null -2026-01-28 14:17:48.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.240 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.240 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.240 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.240 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.240 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.240 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.241 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.241 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.241 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.241 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.241 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.241 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.241 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.241 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.242 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Localization.ellkzq2obz.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9jz0202bvx-{0}-ellkzq2obz-ellkzq2obz.gz' -2026-01-28 14:17:48.242 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.242 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.ellkzq2obz.pdb - 200 34682 application/octet-stream 2.7238ms -2026-01-28 14:17:48.246 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.Abstractions.e2czzeh6g0.pdb - null null -2026-01-28 14:17:48.246 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.246 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.247 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.247 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.247 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.247 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.247 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.247 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.247 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.247 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.247 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.247 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.247 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.247 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.247 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.247 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.247 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.247 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.247 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.247 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.247 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.248 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.249 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Localization.Abstractions.e2czzeh6g0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nql43ug6yv-{0}-e2czzeh6g0-e2czzeh6g0.gz' -2026-01-28 14:17:48.249 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.249 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.Abstractions.e2czzeh6g0.pdb - 200 16505 application/octet-stream 3.2133ms -2026-01-28 14:17:48.254 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Mapperly.xzmrwcbuer.pdb - null null -2026-01-28 14:17:48.254 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.254 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.254 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.254 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.254 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.255 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.255 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.255 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.255 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.255 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.255 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.255 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.255 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.255 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.255 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.256 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Mapperly.xzmrwcbuer.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ir90d0l0q4-{0}-xzmrwcbuer-xzmrwcbuer.gz' -2026-01-28 14:17:48.256 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.256 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Mapperly.xzmrwcbuer.pdb - 200 18489 application/octet-stream 2.7133ms -2026-01-28 14:17:48.260 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Minify.jd3swzgz81.pdb - null null -2026-01-28 14:17:48.260 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.261 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.261 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.261 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.261 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.261 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.261 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.261 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.261 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.261 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.261 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.261 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.261 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.261 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.262 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.262 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.262 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.262 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.262 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.262 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.262 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.262 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.263 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Minify.jd3swzgz81.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6nicogsytc-{0}-jd3swzgz81-jd3swzgz81.gz' -2026-01-28 14:17:48.263 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.263 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Minify.jd3swzgz81.pdb - 200 14637 application/octet-stream 2.8981ms -2026-01-28 14:17:48.268 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.m645p8frzn.pdb - null null -2026-01-28 14:17:48.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.269 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.269 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.269 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.269 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.269 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.269 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.270 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.270 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.270 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.270 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.270 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.270 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.270 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.270 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.271 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MultiTenancy.m645p8frzn.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xypgrhxtpa-{0}-m645p8frzn-m645p8frzn.gz' -2026-01-28 14:17:48.271 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.271 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.m645p8frzn.pdb - 200 21073 application/octet-stream 2.7366ms -2026-01-28 14:17:48.275 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.Abstractions.6usxju90tg.pdb - null null -2026-01-28 14:17:48.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.276 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.276 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.276 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.276 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.276 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.276 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.277 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.277 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.277 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.277 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.277 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.277 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.277 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.277 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.278 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MultiTenancy.Abstractions.6usxju90tg.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bwd6m19o6e-{0}-6usxju90tg-6usxju90tg.gz' -2026-01-28 14:17:48.278 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.278 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.Abstractions.6usxju90tg.pdb - 200 19661 application/octet-stream 2.704ms -2026-01-28 14:17:48.283 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectExtending.vubnqxtt45.pdb - null null -2026-01-28 14:17:48.284 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.284 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.284 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.284 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.284 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.284 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.284 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.284 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.284 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.284 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.284 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.284 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.284 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.284 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.285 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.285 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.285 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.285 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.285 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.285 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.285 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.285 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.286 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ObjectExtending.vubnqxtt45.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wybocaa0up-{0}-vubnqxtt45-vubnqxtt45.gz' -2026-01-28 14:17:48.286 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.286 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectExtending.vubnqxtt45.pdb - 200 31977 application/octet-stream 2.8954ms -2026-01-28 14:17:48.290 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectMapping.5ggcg7w9e7.pdb - null null -2026-01-28 14:17:48.290 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.291 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.324 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.325 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.325 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.325 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.325 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.325 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.325 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.325 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.325 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.325 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.325 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.325 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.326 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.326 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.326 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.326 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.326 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.326 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.326 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.326 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.327 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ObjectMapping.5ggcg7w9e7.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fsnac4k4sd-{0}-5ggcg7w9e7-5ggcg7w9e7.gz' -2026-01-28 14:17:48.327 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.327 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectMapping.5ggcg7w9e7.pdb - 200 17133 application/octet-stream 36.758ms -2026-01-28 14:17:48.331 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.OpenIddict.Domain.Shared.z584yb9x48.pdb - null null -2026-01-28 14:17:48.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.332 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.332 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.332 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.332 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.332 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.332 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.333 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.333 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.333 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.333 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.333 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.333 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.333 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.334 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.334 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.OpenIddict.Domain.Shared.z584yb9x48.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ofhohlcsdd-{0}-z584yb9x48-z584yb9x48.gz' -2026-01-28 14:17:48.334 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.334 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.OpenIddict.Domain.Shared.z584yb9x48.pdb - 200 17397 application/octet-stream 3.3001ms -2026-01-28 14:17:48.339 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Application.Contracts.yiquol1hlc.pdb - null null -2026-01-28 14:17:48.339 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.339 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.339 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.339 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.339 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.340 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.340 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.340 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.340 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.340 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.340 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.340 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.340 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.340 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.340 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.340 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.340 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.340 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.340 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.340 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.340 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.340 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.341 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Application.Contracts.yiquol1hlc.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0j5tpaf1fb-{0}-yiquol1hlc-yiquol1hlc.gz' -2026-01-28 14:17:48.341 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.341 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Application.Contracts.yiquol1hlc.pdb - 200 18373 application/octet-stream 2.2859ms -2026-01-28 14:17:48.345 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Domain.Shared.vduqctl6j9.pdb - null null -2026-01-28 14:17:48.346 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.346 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.346 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.346 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.346 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.346 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.346 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.346 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.346 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.346 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.346 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.347 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.347 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.347 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.347 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.347 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.347 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.347 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.347 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.347 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.347 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.347 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.348 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Domain.Shared.vduqctl6j9.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c9ti4wxngh-{0}-vduqctl6j9-vduqctl6j9.gz' -2026-01-28 14:17:48.348 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.348 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Domain.Shared.vduqctl6j9.pdb - 200 16501 application/octet-stream 2.5646ms -2026-01-28 14:17:48.353 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.HttpApi.Client.3dsrqtlur0.pdb - null null -2026-01-28 14:17:48.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.354 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.354 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.354 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.354 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.354 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.354 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.355 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.355 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.355 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.355 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.355 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.355 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.355 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.355 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.356 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.HttpApi.Client.3dsrqtlur0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7d7e24takc-{0}-3dsrqtlur0-3dsrqtlur0.gz' -2026-01-28 14:17:48.356 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.356 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.HttpApi.Client.3dsrqtlur0.pdb - 200 18361 application/octet-stream 2.5132ms -2026-01-28 14:17:48.360 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.RemoteServices.f0xptgiufw.pdb - null null -2026-01-28 14:17:48.360 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.361 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.361 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.361 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.361 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.361 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.361 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.361 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.361 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.361 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.361 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.361 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.361 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.361 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.361 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.361 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.361 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.361 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.361 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.361 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.361 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.362 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.362 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.RemoteServices.f0xptgiufw.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uib6a0l2w6-{0}-f0xptgiufw-f0xptgiufw.gz' -2026-01-28 14:17:48.362 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.362 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.RemoteServices.f0xptgiufw.pdb - 200 16053 application/octet-stream 2.3158ms -2026-01-28 14:17:48.367 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Security.zhp0sm48kb.pdb - null null -2026-01-28 14:17:48.368 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.368 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.368 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.368 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.368 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.368 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.368 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.368 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.368 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.368 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.368 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.368 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.368 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.368 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.369 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.369 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.369 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.369 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.369 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.369 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.369 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.369 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.370 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Security.zhp0sm48kb.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sx6n9iy4yj-{0}-zhp0sm48kb-zhp0sm48kb.gz' -2026-01-28 14:17:48.370 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.370 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Security.zhp0sm48kb.pdb - 200 29941 application/octet-stream 2.4186ms -2026-01-28 14:17:48.374 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Serialization.iselyci50i.pdb - null null -2026-01-28 14:17:48.374 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.374 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.374 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.374 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.374 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.375 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.375 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.375 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.375 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.375 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.375 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.375 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.375 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.375 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.375 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.375 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.375 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.375 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.375 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.375 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.375 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.375 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.376 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Serialization.iselyci50i.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ohz7m9cvuj-{0}-iselyci50i-iselyci50i.gz' -2026-01-28 14:17:48.376 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.376 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Serialization.iselyci50i.pdb - 200 13901 application/octet-stream 2.3973ms -2026-01-28 14:17:48.380 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Application.Contracts.oa8ze5tkwx.pdb - null null -2026-01-28 14:17:48.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.381 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.381 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.381 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.381 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.381 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.381 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.382 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.382 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.382 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.382 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.382 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.382 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.382 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.382 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.383 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Application.Contracts.oa8ze5tkwx.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n5hx9tj0h8-{0}-oa8ze5tkwx-oa8ze5tkwx.gz' -2026-01-28 14:17:48.383 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.383 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Application.Contracts.oa8ze5tkwx.pdb - 200 17249 application/octet-stream 3.2446ms -2026-01-28 14:17:48.387 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Domain.Shared.rb0zy7dgue.pdb - null null -2026-01-28 14:17:48.388 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.388 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.388 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.388 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.388 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.388 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.388 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.388 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.388 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.388 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.389 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.389 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.389 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.389 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.389 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.389 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.389 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.389 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.389 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Domain.Shared.rb0zy7dgue.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gpxmodrted-{0}-rb0zy7dgue-rb0zy7dgue.gz' -2026-01-28 14:17:48.389 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.390 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Domain.Shared.rb0zy7dgue.pdb - 200 15881 application/octet-stream 2.2654ms -2026-01-28 14:17:48.394 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.HttpApi.Client.219qgzx23p.pdb - null null -2026-01-28 14:17:48.394 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.394 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.394 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.394 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.394 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.395 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.395 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.395 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.395 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.395 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.395 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.395 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.395 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.395 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.395 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.395 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.395 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.395 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.395 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.395 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.395 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.395 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.396 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.HttpApi.Client.219qgzx23p.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vwkga7y8v6-{0}-219qgzx23p-219qgzx23p.gz' -2026-01-28 14:17:48.396 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.396 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.HttpApi.Client.219qgzx23p.pdb - 200 17273 application/octet-stream 2.1976ms -2026-01-28 14:17:48.401 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Settings.zg210hgmt5.pdb - null null -2026-01-28 14:17:48.402 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.402 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.402 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.402 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.402 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.402 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.402 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.402 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.402 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.402 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.402 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.402 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.402 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.402 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.403 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.403 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.403 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.403 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.403 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.403 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.403 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.403 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.405 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Settings.zg210hgmt5.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\69ib14dhz4-{0}-zg210hgmt5-zg210hgmt5.gz' -2026-01-28 14:17:48.405 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.405 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Settings.zg210hgmt5.pdb - 200 24709 application/octet-stream 3.6535ms -2026-01-28 14:17:48.409 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Application.Contracts.2kqwaqfq07.pdb - null null -2026-01-28 14:17:48.409 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.410 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.410 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.410 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.410 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.410 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.410 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.410 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.410 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.410 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.410 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.410 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.410 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.410 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.411 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.411 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.411 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Application.Contracts.2kqwaqfq07.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\usk06ilw8g-{0}-2kqwaqfq07-2kqwaqfq07.gz' -2026-01-28 14:17:48.412 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.412 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Application.Contracts.2kqwaqfq07.pdb - 200 16305 application/octet-stream 2.6659ms -2026-01-28 14:17:48.416 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Domain.Shared.8e6fpjlw3z.pdb - null null -2026-01-28 14:17:48.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.417 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.417 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.417 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.417 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.417 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.418 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.418 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.418 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.418 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.418 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.418 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.418 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.418 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.418 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.418 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.418 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.418 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.418 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.418 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.418 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.418 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.419 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Domain.Shared.8e6fpjlw3z.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\byh2ge6bdr-{0}-8e6fpjlw3z-8e6fpjlw3z.gz' -2026-01-28 14:17:48.419 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.419 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Domain.Shared.8e6fpjlw3z.pdb - 200 15609 application/octet-stream 2.825ms -2026-01-28 14:17:48.424 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.HttpApi.Client.0ep6vejlyv.pdb - null null -2026-01-28 14:17:48.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.424 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.425 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.425 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.425 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.425 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.425 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.425 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.425 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.425 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.425 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.426 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.HttpApi.Client.0ep6vejlyv.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b6ncobn1go-{0}-0ep6vejlyv-0ep6vejlyv.gz' -2026-01-28 14:17:48.426 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.426 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.HttpApi.Client.0ep6vejlyv.pdb - 200 17253 application/octet-stream 2.3682ms -2026-01-28 14:17:48.430 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Threading.ltl7sj60qd.pdb - null null -2026-01-28 14:17:48.431 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.431 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.431 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.431 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.431 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.432 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.432 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.432 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.432 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.432 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.432 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.432 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.432 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.432 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.432 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.432 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.432 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.432 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.432 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.432 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.432 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.433 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.434 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Threading.ltl7sj60qd.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\m4kji2jf2d-{0}-ltl7sj60qd-ltl7sj60qd.gz' -2026-01-28 14:17:48.434 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.434 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Threading.ltl7sj60qd.pdb - 200 22745 application/octet-stream 3.7878ms -2026-01-28 14:17:48.438 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Timing.4ite7giifl.pdb - null null -2026-01-28 14:17:48.439 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.439 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.439 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.439 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.439 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.439 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.439 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.439 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.439 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.439 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.439 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.439 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.439 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.439 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.440 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.440 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.440 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.440 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.440 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.440 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.440 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.440 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.441 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Timing.4ite7giifl.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ku2s5mtpx-{0}-4ite7giifl-4ite7giifl.gz' -2026-01-28 14:17:48.441 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.441 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Timing.4ite7giifl.pdb - 200 17233 application/octet-stream 2.53ms -2026-01-28 14:17:48.445 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.hbvsia4uct.pdb - null null -2026-01-28 14:17:48.445 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.445 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.445 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.445 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.445 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.446 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.446 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.446 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.446 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.446 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.446 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.446 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.446 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.446 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.446 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.446 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.446 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.446 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.446 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.446 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.446 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.446 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.447 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.UI.hbvsia4uct.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ojvava7kjz-{0}-hbvsia4uct-hbvsia4uct.gz' -2026-01-28 14:17:48.447 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.447 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.hbvsia4uct.pdb - 200 15269 application/octet-stream 2.5196ms -2026-01-28 14:17:48.470 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.Navigation.xd013kg4jh.pdb - null null -2026-01-28 14:17:48.470 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.470 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.470 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.470 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.470 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.471 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.471 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.471 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.471 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.471 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.471 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.471 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.471 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.471 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.472 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.472 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.472 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.472 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.472 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.472 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.472 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.472 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.473 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.UI.Navigation.xd013kg4jh.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\opi85np659-{0}-xd013kg4jh-xd013kg4jh.gz' -2026-01-28 14:17:48.473 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.473 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.Navigation.xd013kg4jh.pdb - 200 25665 application/octet-stream 3.3309ms -2026-01-28 14:17:48.478 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Uow.re76cfcetz.pdb - null null -2026-01-28 14:17:48.479 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.479 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.479 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.479 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.479 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.479 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.479 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.479 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.479 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.479 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.479 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.479 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.479 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.479 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.479 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.479 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.479 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.479 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.480 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.480 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.480 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.480 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.481 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Uow.re76cfcetz.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\37xxpsk7fy-{0}-re76cfcetz-re76cfcetz.gz' -2026-01-28 14:17:48.481 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.481 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Uow.re76cfcetz.pdb - 200 26921 application/octet-stream 2.7001ms -2026-01-28 14:17:48.486 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Abstractions.8nynefv6wf.pdb - null null -2026-01-28 14:17:48.487 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.487 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.487 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.487 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.487 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.487 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.487 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.487 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.487 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.487 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.487 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.487 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.487 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.487 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.488 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.488 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.488 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.488 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.488 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.488 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.488 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.488 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.489 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Users.Abstractions.8nynefv6wf.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\02tit97twy-{0}-8nynefv6wf-8nynefv6wf.gz' -2026-01-28 14:17:48.489 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.489 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Abstractions.8nynefv6wf.pdb - 200 16949 application/octet-stream 2.3717ms -2026-01-28 14:17:48.493 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Domain.Shared.l4ascx0wfo.pdb - null null -2026-01-28 14:17:48.494 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.494 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.494 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.494 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.494 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.494 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.494 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.494 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.494 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.494 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.494 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.494 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.494 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.494 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.495 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.495 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.495 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.495 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.495 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.495 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.495 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.495 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.496 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Users.Domain.Shared.l4ascx0wfo.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\i5q2ei5dis-{0}-l4ascx0wfo-l4ascx0wfo.gz' -2026-01-28 14:17:48.496 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.496 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Domain.Shared.l4ascx0wfo.pdb - 200 13285 application/octet-stream 2.447ms -2026-01-28 14:17:48.504 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.ksfguea92v.pdb - null null -2026-01-28 14:17:48.504 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.504 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.504 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.504 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.504 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.505 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.505 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.505 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.505 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.505 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.505 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.505 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.505 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.505 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.505 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.505 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.505 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.505 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.505 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.505 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.505 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.505 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.506 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Validation.ksfguea92v.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wypl5pd007-{0}-ksfguea92v-ksfguea92v.gz' -2026-01-28 14:17:48.506 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.506 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.ksfguea92v.pdb - 200 24513 application/octet-stream 2.6607ms -2026-01-28 14:17:48.510 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.Abstractions.zjvjxeb6lj.pdb - null null -2026-01-28 14:17:48.511 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.511 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.511 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.511 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.511 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.511 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.511 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.511 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.511 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.511 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.511 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.511 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.511 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.511 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.512 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.512 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.512 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.512 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.512 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.512 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.512 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.512 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.513 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Validation.Abstractions.zjvjxeb6lj.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mb6vj9j06o-{0}-zjvjxeb6lj-zjvjxeb6lj.gz' -2026-01-28 14:17:48.513 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.513 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.Abstractions.zjvjxeb6lj.pdb - 200 14137 application/octet-stream 2.9259ms -2026-01-28 14:17:48.519 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.VirtualFileSystem.kcqfs0t7tk.pdb - null null -2026-01-28 14:17:48.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.520 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.520 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.520 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.520 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.520 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.520 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.520 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.520 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.520 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.520 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.520 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.520 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.520 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.520 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.520 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.521 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.521 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.521 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.521 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.521 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.521 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.522 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.VirtualFileSystem.kcqfs0t7tk.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9vnkhoiruq-{0}-kcqfs0t7tk-kcqfs0t7tk.gz' -2026-01-28 14:17:48.522 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.522 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.VirtualFileSystem.kcqfs0t7tk.pdb - 200 21449 application/octet-stream 2.7389ms -2026-01-28 14:17:48.526 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.2ctxo9q0pu.pdb - null null -2026-01-28 14:17:48.527 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.527 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.527 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.527 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.527 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.527 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.527 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.527 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.528 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.528 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.528 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.528 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.528 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.528 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.528 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.528 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.528 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.528 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.528 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.528 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.528 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.528 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.529 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.2ctxo9q0pu.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\21kkcfw31s-{0}-2ctxo9q0pu-2ctxo9q0pu.gz' -2026-01-28 14:17:48.529 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.529 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.2ctxo9q0pu.pdb - 200 32145 application/octet-stream 2.3888ms -2026-01-28 14:17:48.535 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Autofac.le1wnuzdja.wasm - null null -2026-01-28 14:17:48.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.537 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.537 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.537 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.537 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.537 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.537 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.537 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.537 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.537 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.537 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.540 +03:00 [INF] Sending file. Request path: '_framework/Autofac.le1wnuzdja.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\le2bmj2hd0-{0}-le1wnuzdja-le1wnuzdja.gz' -2026-01-28 14:17:48.540 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.540 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Autofac.le1wnuzdja.wasm - 200 375661 application/wasm 5.2254ms -2026-01-28 14:17:48.568 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Autofac.Extensions.DependencyInjection.slmisa3m0h.wasm - null null -2026-01-28 14:17:48.568 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.569 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.569 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.569 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.569 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.569 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.569 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.569 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.569 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.569 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.569 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.569 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.569 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.569 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.569 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.569 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.569 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.569 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.570 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.570 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.570 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.570 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.571 +03:00 [INF] Sending file. Request path: '_framework/Autofac.Extensions.DependencyInjection.slmisa3m0h.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4h1lb8bivh-{0}-slmisa3m0h-slmisa3m0h.gz' -2026-01-28 14:17:48.571 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.571 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Autofac.Extensions.DependencyInjection.slmisa3m0h.wasm - 200 28470 application/wasm 3.6222ms -2026-01-28 14:17:48.576 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Autofac.Extras.DynamicProxy.tlrq82knod.wasm - null null -2026-01-28 14:17:48.576 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.576 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.577 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.577 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.577 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.577 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.577 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.577 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.577 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.577 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.577 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.577 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.577 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.577 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.578 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.578 +03:00 [INF] Sending file. Request path: '_framework/Autofac.Extras.DynamicProxy.tlrq82knod.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5nm56h6008-{0}-tlrq82knod-tlrq82knod.gz' -2026-01-28 14:17:48.578 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.579 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Autofac.Extras.DynamicProxy.tlrq82knod.wasm - 200 20278 application/wasm 2.9269ms -2026-01-28 14:17:48.584 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Castle.Core.dr7ya1fwgr.wasm - null null -2026-01-28 14:17:48.585 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.585 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.585 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.585 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.585 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.586 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.586 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.586 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.586 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.586 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.586 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.586 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.586 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.586 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.586 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.586 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.586 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.586 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.586 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.586 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.586 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.586 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.589 +03:00 [INF] Sending file. Request path: '_framework/Castle.Core.dr7ya1fwgr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mehy9ugib8-{0}-dr7ya1fwgr-dr7ya1fwgr.gz' -2026-01-28 14:17:48.589 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.589 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Castle.Core.dr7ya1fwgr.wasm - 200 388461 application/wasm 4.8563ms -2026-01-28 14:17:48.594 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Castle.Core.AsyncInterceptor.phbi0db4mk.wasm - null null -2026-01-28 14:17:48.595 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.595 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.595 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.595 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.595 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.595 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.595 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.595 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.595 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.595 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.595 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.595 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.595 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.595 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.596 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.596 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.596 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.596 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.596 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.596 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.596 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.596 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.597 +03:00 [INF] Sending file. Request path: '_framework/Castle.Core.AsyncInterceptor.phbi0db4mk.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dnds4j2x25-{0}-phbi0db4mk-phbi0db4mk.gz' -2026-01-28 14:17:48.597 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.597 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Castle.Core.AsyncInterceptor.phbi0db4mk.wasm - 200 19254 application/wasm 2.8414ms -2026-01-28 14:17:48.602 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Duende.IdentityModel.w8uizqq8rq.wasm - null null -2026-01-28 14:17:48.603 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.603 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.603 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.603 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.603 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.603 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.603 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.603 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.603 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.603 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.603 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.603 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.603 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.603 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.604 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.604 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.604 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.604 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.604 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.604 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.604 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.604 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.605 +03:00 [INF] Sending file. Request path: '_framework/Duende.IdentityModel.w8uizqq8rq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2h3cgpc6ac-{0}-w8uizqq8rq-w8uizqq8rq.gz' -2026-01-28 14:17:48.605 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.605 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Duende.IdentityModel.w8uizqq8rq.wasm - 200 202580 application/wasm 3.2182ms -2026-01-28 14:17:48.610 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/JetBrains.Annotations.30nyqsrum5.wasm - null null -2026-01-28 14:17:48.611 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.611 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.611 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.611 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.611 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.611 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.611 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.611 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.611 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.611 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.611 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.611 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.611 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.611 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.612 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.612 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.612 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.612 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.612 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.612 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.612 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.612 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.613 +03:00 [INF] Sending file. Request path: '_framework/JetBrains.Annotations.30nyqsrum5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6sdzj3kgop-{0}-30nyqsrum5-30nyqsrum5.gz' -2026-01-28 14:17:48.613 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.613 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/JetBrains.Annotations.30nyqsrum5.wasm - 200 122181 application/wasm 2.9894ms -2026-01-28 14:17:48.619 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Authorization.f7yamg8acn.wasm - null null -2026-01-28 14:17:48.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.619 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.619 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.619 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.619 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.620 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.620 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.620 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.620 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.620 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.620 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.620 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.620 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.620 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.620 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.620 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.620 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.620 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.620 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.620 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.620 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.620 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.621 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Authorization.f7yamg8acn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\y8t8qzdrbk-{0}-f7yamg8acn-f7yamg8acn.gz' -2026-01-28 14:17:48.621 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.621 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Authorization.f7yamg8acn.wasm - 200 45371 application/wasm 2.6787ms -2026-01-28 14:17:48.626 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.i180xx2qq9.wasm - null null -2026-01-28 14:17:48.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.627 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.627 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.627 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.627 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.627 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.627 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.628 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.628 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.628 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.628 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.628 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.628 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.628 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.628 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.630 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.i180xx2qq9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\00mrq6s2ss-{0}-i180xx2qq9-i180xx2qq9.gz' -2026-01-28 14:17:48.631 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.631 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.i180xx2qq9.wasm - 200 388973 application/wasm 4.8393ms -2026-01-28 14:17:48.637 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Authorization.8nosel0t6a.wasm - null null -2026-01-28 14:17:48.638 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.638 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.638 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.638 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.638 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.638 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.638 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.638 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.638 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.638 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.638 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.638 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.638 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.638 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.638 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.639 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.639 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.639 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.639 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.639 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.639 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.639 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.640 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.Authorization.8nosel0t6a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b9vfzkzuzt-{0}-8nosel0t6a-8nosel0t6a.gz' -2026-01-28 14:17:48.640 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.640 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Authorization.8nosel0t6a.wasm - 200 23862 application/wasm 2.7907ms -2026-01-28 14:17:48.645 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Forms.au92kshad9.wasm - null null -2026-01-28 14:17:48.645 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.645 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.646 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.646 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.646 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.646 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.646 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.646 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.646 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.646 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.646 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.646 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.646 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.646 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.646 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.647 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.Forms.au92kshad9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0l9h2m1r4h-{0}-au92kshad9-au92kshad9.gz' -2026-01-28 14:17:48.647 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.647 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Forms.au92kshad9.wasm - 200 37691 application/wasm 2.7603ms -2026-01-28 14:17:48.653 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Web.gl9seasc22.wasm - null null -2026-01-28 14:17:48.654 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.654 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.654 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.654 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.654 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.655 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.655 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.655 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.655 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.655 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.655 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.655 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.655 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.655 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.655 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.655 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.655 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.655 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.655 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.655 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.655 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.656 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.657 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.Web.gl9seasc22.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fqoi4if8m2-{0}-gl9seasc22-gl9seasc22.gz' -2026-01-28 14:17:48.657 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.658 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Web.gl9seasc22.wasm - 200 179023 application/wasm 4.2106ms -2026-01-28 14:17:48.662 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.9qaxkpf6y7.wasm - null null -2026-01-28 14:17:48.663 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.663 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.663 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.663 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.663 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.663 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.663 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.663 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.663 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.663 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.663 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.664 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.664 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.664 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.664 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.664 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.664 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.664 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.664 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.664 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.666 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.WebAssembly.9qaxkpf6y7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4vwfdqnp17-{0}-9qaxkpf6y7-9qaxkpf6y7.gz' -2026-01-28 14:17:48.666 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.667 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.9qaxkpf6y7.wasm - 200 155978 application/wasm 4.3491ms -2026-01-28 14:17:48.671 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.q8d1vzef3m.wasm - null null -2026-01-28 14:17:48.672 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.672 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.673 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.673 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.673 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.673 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.673 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.673 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.673 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.673 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.673 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.673 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.674 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.674 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.674 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.677 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.q8d1vzef3m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\19o2at4dip-{0}-q8d1vzef3m-q8d1vzef3m.gz' -2026-01-28 14:17:48.677 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.677 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.q8d1vzef3m.wasm - 200 96064 application/wasm 5.3985ms -2026-01-28 14:17:48.682 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Metadata.begmnasal1.wasm - null null -2026-01-28 14:17:48.683 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.683 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.683 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.683 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.683 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.683 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.684 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.684 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.684 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.684 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.684 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.684 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.684 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.684 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.684 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.684 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.684 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.684 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.684 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.684 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.684 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.684 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.686 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Metadata.begmnasal1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\94aawuaijs-{0}-begmnasal1-begmnasal1.gz' -2026-01-28 14:17:48.686 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.686 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Metadata.begmnasal1.wasm - 200 5942 application/wasm 4.0377ms -2026-01-28 14:17:48.691 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.WebUtilities.6cgd80d0to.wasm - null null -2026-01-28 14:17:48.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.692 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.692 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.692 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.692 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.692 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.692 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.692 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.692 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.692 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.692 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.692 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.692 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.692 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.692 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.692 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.692 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.692 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.692 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.692 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.692 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.692 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.694 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.WebUtilities.6cgd80d0to.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sk2xioyf5m-{0}-6cgd80d0to-6cgd80d0to.gz' -2026-01-28 14:17:48.694 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.694 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.WebUtilities.6cgd80d0to.wasm - 200 97088 application/wasm 3.171ms -2026-01-28 14:17:48.698 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Bcl.AsyncInterfaces.a6wsrpgfw5.wasm - null null -2026-01-28 14:17:48.699 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.699 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.699 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.699 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.699 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.700 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.700 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.702 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.702 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.702 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.702 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.702 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.702 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.702 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.703 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.704 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Bcl.AsyncInterfaces.a6wsrpgfw5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\efezora84v-{0}-a6wsrpgfw5-a6wsrpgfw5.gz' -2026-01-28 14:17:48.704 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.704 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Bcl.AsyncInterfaces.a6wsrpgfw5.wasm - 200 9526 application/wasm 6.5603ms -2026-01-28 14:17:48.710 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.u1l3a5juxx.wasm - null null -2026-01-28 14:17:48.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.711 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.712 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.712 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.712 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.712 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.712 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.712 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.712 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.712 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.712 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.712 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.712 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.712 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.712 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.712 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.712 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.712 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.712 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.712 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.712 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.713 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.714 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.u1l3a5juxx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wloi09r5kq-{0}-u1l3a5juxx-u1l3a5juxx.gz' -2026-01-28 14:17:48.714 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.714 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.u1l3a5juxx.wasm - 200 56123 application/wasm 3.3388ms -2026-01-28 14:17:48.720 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Abstractions.vvlexwbaez.wasm - null null -2026-01-28 14:17:48.721 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.721 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.721 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.721 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.721 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.721 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.721 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.721 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.721 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.721 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.721 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.721 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.721 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.721 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.722 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.722 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.722 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.722 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.722 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.722 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.722 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.722 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.723 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Caching.Abstractions.vvlexwbaez.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b1crvod4be-{0}-vvlexwbaez-vvlexwbaez.gz' -2026-01-28 14:17:48.723 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.723 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Abstractions.vvlexwbaez.wasm - 200 27446 application/wasm 2.7363ms -2026-01-28 14:17:48.727 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Hybrid.u0s8zqcpy7.wasm - null null -2026-01-28 14:17:48.728 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.728 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.728 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.728 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.728 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.729 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.729 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.729 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.729 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.729 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.729 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.729 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.729 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.729 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.729 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.731 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Caching.Hybrid.u0s8zqcpy7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\t7frkttiob-{0}-u0s8zqcpy7-u0s8zqcpy7.gz' -2026-01-28 14:17:48.731 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.731 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Hybrid.u0s8zqcpy7.wasm - 200 85824 application/wasm 3.7492ms -2026-01-28 14:17:48.737 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Memory.6z3ajjz4f1.wasm - null null -2026-01-28 14:17:48.738 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.738 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.738 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.738 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.738 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.738 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.739 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.739 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.739 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.739 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.739 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.739 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.739 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.739 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.739 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.739 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.739 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.739 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.739 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.739 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.739 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.739 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.740 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Caching.Memory.6z3ajjz4f1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6gi3ua4ioz-{0}-6z3ajjz4f1-6z3ajjz4f1.gz' -2026-01-28 14:17:48.740 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.740 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Memory.6z3ajjz4f1.wasm - 200 37691 application/wasm 3.3842ms -2026-01-28 14:17:48.745 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.x8wh4xd62i.wasm - null null -2026-01-28 14:17:48.746 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.746 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.746 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.746 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.746 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.746 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.746 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.746 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.746 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.746 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.746 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.747 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.747 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.747 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.747 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.747 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.747 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.747 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.747 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.747 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.747 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.749 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.x8wh4xd62i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\h1kacpcskm-{0}-x8wh4xd62i-x8wh4xd62i.gz' -2026-01-28 14:17:48.749 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.749 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.x8wh4xd62i.wasm - 200 34619 application/wasm 3.8061ms -2026-01-28 14:17:48.755 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Abstractions.sgloa63pwd.wasm - null null -2026-01-28 14:17:48.755 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.755 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.755 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.755 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.755 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.756 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.756 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.756 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.756 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.756 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.756 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.756 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.756 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.756 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.756 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.756 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.756 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.756 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.756 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.756 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.756 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.756 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.757 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.Abstractions.sgloa63pwd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\zxi0ykhieh-{0}-sgloa63pwd-sgloa63pwd.gz' -2026-01-28 14:17:48.757 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.757 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Abstractions.sgloa63pwd.wasm - 200 18230 application/wasm 2.8758ms -2026-01-28 14:17:48.763 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Binder.3jwzw3qxt4.wasm - null null -2026-01-28 14:17:48.764 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.764 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.765 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.765 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.765 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.765 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.765 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.765 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.765 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.765 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.765 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.765 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.765 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.765 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.766 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.766 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.766 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.766 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.766 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.766 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.766 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.766 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.767 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.Binder.3jwzw3qxt4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ko014cnbr7-{0}-3jwzw3qxt4-3jwzw3qxt4.gz' -2026-01-28 14:17:48.767 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.768 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Binder.3jwzw3qxt4.wasm - 200 33083 application/wasm 4.2047ms -2026-01-28 14:17:48.772 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.CommandLine.z1qo7xx5ru.wasm - null null -2026-01-28 14:17:48.773 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.773 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.773 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.773 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.773 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.774 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.774 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.774 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.774 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.774 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.774 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.774 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.774 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.774 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.774 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.774 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.774 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.774 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.774 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.774 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.774 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.774 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.775 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.CommandLine.z1qo7xx5ru.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0qcnzm5lmb-{0}-z1qo7xx5ru-z1qo7xx5ru.gz' -2026-01-28 14:17:48.775 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.775 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.CommandLine.z1qo7xx5ru.wasm - 200 15158 application/wasm 3.0252ms -2026-01-28 14:17:48.781 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.EnvironmentVariables.3gcxsk3zbu.wasm - null null -2026-01-28 14:17:48.782 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.782 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.782 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.783 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.783 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.783 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.783 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.783 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.783 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.783 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.783 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.783 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.783 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.783 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.784 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.784 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.784 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.784 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.784 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.784 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.784 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.784 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.785 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.EnvironmentVariables.3gcxsk3zbu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\urvjz3sczp-{0}-3gcxsk3zbu-3gcxsk3zbu.gz' -2026-01-28 14:17:48.785 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.785 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.EnvironmentVariables.3gcxsk3zbu.wasm - 200 11574 application/wasm 3.8801ms -2026-01-28 14:17:48.790 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.FileExtensions.phra2kqghi.wasm - null null -2026-01-28 14:17:48.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.791 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.791 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.791 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.791 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.791 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.791 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.792 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.792 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.792 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.792 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.792 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.792 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.792 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.792 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.793 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.FileExtensions.phra2kqghi.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6yhtz7i0uq-{0}-phra2kqghi-phra2kqghi.gz' -2026-01-28 14:17:48.793 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.793 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.FileExtensions.phra2kqghi.wasm - 200 18230 application/wasm 3.1074ms -2026-01-28 14:17:48.800 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Json.9udmvturlf.wasm - null null -2026-01-28 14:17:48.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.801 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.801 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.801 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.801 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.801 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.801 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.801 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.802 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.802 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.802 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.802 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.802 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.802 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.802 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.802 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.803 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.Json.9udmvturlf.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jn8nx9ltxb-{0}-9udmvturlf-9udmvturlf.gz' -2026-01-28 14:17:48.803 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.803 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Json.9udmvturlf.wasm - 200 17718 application/wasm 3.3582ms -2026-01-28 14:17:48.808 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.UserSecrets.86yue58ssu.wasm - null null -2026-01-28 14:17:48.809 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.809 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.809 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.809 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.809 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.810 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.810 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.810 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.810 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.810 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.810 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.810 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.810 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.810 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.811 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.811 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.UserSecrets.86yue58ssu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wlq0vssna7-{0}-86yue58ssu-86yue58ssu.gz' -2026-01-28 14:17:48.811 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.812 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.UserSecrets.86yue58ssu.wasm - 200 16182 application/wasm 3.4656ms -2026-01-28 14:17:48.818 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.92ulj88j6e.wasm - null null -2026-01-28 14:17:48.819 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.819 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.819 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.819 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.819 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.820 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.820 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.820 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.820 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.820 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.820 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.820 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.820 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.820 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.821 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.822 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.DependencyInjection.92ulj88j6e.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ap6jjl5cdc-{0}-92ulj88j6e-92ulj88j6e.gz' -2026-01-28 14:17:48.822 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.822 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.92ulj88j6e.wasm - 200 85312 application/wasm 3.8015ms -2026-01-28 14:17:48.828 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.qzg75988t9.wasm - null null -2026-01-28 14:17:48.829 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.829 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.829 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.829 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.829 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.829 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.829 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.830 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.830 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.830 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.830 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.830 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.830 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.830 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.830 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.831 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.832 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.DependencyInjection.Abstractions.qzg75988t9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2yinc5vl42-{0}-qzg75988t9-qzg75988t9.gz' -2026-01-28 14:17:48.832 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.832 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.qzg75988t9.wasm - 200 55611 application/wasm 4.8723ms -2026-01-28 14:17:48.839 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.tgzcelqpkb.wasm - null null -2026-01-28 14:17:48.840 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.840 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.840 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.840 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.840 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.841 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.841 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.841 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.841 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.841 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.841 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.841 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.841 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.841 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.841 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.841 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.841 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.841 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.841 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.841 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.841 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.841 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.842 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Diagnostics.tgzcelqpkb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\q77258df46-{0}-tgzcelqpkb-tgzcelqpkb.gz' -2026-01-28 14:17:48.842 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.842 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.tgzcelqpkb.wasm - 200 25910 application/wasm 3.2502ms -2026-01-28 14:17:48.848 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.Abstractions.hq61ozpvxa.wasm - null null -2026-01-28 14:17:48.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.850 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.850 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.850 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.850 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.850 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.850 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.850 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.850 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.850 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.850 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.850 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.850 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.850 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.850 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.850 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.850 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.851 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.852 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Diagnostics.Abstractions.hq61ozpvxa.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\hlwf1zkx1t-{0}-hq61ozpvxa-hq61ozpvxa.gz' -2026-01-28 14:17:48.852 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.852 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.Abstractions.hq61ozpvxa.wasm - 200 20790 application/wasm 4.1827ms -2026-01-28 14:17:48.857 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Abstractions.wbhloeatw3.wasm - null null -2026-01-28 14:17:48.858 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.858 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.858 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.858 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.858 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.858 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.858 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.858 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.858 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.858 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.858 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.858 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.858 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.858 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.859 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.859 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.859 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.859 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.859 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.859 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.859 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.859 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.860 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Abstractions.wbhloeatw3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\hwi4k0i86u-{0}-wbhloeatw3-wbhloeatw3.gz' -2026-01-28 14:17:48.860 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.860 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Abstractions.wbhloeatw3.wasm - 200 13110 application/wasm 2.9464ms -2026-01-28 14:17:48.864 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Composite.z8bwpsdnc0.wasm - null null -2026-01-28 14:17:48.865 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.866 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.866 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.867 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.867 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.867 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.867 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.867 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.867 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.867 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.867 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.868 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Composite.z8bwpsdnc0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9or5ity2wj-{0}-z8bwpsdnc0-z8bwpsdnc0.gz' -2026-01-28 14:17:48.868 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.868 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Composite.z8bwpsdnc0.wasm - 200 8502 application/wasm 3.8499ms -2026-01-28 14:17:48.873 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Embedded.ptqvg1m34t.wasm - null null -2026-01-28 14:17:48.874 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.875 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.875 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.875 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.875 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.875 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.875 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.875 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.875 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.875 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.875 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.875 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.875 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.875 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.876 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.877 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Embedded.ptqvg1m34t.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gud3t43je0-{0}-ptqvg1m34t-ptqvg1m34t.gz' -2026-01-28 14:17:48.877 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.877 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Embedded.ptqvg1m34t.wasm - 200 23350 application/wasm 3.1788ms -2026-01-28 14:17:48.882 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Physical.y5k56zvg10.wasm - null null -2026-01-28 14:17:48.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.883 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.883 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.883 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.883 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.883 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.884 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.884 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.884 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.884 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.884 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.884 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.884 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.884 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.884 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.884 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.884 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.884 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.884 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.884 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.884 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.884 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.885 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Physical.y5k56zvg10.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\02df65jx0j-{0}-y5k56zvg10-y5k56zvg10.gz' -2026-01-28 14:17:48.885 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.886 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Physical.y5k56zvg10.wasm - 200 35131 application/wasm 4.0274ms -2026-01-28 14:17:48.890 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileSystemGlobbing.4cqycihgg0.wasm - null null -2026-01-28 14:17:48.891 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.891 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.891 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.891 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.891 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.892 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.892 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.892 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.892 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.892 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.892 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.892 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.892 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.892 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.892 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.893 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileSystemGlobbing.4cqycihgg0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4328gy858z-{0}-4cqycihgg0-4cqycihgg0.gz' -2026-01-28 14:17:48.893 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.893 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileSystemGlobbing.4cqycihgg0.wasm - 200 37691 application/wasm 3.1234ms -2026-01-28 14:17:48.898 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Hosting.Abstractions.5v78u2d057.wasm - null null -2026-01-28 14:17:48.899 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.899 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.899 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.899 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.899 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.900 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.900 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.900 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.900 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.900 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.900 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.900 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.900 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.900 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.901 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.901 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.901 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.901 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.901 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.901 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.901 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.901 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.903 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Hosting.Abstractions.5v78u2d057.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0bjpxbow7h-{0}-5v78u2d057-5v78u2d057.gz' -2026-01-28 14:17:48.903 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.903 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Hosting.Abstractions.5v78u2d057.wasm - 200 43835 application/wasm 5.3697ms -2026-01-28 14:17:48.907 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Http.apre2arxjd.wasm - null null -2026-01-28 14:17:48.908 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.908 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.908 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.908 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.908 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.909 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.909 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.909 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.909 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.909 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.909 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.909 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.909 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.909 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.909 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.911 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Http.apre2arxjd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ocorhjn9ks-{0}-apre2arxjd-apre2arxjd.gz' -2026-01-28 14:17:48.911 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.911 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Http.apre2arxjd.wasm - 200 82752 application/wasm 3.6296ms -2026-01-28 14:17:48.916 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.mml9tf1r1w.wasm - null null -2026-01-28 14:17:48.918 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.918 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.918 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.918 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.918 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.918 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.918 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.918 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.918 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.918 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.918 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.918 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.918 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.918 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.919 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.919 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.919 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.919 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.919 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.919 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.919 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.919 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.920 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Localization.mml9tf1r1w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uqdbs11skp-{0}-mml9tf1r1w-mml9tf1r1w.gz' -2026-01-28 14:17:48.920 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.920 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.mml9tf1r1w.wasm - 200 21302 application/wasm 3.4439ms -2026-01-28 14:17:48.924 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.Abstractions.80p7fyumuw.wasm - null null -2026-01-28 14:17:48.925 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.925 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.925 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.925 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.925 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.925 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.925 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.925 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.925 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.925 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.925 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.925 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.925 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.925 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.926 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.926 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.926 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.926 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.926 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.926 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.926 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.926 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.927 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Localization.Abstractions.80p7fyumuw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j8jaks8ba9-{0}-80p7fyumuw-80p7fyumuw.gz' -2026-01-28 14:17:48.927 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.927 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.Abstractions.80p7fyumuw.wasm - 200 9014 application/wasm 2.6619ms -2026-01-28 14:17:48.931 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.05o184w673.wasm - null null -2026-01-28 14:17:48.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.933 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.933 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.933 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.933 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.933 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.934 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.934 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.934 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.934 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.934 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.934 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.934 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.934 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.934 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.935 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Logging.05o184w673.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1cbwctdp50-{0}-05o184w673-05o184w673.gz' -2026-01-28 14:17:48.935 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.935 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.05o184w673.wasm - 200 41275 application/wasm 4.1554ms -2026-01-28 14:17:48.940 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.Abstractions.hwa38jh90v.wasm - null null -2026-01-28 14:17:48.940 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.941 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.941 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.941 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.941 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.941 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.941 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.941 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.941 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.941 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.941 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.941 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.941 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.941 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.942 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.942 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.942 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.942 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.942 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.942 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.942 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.942 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.943 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Logging.Abstractions.hwa38jh90v.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\zatd8kwe6z-{0}-hwa38jh90v-hwa38jh90v.gz' -2026-01-28 14:17:48.943 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.943 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.Abstractions.hwa38jh90v.wasm - 200 56635 application/wasm 3.3268ms -2026-01-28 14:17:48.948 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.zsk78mkyl2.wasm - null null -2026-01-28 14:17:48.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.949 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.949 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.949 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.949 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.949 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.949 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.950 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.950 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.950 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.950 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.950 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.950 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.950 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.951 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.952 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Options.zsk78mkyl2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nx5gv127wz-{0}-zsk78mkyl2-zsk78mkyl2.gz' -2026-01-28 14:17:48.952 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.952 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.zsk78mkyl2.wasm - 200 55099 application/wasm 4.2014ms -2026-01-28 14:17:48.956 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.ConfigurationExtensions.qltknulxmy.wasm - null null -2026-01-28 14:17:48.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.957 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.957 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.957 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.957 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.957 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.957 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.958 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.958 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.958 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.958 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.958 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.958 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.958 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.958 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.959 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Options.ConfigurationExtensions.qltknulxmy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\eycsz92dw7-{0}-qltknulxmy-qltknulxmy.gz' -2026-01-28 14:17:48.959 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.959 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.ConfigurationExtensions.qltknulxmy.wasm - 200 11574 application/wasm 3.0275ms -2026-01-28 14:17:48.964 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Primitives.51b5spqlwz.wasm - null null -2026-01-28 14:17:48.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.965 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.966 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.966 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.966 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.966 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.966 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.966 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.966 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.966 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.967 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.968 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Primitives.51b5spqlwz.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dtxltxy254-{0}-51b5spqlwz-51b5spqlwz.gz' -2026-01-28 14:17:48.968 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.968 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Primitives.51b5spqlwz.wasm - 200 34619 application/wasm 4.3214ms -2026-01-28 14:17:48.973 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Validation.vibclmvzbq.wasm - null null -2026-01-28 14:17:48.974 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.974 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.974 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.974 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.974 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.975 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.975 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.975 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.975 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.975 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.975 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.975 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.975 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.975 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.975 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.975 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.975 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.975 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.975 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.975 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.975 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.975 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.976 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Validation.vibclmvzbq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wxjaiwsnh4-{0}-vibclmvzbq-vibclmvzbq.gz' -2026-01-28 14:17:48.976 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.976 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Validation.vibclmvzbq.wasm - 200 33083 application/wasm 3.0826ms -2026-01-28 14:17:48.982 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Abstractions.fm59ec96sb.wasm - null null -2026-01-28 14:17:48.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.983 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.984 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.984 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.984 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.984 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.984 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.984 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.984 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.984 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.984 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.984 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.984 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.984 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.984 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.985 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.Abstractions.fm59ec96sb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pw25ps676d-{0}-fm59ec96sb-fm59ec96sb.gz' -2026-01-28 14:17:48.986 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.986 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Abstractions.fm59ec96sb.wasm - 200 9014 application/wasm 3.8809ms -2026-01-28 14:17:48.991 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.JsonWebTokens.d706uu8nnf.wasm - null null -2026-01-28 14:17:48.992 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.992 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:48.992 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:48.992 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:48.992 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.993 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:48.993 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:48.993 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:48.993 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:48.993 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:48.993 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:48.993 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.993 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:48.993 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:48.993 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:48.993 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:48.993 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:48.993 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:48.993 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:48.993 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:48.993 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:48.993 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.995 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.JsonWebTokens.d706uu8nnf.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0ly9bxx2uc-{0}-d706uu8nnf-d706uu8nnf.gz' -2026-01-28 14:17:48.995 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:48.995 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.JsonWebTokens.d706uu8nnf.wasm - 200 161610 application/wasm 4.4487ms -2026-01-28 14:17:49.002 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Logging.lzotatrep2.wasm - null null -2026-01-28 14:17:49.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.002 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.003 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.003 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.003 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.003 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.003 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.003 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.003 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.003 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.003 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.003 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.003 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.003 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.003 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.003 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.003 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.003 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.003 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.003 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.003 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.003 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.004 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.Logging.lzotatrep2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\az540fuh9f-{0}-lzotatrep2-lzotatrep2.gz' -2026-01-28 14:17:49.004 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.005 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Logging.lzotatrep2.wasm - 200 26422 application/wasm 2.9007ms -2026-01-28 14:17:49.009 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Tokens.zeqz59uvkx.wasm - null null -2026-01-28 14:17:49.010 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.010 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.010 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.010 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.010 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.010 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.011 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.011 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.011 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.011 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.011 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.011 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.011 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.011 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.011 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.014 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.Tokens.zeqz59uvkx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pe5jdgvqrx-{0}-zeqz59uvkx-zeqz59uvkx.gz' -2026-01-28 14:17:49.014 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.014 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Tokens.zeqz59uvkx.wasm - 200 374125 application/wasm 4.9071ms -2026-01-28 14:17:49.020 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.kksrzpvoig.wasm - null null -2026-01-28 14:17:49.021 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.021 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.021 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.021 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.021 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.021 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.021 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.021 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.021 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.021 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.021 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.022 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.022 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.022 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.022 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.022 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.022 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.022 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.022 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.022 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.022 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.022 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.023 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.JSInterop.kksrzpvoig.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fulott20a4-{0}-kksrzpvoig-kksrzpvoig.gz' -2026-01-28 14:17:49.023 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.023 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.kksrzpvoig.wasm - 200 64827 application/wasm 2.851ms -2026-01-28 14:17:49.027 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.WebAssembly.9udcqny0aq.wasm - null null -2026-01-28 14:17:49.028 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.028 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.028 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.028 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.028 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.029 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.029 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.029 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.029 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.029 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.029 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.029 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.029 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.029 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.029 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.029 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.029 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.029 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.029 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.029 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.029 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.029 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.030 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.JSInterop.WebAssembly.9udcqny0aq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9m4wklcqem-{0}-9udcqny0aq-9udcqny0aq.gz' -2026-01-28 14:17:49.030 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.030 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.WebAssembly.9udcqny0aq.wasm - 200 14646 application/wasm 3.1218ms -2026-01-28 14:17:49.036 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Net.Http.Headers.dqwvlhacs5.wasm - null null -2026-01-28 14:17:49.037 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.037 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.037 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.037 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.037 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.037 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.037 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.037 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.037 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.037 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.037 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.037 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.037 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.037 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.037 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.037 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.037 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.037 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.037 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.037 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.037 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.038 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.039 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Net.Http.Headers.dqwvlhacs5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\awoyestlxb-{0}-dqwvlhacs5-dqwvlhacs5.gz' -2026-01-28 14:17:49.039 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.039 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Net.Http.Headers.dqwvlhacs5.wasm - 200 75072 application/wasm 3.0452ms -2026-01-28 14:17:49.044 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MudBlazor.0eq8xpu5ec.wasm - null null -2026-01-28 14:17:49.045 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.045 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.045 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.045 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.045 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.045 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.046 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.046 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.046 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.046 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.046 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.046 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.046 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.046 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.046 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.095 +03:00 [INF] Sending file. Request path: '_framework/MudBlazor.0eq8xpu5ec.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c8dbqtqx23-{0}-0eq8xpu5ec-0eq8xpu5ec.gz' -2026-01-28 14:17:49.096 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.096 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MudBlazor.0eq8xpu5ec.wasm - 200 9246396 application/wasm 51.5443ms -2026-01-28 14:17:49.120 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Context.y5n2fi0oo0.wasm - null null -2026-01-28 14:17:49.121 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.121 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.121 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.121 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.121 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.121 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.121 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.121 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.121 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.121 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.121 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.121 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.121 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.121 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.122 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.122 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.122 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.122 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.122 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.122 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.122 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.122 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.123 +03:00 [INF] Sending file. Request path: '_framework/Nito.AsyncEx.Context.y5n2fi0oo0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6cfa8ozy3y-{0}-y5n2fi0oo0-y5n2fi0oo0.gz' -2026-01-28 14:17:49.123 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.123 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Context.y5n2fi0oo0.wasm - 200 13622 application/wasm 3.0607ms -2026-01-28 14:17:49.128 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Tasks.pmw3wnkbvb.wasm - null null -2026-01-28 14:17:49.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.129 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.129 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.130 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.130 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.130 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.130 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.130 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.130 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.130 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.130 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.131 +03:00 [INF] Sending file. Request path: '_framework/Nito.AsyncEx.Tasks.pmw3wnkbvb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pw3yczwgxh-{0}-pmw3wnkbvb-pmw3wnkbvb.gz' -2026-01-28 14:17:49.131 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.131 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Tasks.pmw3wnkbvb.wasm - 200 35643 application/wasm 3.3202ms -2026-01-28 14:17:49.137 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Nito.Disposables.86nxvj1yiv.wasm - null null -2026-01-28 14:17:49.138 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.138 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.138 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.138 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.138 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.138 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.138 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.138 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.138 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.138 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.138 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.138 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.138 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.138 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.139 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.139 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.139 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.139 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.139 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.139 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.139 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.139 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.140 +03:00 [INF] Sending file. Request path: '_framework/Nito.Disposables.86nxvj1yiv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4m6819m7ll-{0}-86nxvj1yiv-86nxvj1yiv.gz' -2026-01-28 14:17:49.140 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.140 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Nito.Disposables.86nxvj1yiv.wasm - 200 22326 application/wasm 2.7305ms -2026-01-28 14:17:49.145 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/NUglify.p1yxori32v.wasm - null null -2026-01-28 14:17:49.145 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.146 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.146 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.146 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.146 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.146 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.146 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.146 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.146 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.146 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.146 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.146 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.146 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.146 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.146 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.146 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.146 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.146 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.146 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.146 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.146 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.147 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.151 +03:00 [INF] Sending file. Request path: '_framework/NUglify.p1yxori32v.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2fi9048uqb-{0}-p1yxori32v-p1yxori32v.gz' -2026-01-28 14:17:49.151 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.151 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/NUglify.p1yxori32v.wasm - 200 637333 application/wasm 5.969ms -2026-01-28 14:17:49.157 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/OpenIddict.Abstractions.xc5u4bcwuv.wasm - null null -2026-01-28 14:17:49.158 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.158 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.158 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.158 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.158 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.159 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.159 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.159 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.159 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.159 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.159 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.159 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.159 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.159 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.159 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.159 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.159 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.159 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.159 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.159 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.159 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.159 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.162 +03:00 [INF] Sending file. Request path: '_framework/OpenIddict.Abstractions.xc5u4bcwuv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\46s7kaf9kj-{0}-xc5u4bcwuv-xc5u4bcwuv.gz' -2026-01-28 14:17:49.162 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.163 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/OpenIddict.Abstractions.xc5u4bcwuv.wasm - 200 380269 application/wasm 5.2618ms -2026-01-28 14:17:49.170 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Riok.Mapperly.Abstractions.bgo5wowxjs.wasm - null null -2026-01-28 14:17:49.171 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.171 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.171 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.171 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.171 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.172 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.172 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.172 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.172 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.172 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.172 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.172 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.172 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.172 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.172 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.173 +03:00 [INF] Sending file. Request path: '_framework/Riok.Mapperly.Abstractions.bgo5wowxjs.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3d5qji182j-{0}-bgo5wowxjs-bgo5wowxjs.gz' -2026-01-28 14:17:49.173 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.173 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Riok.Mapperly.Abstractions.bgo5wowxjs.wasm - 200 33083 application/wasm 2.8591ms -2026-01-28 14:17:49.179 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.CodeDom.fbxkfrockh.wasm - null null -2026-01-28 14:17:49.180 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.180 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.180 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.180 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.180 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.180 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.180 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.180 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.180 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.180 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.180 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.180 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.180 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.180 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.180 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.180 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.180 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.180 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.181 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.181 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.181 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.181 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.183 +03:00 [INF] Sending file. Request path: '_framework/System.CodeDom.fbxkfrockh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j53ve7gv1w-{0}-fbxkfrockh-fbxkfrockh.gz' -2026-01-28 14:17:49.183 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.183 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.CodeDom.fbxkfrockh.wasm - 200 174415 application/wasm 4.4867ms -2026-01-28 14:17:49.188 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.EventLog.x6zrz89c6o.wasm - null null -2026-01-28 14:17:49.189 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.189 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.190 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.190 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.191 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.191 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.191 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.191 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.191 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.191 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.191 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.191 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.193 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.EventLog.x6zrz89c6o.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j2puov35am-{0}-x6zrz89c6o-x6zrz89c6o.gz' -2026-01-28 14:17:49.193 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.193 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.EventLog.x6zrz89c6o.wasm - 200 41787 application/wasm 4.4189ms -2026-01-28 14:17:49.197 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IdentityModel.Tokens.Jwt.5tt1rwyygx.wasm - null null -2026-01-28 14:17:49.199 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.199 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.199 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.199 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.199 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.199 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.199 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.199 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.199 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.199 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.200 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.200 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.200 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.200 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.200 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.200 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.200 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.200 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.200 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.200 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.200 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.201 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.202 +03:00 [INF] Sending file. Request path: '_framework/System.IdentityModel.Tokens.Jwt.5tt1rwyygx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tr0pha0myb-{0}-5tt1rwyygx-5tt1rwyygx.gz' -2026-01-28 14:17:49.202 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.202 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IdentityModel.Tokens.Jwt.5tt1rwyygx.wasm - 200 81216 application/wasm 4.5335ms -2026-01-28 14:17:49.206 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.Dynamic.Core.2czhr4esfi.wasm - null null -2026-01-28 14:17:49.207 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.207 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.207 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.207 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.207 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.207 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.207 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.207 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.207 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.207 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.207 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.207 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.207 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.207 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.207 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.207 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.207 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.207 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.207 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.207 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.207 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.208 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.209 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.Dynamic.Core.2czhr4esfi.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\i8w7eyc5en-{0}-2czhr4esfi-2czhr4esfi.gz' -2026-01-28 14:17:49.210 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.210 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.Dynamic.Core.2czhr4esfi.wasm - 200 240985 application/wasm 3.7778ms -2026-01-28 14:17:49.214 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Management.ot1u48wl1s.wasm - null null -2026-01-28 14:17:49.215 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.215 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.215 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.215 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.215 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.215 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.216 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.216 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.216 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.216 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.216 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.216 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.216 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.216 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.216 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.216 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.216 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.216 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.216 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.216 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.216 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.217 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.218 +03:00 [INF] Sending file. Request path: '_framework/System.Management.ot1u48wl1s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\evjyfukwb1-{0}-ot1u48wl1s-ot1u48wl1s.gz' -2026-01-28 14:17:49.218 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.218 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Management.ot1u48wl1s.wasm - 200 63803 application/wasm 4.1161ms -2026-01-28 14:17:49.226 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/TimeZoneConverter.halbc9brmz.wasm - null null -2026-01-28 14:17:49.226 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.226 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.226 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.226 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.226 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.227 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.227 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.227 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.227 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.227 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.227 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.227 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.227 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.227 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.227 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.228 +03:00 [INF] Sending file. Request path: '_framework/TimeZoneConverter.halbc9brmz.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xqev0b9yez-{0}-halbc9brmz-halbc9brmz.gz' -2026-01-28 14:17:49.228 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.228 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/TimeZoneConverter.halbc9brmz.wasm - 200 63803 application/wasm 2.8546ms -2026-01-28 14:17:49.234 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.CSharp.aars8n89vy.wasm - null null -2026-01-28 14:17:49.235 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.235 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.235 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.235 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.235 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.236 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.236 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.236 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.236 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.236 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.236 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.236 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.236 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.236 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.236 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.239 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.CSharp.aars8n89vy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\esvbxkosdi-{0}-aars8n89vy-aars8n89vy.gz' -2026-01-28 14:17:49.239 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.239 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.CSharp.aars8n89vy.wasm - 200 301411 application/wasm 4.2525ms -2026-01-28 14:17:49.244 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.Core.upxd87cdr1.wasm - null null -2026-01-28 14:17:49.245 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.245 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.245 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.245 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.245 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.245 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.245 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.246 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.246 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.246 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.246 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.246 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.246 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.246 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.246 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.246 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.246 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.246 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.246 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.246 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.246 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.246 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.249 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.VisualBasic.Core.upxd87cdr1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jc5kei53j8-{0}-upxd87cdr1-upxd87cdr1.gz' -2026-01-28 14:17:49.249 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.249 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.Core.upxd87cdr1.wasm - 200 418674 application/wasm 5.1834ms -2026-01-28 14:17:49.253 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.lo3va0ewdb.wasm - null null -2026-01-28 14:17:49.254 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.254 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.254 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.254 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.254 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.255 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.255 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.255 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.255 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.255 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.255 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.255 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.255 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.255 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.255 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.256 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.VisualBasic.lo3va0ewdb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\57p19o16fi-{0}-lo3va0ewdb-lo3va0ewdb.gz' -2026-01-28 14:17:49.256 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.256 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.lo3va0ewdb.wasm - 200 6966 application/wasm 2.7486ms -2026-01-28 14:17:49.260 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Primitives.xf0i7ifc2c.wasm - null null -2026-01-28 14:17:49.261 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.261 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.261 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.261 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.261 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.262 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.262 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.262 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.262 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.262 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.262 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.262 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.262 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.262 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.262 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.262 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.262 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.262 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.262 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.262 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.262 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.263 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.263 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Win32.Primitives.xf0i7ifc2c.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\p8pizku5xb-{0}-xf0i7ifc2c-xf0i7ifc2c.gz' -2026-01-28 14:17:49.263 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.264 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Primitives.xf0i7ifc2c.wasm - 200 5430 application/wasm 3.2831ms -2026-01-28 14:17:49.268 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Registry.egcs66c38p.wasm - null null -2026-01-28 14:17:49.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.269 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.269 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.269 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.269 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.269 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.269 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.270 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.270 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.270 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.270 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.270 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.270 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.270 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.270 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.271 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Win32.Registry.egcs66c38p.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ouubhvk51-{0}-egcs66c38p-egcs66c38p.gz' -2026-01-28 14:17:49.271 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.271 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Registry.egcs66c38p.wasm - 200 22838 application/wasm 2.8782ms -2026-01-28 14:17:49.275 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.AppContext.229uy454et.wasm - null null -2026-01-28 14:17:49.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.276 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.276 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.276 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.276 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.276 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.276 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.276 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.276 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.277 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.277 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.277 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.277 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.277 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.277 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.277 +03:00 [INF] Sending file. Request path: '_framework/System.AppContext.229uy454et.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vtyu92lgvy-{0}-229uy454et-229uy454et.gz' -2026-01-28 14:17:49.277 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.278 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.AppContext.229uy454et.wasm - 200 4918 application/wasm 2.6338ms -2026-01-28 14:17:49.282 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Buffers.ffy4vk49sl.wasm - null null -2026-01-28 14:17:49.283 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.283 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.283 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.283 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.283 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.283 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.283 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.283 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.283 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.283 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.284 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.284 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.284 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.284 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.284 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.284 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.284 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.284 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.284 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.284 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.284 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.284 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.285 +03:00 [INF] Sending file. Request path: '_framework/System.Buffers.ffy4vk49sl.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\abrvn071f9-{0}-ffy4vk49sl-ffy4vk49sl.gz' -2026-01-28 14:17:49.285 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.285 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Buffers.ffy4vk49sl.wasm - 200 4918 application/wasm 2.6803ms -2026-01-28 14:17:49.290 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.Concurrent.vwjty21qm0.wasm - null null -2026-01-28 14:17:49.290 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.290 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.290 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.290 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.290 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.291 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.291 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.291 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.291 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.291 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.291 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.291 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.291 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.291 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.291 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.291 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.291 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.291 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.291 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.291 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.291 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.291 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.293 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.Concurrent.vwjty21qm0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5kmfc755lz-{0}-vwjty21qm0-vwjty21qm0.gz' -2026-01-28 14:17:49.293 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.293 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.Concurrent.vwjty21qm0.wasm - 200 78656 application/wasm 3.5257ms -2026-01-28 14:17:49.298 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.Immutable.62ow9webvq.wasm - null null -2026-01-28 14:17:49.299 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.299 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.299 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.299 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.299 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.299 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.299 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.299 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.299 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.299 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.299 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.299 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.299 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.299 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.300 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.300 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.300 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.300 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.300 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.300 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.300 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.300 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.302 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.Immutable.62ow9webvq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\y8eoflnwlp-{0}-62ow9webvq-62ow9webvq.gz' -2026-01-28 14:17:49.302 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.302 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.Immutable.62ow9webvq.wasm - 200 240985 application/wasm 4.0161ms -2026-01-28 14:17:49.307 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.NonGeneric.8znze2bng9.wasm - null null -2026-01-28 14:17:49.308 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.308 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.308 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.308 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.308 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.308 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.308 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.308 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.308 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.308 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.308 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.309 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.309 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.309 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.309 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.309 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.309 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.309 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.309 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.309 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.309 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.309 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.310 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.NonGeneric.8znze2bng9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\iq26svu8f5-{0}-8znze2bng9-8znze2bng9.gz' -2026-01-28 14:17:49.310 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.311 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.NonGeneric.8znze2bng9.wasm - 200 37691 application/wasm 3.5998ms -2026-01-28 14:17:49.317 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.Specialized.xek5hgzu5v.wasm - null null -2026-01-28 14:17:49.318 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.318 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.318 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.318 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.318 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.318 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.318 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.318 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.318 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.318 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.318 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.319 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.319 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.319 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.319 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.319 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.319 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.319 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.319 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.319 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.319 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.319 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.320 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.Specialized.xek5hgzu5v.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4cpzjuj3r0-{0}-xek5hgzu5v-xek5hgzu5v.gz' -2026-01-28 14:17:49.320 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.320 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.Specialized.xek5hgzu5v.wasm - 200 37691 application/wasm 3.5958ms -2026-01-28 14:17:49.325 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.0nghqyig8i.wasm - null null -2026-01-28 14:17:49.326 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.326 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.326 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.326 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.326 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.326 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.326 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.326 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.326 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.326 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.326 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.326 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.326 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.326 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.327 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.327 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.327 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.327 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.327 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.327 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.327 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.327 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.328 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.0nghqyig8i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rssb0afnfp-{0}-0nghqyig8i-0nghqyig8i.gz' -2026-01-28 14:17:49.328 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.328 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.0nghqyig8i.wasm - 200 102725 application/wasm 3.2195ms -2026-01-28 14:17:49.333 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Annotations.x5puxnf36m.wasm - null null -2026-01-28 14:17:49.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.334 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.334 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.334 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.334 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.334 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.334 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.335 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.335 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.335 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.335 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.335 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.335 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.335 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.335 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.336 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.Annotations.x5puxnf36m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sxzb8xtw7k-{0}-x5puxnf36m-x5puxnf36m.gz' -2026-01-28 14:17:49.336 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.336 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Annotations.x5puxnf36m.wasm - 200 92480 application/wasm 3.2783ms -2026-01-28 14:17:49.341 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.DataAnnotations.w951woxztj.wasm - null null -2026-01-28 14:17:49.342 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.342 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.342 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.342 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.343 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.343 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.343 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.343 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.343 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.343 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.343 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.343 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.343 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.343 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.343 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.343 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.343 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.343 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.343 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.343 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.343 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.343 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.344 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.DataAnnotations.w951woxztj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\koqxcel3zt-{0}-w951woxztj-w951woxztj.gz' -2026-01-28 14:17:49.344 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.344 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.DataAnnotations.w951woxztj.wasm - 200 6454 application/wasm 2.9583ms -2026-01-28 14:17:49.349 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.EventBasedAsync.xxfp6nuzvv.wasm - null null -2026-01-28 14:17:49.350 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.350 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.350 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.350 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.350 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.350 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.351 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.351 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.351 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.351 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.351 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.351 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.351 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.351 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.351 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.351 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.351 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.351 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.351 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.351 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.351 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.351 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.352 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.EventBasedAsync.xxfp6nuzvv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vq3ormnt3h-{0}-xxfp6nuzvv-xxfp6nuzvv.gz' -2026-01-28 14:17:49.352 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.352 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.EventBasedAsync.xxfp6nuzvv.wasm - 200 16182 application/wasm 3.3832ms -2026-01-28 14:17:49.357 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Primitives.lfp6xvb2nc.wasm - null null -2026-01-28 14:17:49.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.358 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.358 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.358 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.358 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.358 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.358 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.359 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.359 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.359 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.359 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.359 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.359 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.359 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.359 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.360 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.Primitives.lfp6xvb2nc.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\f7c6808jvl-{0}-lfp6xvb2nc-lfp6xvb2nc.gz' -2026-01-28 14:17:49.360 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.360 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Primitives.lfp6xvb2nc.wasm - 200 32054 application/wasm 2.6345ms -2026-01-28 14:17:49.364 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.TypeConverter.b6pminnty5.wasm - null null -2026-01-28 14:17:49.365 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.365 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.365 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.365 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.365 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.366 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.366 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.366 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.366 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.366 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.366 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.366 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.366 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.366 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.366 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.366 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.366 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.366 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.366 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.366 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.366 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.366 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.369 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.TypeConverter.b6pminnty5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lj5t7hnftt-{0}-b6pminnty5-b6pminnty5.gz' -2026-01-28 14:17:49.369 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.369 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.TypeConverter.b6pminnty5.wasm - 200 306531 application/wasm 4.9118ms -2026-01-28 14:17:49.373 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.1kxs5658en.wasm - null null -2026-01-28 14:17:49.374 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.374 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.374 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.374 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.374 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.375 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.375 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.375 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.375 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.375 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.375 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.375 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.375 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.375 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.375 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.375 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.375 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.375 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.375 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.375 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.375 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.375 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.376 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.1kxs5658en.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3bfqm2cg1o-{0}-1kxs5658en-1kxs5658en.gz' -2026-01-28 14:17:49.376 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.376 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.1kxs5658en.wasm - 200 5942 application/wasm 2.7502ms -2026-01-28 14:17:49.380 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Configuration.dfuzh9rwie.wasm - null null -2026-01-28 14:17:49.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.381 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.381 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.381 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.381 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.381 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.382 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.382 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.382 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.382 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.382 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.382 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.382 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.382 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.382 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.382 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.382 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.383 +03:00 [INF] Sending file. Request path: '_framework/System.Configuration.dfuzh9rwie.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xe6xuwrov9-{0}-dfuzh9rwie-dfuzh9rwie.gz' -2026-01-28 14:17:49.383 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.383 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Configuration.dfuzh9rwie.wasm - 200 9014 application/wasm 3.0722ms -2026-01-28 14:17:49.388 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Console.5bpbf67g8o.wasm - null null -2026-01-28 14:17:49.388 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.389 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.389 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.389 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.389 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.389 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.389 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.389 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.389 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.389 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.389 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.389 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.389 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.389 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.390 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.390 +03:00 [INF] Sending file. Request path: '_framework/System.Console.5bpbf67g8o.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6mvz9phqs1-{0}-5bpbf67g8o-5bpbf67g8o.gz' -2026-01-28 14:17:49.390 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.391 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Console.5bpbf67g8o.wasm - 200 43835 application/wasm 2.8191ms -2026-01-28 14:17:49.395 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Core.zxsh7ohdyg.wasm - null null -2026-01-28 14:17:49.395 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.395 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.395 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.396 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.396 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.396 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.396 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.396 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.396 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.396 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.396 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.396 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.396 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.396 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.397 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.397 +03:00 [INF] Sending file. Request path: '_framework/System.Core.zxsh7ohdyg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\cubawh6yyf-{0}-zxsh7ohdyg-zxsh7ohdyg.gz' -2026-01-28 14:17:49.397 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.397 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Core.zxsh7ohdyg.wasm - 200 13110 application/wasm 2.8317ms -2026-01-28 14:17:49.402 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Data.Common.f0gomia98j.wasm - null null -2026-01-28 14:17:49.402 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.402 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.403 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.403 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.403 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.403 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.403 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.403 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.403 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.403 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.403 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.403 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.408 +03:00 [INF] Sending file. Request path: '_framework/System.Data.Common.f0gomia98j.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1c47smzjbl-{0}-f0gomia98j-f0gomia98j.gz' -2026-01-28 14:17:49.408 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.409 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Data.Common.f0gomia98j.wasm - 200 1008076 application/wasm 6.8937ms -2026-01-28 14:17:49.415 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Data.DataSetExtensions.3k3coynn1w.wasm - null null -2026-01-28 14:17:49.415 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.415 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.415 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.415 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.415 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.416 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.416 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.416 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.416 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.416 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.416 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.416 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.416 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.416 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.416 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.416 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.416 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.416 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.416 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.416 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.416 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.416 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.417 +03:00 [INF] Sending file. Request path: '_framework/System.Data.DataSetExtensions.3k3coynn1w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ud5iprd0cp-{0}-3k3coynn1w-3k3coynn1w.gz' -2026-01-28 14:17:49.417 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.417 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Data.DataSetExtensions.3k3coynn1w.wasm - 200 5430 application/wasm 2.8017ms -2026-01-28 14:17:49.421 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Data.d1s9ppg3o7.wasm - null null -2026-01-28 14:17:49.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.422 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.422 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.422 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.422 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.422 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.422 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.423 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.423 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.423 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.423 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.423 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.423 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.423 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.423 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.424 +03:00 [INF] Sending file. Request path: '_framework/System.Data.d1s9ppg3o7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\z59k6pwvr9-{0}-d1s9ppg3o7-d1s9ppg3o7.gz' -2026-01-28 14:17:49.424 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.424 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Data.d1s9ppg3o7.wasm - 200 15158 application/wasm 2.7921ms -2026-01-28 14:17:49.428 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Contracts.yj802auekg.wasm - null null -2026-01-28 14:17:49.428 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.429 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.429 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.429 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.429 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.429 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.429 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.429 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.429 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.429 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.429 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.429 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.429 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.429 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.429 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.429 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.429 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.429 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.429 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.429 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.429 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.430 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.430 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Contracts.yj802auekg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\895yo00sin-{0}-yj802auekg-yj802auekg.gz' -2026-01-28 14:17:49.430 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.431 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Contracts.yj802auekg.wasm - 200 5942 application/wasm 2.6949ms -2026-01-28 14:17:49.435 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Debug.d3luf33vju.wasm - null null -2026-01-28 14:17:49.436 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.436 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.436 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.436 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.436 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.437 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.437 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.437 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.437 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.437 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.437 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.437 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.437 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.437 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.437 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.437 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.437 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.437 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.437 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.437 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.437 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.437 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.438 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Debug.d3luf33vju.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\eplp8tl5qp-{0}-d3luf33vju-d3luf33vju.gz' -2026-01-28 14:17:49.438 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.438 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Debug.d3luf33vju.wasm - 200 5430 application/wasm 2.7446ms -2026-01-28 14:17:49.443 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.DiagnosticSource.4iwxfpqf71.wasm - null null -2026-01-28 14:17:49.444 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.444 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.444 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.444 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.444 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.444 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.444 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.444 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.444 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.444 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.444 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.444 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.444 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.444 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.445 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.445 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.445 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.445 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.445 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.445 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.445 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.445 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.447 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.DiagnosticSource.4iwxfpqf71.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1hb9b6viqf-{0}-4iwxfpqf71-4iwxfpqf71.gz' -2026-01-28 14:17:49.447 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.447 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.DiagnosticSource.4iwxfpqf71.wasm - 200 192335 application/wasm 3.9347ms -2026-01-28 14:17:49.452 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.FileVersionInfo.pqffbmgf59.wasm - null null -2026-01-28 14:17:49.452 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.453 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.453 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.453 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.453 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.453 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.453 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.453 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.453 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.453 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.453 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.453 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.453 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.453 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.454 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.454 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.FileVersionInfo.pqffbmgf59.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s56fv99ax6-{0}-pqffbmgf59-pqffbmgf59.gz' -2026-01-28 14:17:49.454 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.454 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.FileVersionInfo.pqffbmgf59.wasm - 200 12598 application/wasm 2.6953ms -2026-01-28 14:17:49.459 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Process.hgedtugxkh.wasm - null null -2026-01-28 14:17:49.460 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.460 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.460 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.460 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.460 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.460 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.460 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.460 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.460 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.460 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.460 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.460 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.460 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.460 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.461 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.461 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.461 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.461 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.461 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.461 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.461 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.461 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.462 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Process.hgedtugxkh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ulvoxvx0qx-{0}-hgedtugxkh-hgedtugxkh.gz' -2026-01-28 14:17:49.462 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.462 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Process.hgedtugxkh.wasm - 200 46395 application/wasm 3.0205ms -2026-01-28 14:17:49.467 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.StackTrace.apl6dmc0ay.wasm - null null -2026-01-28 14:17:49.467 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.467 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.467 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.467 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.467 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.468 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.468 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.468 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.468 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.468 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.468 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.468 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.468 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.468 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.468 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.469 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.StackTrace.apl6dmc0ay.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b4bxks5sgj-{0}-apl6dmc0ay-apl6dmc0ay.gz' -2026-01-28 14:17:49.469 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.469 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.StackTrace.apl6dmc0ay.wasm - 200 15670 application/wasm 2.6299ms -2026-01-28 14:17:49.474 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.TextWriterTraceListener.p621ruagc5.wasm - null null -2026-01-28 14:17:49.475 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.475 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.475 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.475 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.475 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.475 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.475 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.475 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.475 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.475 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.475 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.475 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.475 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.475 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.475 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.475 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.475 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.475 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.475 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.475 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.475 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.476 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.476 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.TextWriterTraceListener.p621ruagc5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0rz7u0vbo5-{0}-p621ruagc5-p621ruagc5.gz' -2026-01-28 14:17:49.476 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.477 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.TextWriterTraceListener.p621ruagc5.wasm - 200 21302 application/wasm 2.5802ms -2026-01-28 14:17:49.482 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Tools.f5hnfusd9n.wasm - null null -2026-01-28 14:17:49.483 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.483 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.483 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.483 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.483 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.483 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.483 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.483 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.483 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.483 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.483 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.484 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.484 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.484 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.484 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.484 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.484 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.484 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.484 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.484 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.484 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.484 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.485 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Tools.f5hnfusd9n.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rtkunlcxi7-{0}-f5hnfusd9n-f5hnfusd9n.gz' -2026-01-28 14:17:49.485 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.485 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Tools.f5hnfusd9n.wasm - 200 4918 application/wasm 2.7784ms -2026-01-28 14:17:49.490 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.TraceSource.z6jsaoha6p.wasm - null null -2026-01-28 14:17:49.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.491 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.491 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.491 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.491 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.491 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.491 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.491 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.491 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.491 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.492 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.492 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.492 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.492 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.492 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.492 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.493 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.TraceSource.z6jsaoha6p.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3okia77zo6-{0}-z6jsaoha6p-z6jsaoha6p.gz' -2026-01-28 14:17:49.493 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.493 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.TraceSource.z6jsaoha6p.wasm - 200 48443 application/wasm 3.188ms -2026-01-28 14:17:49.497 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Tracing.d1w6x6c56c.wasm - null null -2026-01-28 14:17:49.497 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.498 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.498 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.498 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.498 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.498 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.498 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.498 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.498 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.498 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.498 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.498 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.498 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.498 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.498 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.498 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.498 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.498 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.498 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.498 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.498 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.499 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.499 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Tracing.d1w6x6c56c.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bl5rt2o9qk-{0}-d1w6x6c56c-d1w6x6c56c.gz' -2026-01-28 14:17:49.499 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.499 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Tracing.d1w6x6c56c.wasm - 200 5942 application/wasm 2.906ms -2026-01-28 14:17:49.504 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Drawing.Primitives.l0kpbmmg5r.wasm - null null -2026-01-28 14:17:49.504 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.505 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.505 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.505 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.505 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.505 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.505 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.505 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.505 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.505 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.505 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.505 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.505 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.505 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.505 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.505 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.505 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.505 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.505 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.505 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.505 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.506 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.506 +03:00 [INF] Sending file. Request path: '_framework/System.Drawing.Primitives.l0kpbmmg5r.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mnh24cyvjl-{0}-l0kpbmmg5r-l0kpbmmg5r.gz' -2026-01-28 14:17:49.506 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.506 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Drawing.Primitives.l0kpbmmg5r.wasm - 200 54587 application/wasm 2.8383ms -2026-01-28 14:17:49.510 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Drawing.ur4stg427u.wasm - null null -2026-01-28 14:17:49.511 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.511 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.511 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.511 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.511 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.512 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.512 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.512 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.512 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.512 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.512 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.512 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.512 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.512 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.512 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.513 +03:00 [INF] Sending file. Request path: '_framework/System.Drawing.ur4stg427u.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tcko64rf2o-{0}-ur4stg427u-ur4stg427u.gz' -2026-01-28 14:17:49.513 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.513 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Drawing.ur4stg427u.wasm - 200 10038 application/wasm 2.7266ms -2026-01-28 14:17:49.517 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Dynamic.Runtime.hhm1961hd1.wasm - null null -2026-01-28 14:17:49.518 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.518 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.518 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.518 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.518 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.518 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.518 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.518 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.518 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.518 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.518 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.518 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.518 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.518 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.519 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.519 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.519 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.519 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.519 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.519 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.519 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.519 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.520 +03:00 [INF] Sending file. Request path: '_framework/System.Dynamic.Runtime.hhm1961hd1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bmbd8giz1p-{0}-hhm1961hd1-hhm1961hd1.gz' -2026-01-28 14:17:49.520 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.520 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Dynamic.Runtime.hhm1961hd1.wasm - 200 5942 application/wasm 2.9332ms -2026-01-28 14:17:49.524 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Formats.Asn1.9b1kh77dim.wasm - null null -2026-01-28 14:17:49.525 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.525 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.525 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.525 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.525 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.525 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.525 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.525 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.525 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.525 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.525 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.526 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.526 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.526 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.526 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.526 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.526 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.526 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.526 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.526 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.526 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.526 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.527 +03:00 [INF] Sending file. Request path: '_framework/System.Formats.Asn1.9b1kh77dim.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3nsgkkymfm-{0}-9b1kh77dim-9b1kh77dim.gz' -2026-01-28 14:17:49.527 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.527 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Formats.Asn1.9b1kh77dim.wasm - 200 86848 application/wasm 3.1657ms -2026-01-28 14:17:49.532 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Formats.Tar.pwu9oiomot.wasm - null null -2026-01-28 14:17:49.533 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.533 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.533 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.533 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.533 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.533 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.533 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.533 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.533 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.533 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.533 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.533 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.533 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.533 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.533 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.533 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.533 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.533 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.533 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.533 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.534 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.534 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.534 +03:00 [INF] Sending file. Request path: '_framework/System.Formats.Tar.pwu9oiomot.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\hazqfqk5pt-{0}-pwu9oiomot-pwu9oiomot.gz' -2026-01-28 14:17:49.534 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.534 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Formats.Tar.pwu9oiomot.wasm - 200 28470 application/wasm 2.6938ms -2026-01-28 14:17:49.539 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Globalization.Calendars.w6686c3eg8.wasm - null null -2026-01-28 14:17:49.539 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.540 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.540 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.540 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.540 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.540 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.540 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.540 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.540 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.540 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.540 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.540 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.540 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.540 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.540 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.540 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.540 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.540 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.540 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.540 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.540 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.541 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.541 +03:00 [INF] Sending file. Request path: '_framework/System.Globalization.Calendars.w6686c3eg8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\095aowv2ry-{0}-w6686c3eg8-w6686c3eg8.gz' -2026-01-28 14:17:49.541 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.541 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Globalization.Calendars.w6686c3eg8.wasm - 200 5430 application/wasm 2.8037ms -2026-01-28 14:17:49.546 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Globalization.Extensions.koczvzp0tt.wasm - null null -2026-01-28 14:17:49.548 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.548 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.548 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.548 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.548 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.548 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.548 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.548 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.548 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.548 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.548 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.548 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.548 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.548 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.549 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.549 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.549 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.549 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.549 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.549 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.549 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.549 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.550 +03:00 [INF] Sending file. Request path: '_framework/System.Globalization.Extensions.koczvzp0tt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dl0jfhz19c-{0}-koczvzp0tt-koczvzp0tt.gz' -2026-01-28 14:17:49.550 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.550 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Globalization.Extensions.koczvzp0tt.wasm - 200 4918 application/wasm 3.9358ms -2026-01-28 14:17:49.562 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Globalization.k8m97q3m8s.wasm - null null -2026-01-28 14:17:49.563 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.563 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.563 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.563 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.563 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.564 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.564 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.564 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.564 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.564 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.564 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.564 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.564 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.564 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.564 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.564 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.564 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.564 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.564 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.564 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.564 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.565 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.567 +03:00 [INF] Sending file. Request path: '_framework/System.Globalization.k8m97q3m8s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8q1hdhcajb-{0}-k8m97q3m8s-k8m97q3m8s.gz' -2026-01-28 14:17:49.568 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.568 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Globalization.k8m97q3m8s.wasm - 200 5430 application/wasm 5.5585ms -2026-01-28 14:17:49.610 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.Brotli.66hvl0dk85.wasm - null null -2026-01-28 14:17:49.611 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.611 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.611 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.611 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.611 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.611 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.612 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.612 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.612 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.612 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.612 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.612 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.612 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.612 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.614 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.614 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.614 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.614 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.614 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.614 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.614 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.615 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.616 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Compression.Brotli.66hvl0dk85.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\klv0zda5b4-{0}-66hvl0dk85-66hvl0dk85.gz' -2026-01-28 14:17:49.617 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.617 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.Brotli.66hvl0dk85.wasm - 200 18230 application/wasm 7.2632ms -2026-01-28 14:17:49.624 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.FileSystem.jhbp0nl2b8.wasm - null null -2026-01-28 14:17:49.625 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.625 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.625 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.625 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.625 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.625 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.625 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.625 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.625 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.625 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.625 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.625 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.625 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.625 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.625 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.625 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.625 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.626 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.626 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.626 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.626 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.626 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.626 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Compression.FileSystem.jhbp0nl2b8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3qa8sgt8n1-{0}-jhbp0nl2b8-jhbp0nl2b8.gz' -2026-01-28 14:17:49.627 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.627 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.FileSystem.jhbp0nl2b8.wasm - 200 4918 application/wasm 3.0008ms -2026-01-28 14:17:49.632 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.ZipFile.nap78ewmdw.wasm - null null -2026-01-28 14:17:49.633 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.633 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.633 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.633 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.633 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.633 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.633 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.633 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.633 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.633 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.633 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.633 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.633 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.633 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.633 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.633 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.633 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.633 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.633 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.633 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.633 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.634 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.634 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Compression.ZipFile.nap78ewmdw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s0uvr55768-{0}-nap78ewmdw-nap78ewmdw.gz' -2026-01-28 14:17:49.634 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.634 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.ZipFile.nap78ewmdw.wasm - 200 43323 application/wasm 2.6415ms -2026-01-28 14:17:49.639 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.wjdy7ns833.wasm - null null -2026-01-28 14:17:49.640 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.640 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.640 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.640 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.640 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.640 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.640 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.640 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.640 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.640 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.640 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.640 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.640 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.640 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.641 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.641 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.641 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.641 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.641 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.641 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.641 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.641 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.643 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Compression.wjdy7ns833.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b9wmrmes1g-{0}-wjdy7ns833-wjdy7ns833.gz' -2026-01-28 14:17:49.643 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.643 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.wjdy7ns833.wasm - 200 157514 application/wasm 3.9273ms -2026-01-28 14:17:49.648 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.AccessControl.eod3jwbqn7.wasm - null null -2026-01-28 14:17:49.648 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.649 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.649 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.649 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.649 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.649 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.649 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.649 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.649 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.649 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.649 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.649 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.649 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.649 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.649 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.649 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.649 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.649 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.649 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.649 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.649 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.650 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.651 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.AccessControl.eod3jwbqn7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dxkig4l83f-{0}-eod3jwbqn7-eod3jwbqn7.gz' -2026-01-28 14:17:49.651 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.651 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.AccessControl.eod3jwbqn7.wasm - 200 21814 application/wasm 3.1168ms -2026-01-28 14:17:49.659 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.DriveInfo.driq9z3dvq.wasm - null null -2026-01-28 14:17:49.660 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.660 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.660 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.660 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.660 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.661 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.661 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.661 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.661 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.661 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.661 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.661 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.661 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.661 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.661 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.661 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.661 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.661 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.661 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.661 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.661 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.661 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.662 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.DriveInfo.driq9z3dvq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\53tiabgbqz-{0}-driq9z3dvq-driq9z3dvq.gz' -2026-01-28 14:17:49.662 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.663 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.DriveInfo.driq9z3dvq.wasm - 200 13622 application/wasm 3.5751ms -2026-01-28 14:17:49.669 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.Primitives.81fwc35czq.wasm - null null -2026-01-28 14:17:49.670 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.670 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.670 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.670 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.670 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.671 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.671 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.671 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.671 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.671 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.671 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.671 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.671 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.671 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.671 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.671 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.672 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.672 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.672 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.672 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.672 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.672 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.673 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.Primitives.81fwc35czq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3hdbxu1ccm-{0}-81fwc35czq-81fwc35czq.gz' -2026-01-28 14:17:49.673 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.673 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.Primitives.81fwc35czq.wasm - 200 4918 application/wasm 4.2274ms -2026-01-28 14:17:49.678 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.Watcher.adgwo4kuza.wasm - null null -2026-01-28 14:17:49.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.680 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.680 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.680 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.680 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.681 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.681 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.681 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.681 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.681 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.681 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.681 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.681 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.681 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.681 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.682 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.683 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.Watcher.adgwo4kuza.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0nk9uqd91z-{0}-adgwo4kuza-adgwo4kuza.gz' -2026-01-28 14:17:49.683 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.683 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.Watcher.adgwo4kuza.wasm - 200 22838 application/wasm 4.643ms -2026-01-28 14:17:49.689 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.bwu3sqaj6h.wasm - null null -2026-01-28 14:17:49.690 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.690 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.690 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.690 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.691 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.691 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.691 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.691 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.691 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.691 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.691 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.691 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.691 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.691 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.692 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.693 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.bwu3sqaj6h.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0oeun214in-{0}-bwu3sqaj6h-bwu3sqaj6h.gz' -2026-01-28 14:17:49.693 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.693 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.bwu3sqaj6h.wasm - 200 5430 application/wasm 3.6554ms -2026-01-28 14:17:49.698 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.IsolatedStorage.h5a2uwu0ao.wasm - null null -2026-01-28 14:17:49.699 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.699 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.699 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.699 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.699 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.700 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.700 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.700 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.700 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.700 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.700 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.700 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.700 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.700 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.700 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.701 +03:00 [INF] Sending file. Request path: '_framework/System.IO.IsolatedStorage.h5a2uwu0ao.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wxrt5vpq1k-{0}-h5a2uwu0ao-h5a2uwu0ao.gz' -2026-01-28 14:17:49.701 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.701 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.IsolatedStorage.h5a2uwu0ao.wasm - 200 24886 application/wasm 2.7763ms -2026-01-28 14:17:49.706 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.MemoryMappedFiles.7rigkgafok.wasm - null null -2026-01-28 14:17:49.707 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.707 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.707 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.707 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.707 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.707 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.708 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.708 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.708 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.708 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.708 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.708 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.708 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.708 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.708 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.708 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.708 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.708 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.708 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.708 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.708 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.708 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.709 +03:00 [INF] Sending file. Request path: '_framework/System.IO.MemoryMappedFiles.7rigkgafok.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vyic7lxnxv-{0}-7rigkgafok-7rigkgafok.gz' -2026-01-28 14:17:49.709 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.709 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.MemoryMappedFiles.7rigkgafok.wasm - 200 39739 application/wasm 2.8249ms -2026-01-28 14:17:49.714 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipelines.pq56wwa14f.wasm - null null -2026-01-28 14:17:49.714 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.714 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.714 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.714 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.714 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.715 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.715 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.715 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.715 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.715 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.715 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.715 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.715 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.715 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.715 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.715 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.715 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.715 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.715 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.715 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.715 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.716 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.717 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Pipelines.pq56wwa14f.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\a08rh4wqum-{0}-pq56wwa14f-pq56wwa14f.gz' -2026-01-28 14:17:49.717 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.717 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipelines.pq56wwa14f.wasm - 200 67904 application/wasm 3.657ms -2026-01-28 14:17:49.721 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipes.AccessControl.orawgey7bd.wasm - null null -2026-01-28 14:17:49.722 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.722 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.722 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.723 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.723 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.723 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.723 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.723 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.723 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.723 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.723 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.723 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.723 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.723 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.723 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.724 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.724 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Pipes.AccessControl.orawgey7bd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\l16mq4yf9p-{0}-orawgey7bd-orawgey7bd.gz' -2026-01-28 14:17:49.724 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.724 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipes.AccessControl.orawgey7bd.wasm - 200 13110 application/wasm 3.0495ms -2026-01-28 14:17:49.730 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipes.qv5hx9ne5m.wasm - null null -2026-01-28 14:17:49.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.731 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.731 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.731 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.731 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.731 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.732 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.732 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.732 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.732 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.732 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.732 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.732 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.732 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.732 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.732 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.732 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.732 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.732 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.732 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.732 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.733 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Pipes.qv5hx9ne5m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\r2irkbzfn5-{0}-qv5hx9ne5m-qv5hx9ne5m.gz' -2026-01-28 14:17:49.733 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.733 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipes.qv5hx9ne5m.wasm - 200 32054 application/wasm 3.6611ms -2026-01-28 14:17:49.739 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.UnmanagedMemoryStream.zjpuh62vtt.wasm - null null -2026-01-28 14:17:49.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.740 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.740 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.740 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.740 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.740 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.740 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.740 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.740 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.741 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.741 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.741 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.741 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.741 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.741 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.742 +03:00 [INF] Sending file. Request path: '_framework/System.IO.UnmanagedMemoryStream.zjpuh62vtt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\u2mfjvv6a6-{0}-zjpuh62vtt-zjpuh62vtt.gz' -2026-01-28 14:17:49.742 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.742 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.UnmanagedMemoryStream.zjpuh62vtt.wasm - 200 5430 application/wasm 3.11ms -2026-01-28 14:17:49.747 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.kdm5se4z4i.wasm - null null -2026-01-28 14:17:49.748 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.748 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.748 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.748 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.748 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.748 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.748 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.748 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.748 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.748 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.748 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.748 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.748 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.748 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.749 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.749 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.749 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.749 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.749 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.749 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.749 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.749 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.749 +03:00 [INF] Sending file. Request path: '_framework/System.IO.kdm5se4z4i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tx0zr2bfyn-{0}-kdm5se4z4i-kdm5se4z4i.gz' -2026-01-28 14:17:49.749 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.750 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.kdm5se4z4i.wasm - 200 5430 application/wasm 2.7772ms -2026-01-28 14:17:49.754 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.AsyncEnumerable.24q069vvmu.wasm - null null -2026-01-28 14:17:49.755 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.755 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.755 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.755 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.755 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.755 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.755 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.755 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.755 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.755 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.755 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.755 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.755 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.755 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.756 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.756 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.756 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.756 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.756 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.756 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.756 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.756 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.759 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.AsyncEnumerable.24q069vvmu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c7lzsfjd6q-{0}-24q069vvmu-24q069vvmu.gz' -2026-01-28 14:17:49.759 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.759 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.AsyncEnumerable.24q069vvmu.wasm - 200 446327 application/wasm 5.0704ms -2026-01-28 14:17:49.765 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.Expressions.5vac4cfeo2.wasm - null null -2026-01-28 14:17:49.765 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.765 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.765 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.766 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.766 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.766 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.766 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.766 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.766 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.766 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.766 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.766 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.766 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.766 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.766 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.770 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.Expressions.5vac4cfeo2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ofq1bjb4ny-{0}-5vac4cfeo2-5vac4cfeo2.gz' -2026-01-28 14:17:49.770 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.770 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.Expressions.5vac4cfeo2.wasm - 200 565131 application/wasm 5.6369ms -2026-01-28 14:17:49.775 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.Parallel.wec9zwybs3.wasm - null null -2026-01-28 14:17:49.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.776 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.776 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.776 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.776 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.776 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.776 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.776 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.777 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.777 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.777 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.777 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.777 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.777 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.777 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.777 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.779 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.Parallel.wec9zwybs3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gqwqnnwtf4-{0}-wec9zwybs3-wec9zwybs3.gz' -2026-01-28 14:17:49.779 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.779 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.Parallel.wec9zwybs3.wasm - 200 212820 application/wasm 3.6257ms -2026-01-28 14:17:49.784 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.Queryable.aacsqokaru.wasm - null null -2026-01-28 14:17:49.785 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.785 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.785 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.785 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.785 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.785 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.785 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.785 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.785 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.785 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.785 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.785 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.785 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.785 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.785 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.785 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.785 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.785 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.786 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.786 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.786 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.786 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.787 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.Queryable.aacsqokaru.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6oa4hfxdqf-{0}-aacsqokaru-aacsqokaru.gz' -2026-01-28 14:17:49.787 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.787 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.Queryable.aacsqokaru.wasm - 200 68416 application/wasm 2.9742ms -2026-01-28 14:17:49.791 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.xsk9czcoz7.wasm - null null -2026-01-28 14:17:49.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.792 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.792 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.792 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.792 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.792 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.792 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.792 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.792 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.792 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.792 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.792 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.793 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.793 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.793 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.794 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.xsk9czcoz7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xukhwpcysr-{0}-xsk9czcoz7-xsk9czcoz7.gz' -2026-01-28 14:17:49.794 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.794 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.xsk9czcoz7.wasm - 200 190799 application/wasm 3.5018ms -2026-01-28 14:17:49.799 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Memory.av3iy8oqe6.wasm - null null -2026-01-28 14:17:49.800 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.800 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.800 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.800 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.800 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.800 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.800 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.800 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.800 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.800 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.800 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.800 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.800 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.800 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.801 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.801 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.801 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.801 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.801 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.801 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.801 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.801 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.802 +03:00 [INF] Sending file. Request path: '_framework/System.Memory.av3iy8oqe6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\20k8bcs2ry-{0}-av3iy8oqe6-av3iy8oqe6.gz' -2026-01-28 14:17:49.802 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.802 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Memory.av3iy8oqe6.wasm - 200 45371 application/wasm 2.6864ms -2026-01-28 14:17:49.806 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Http.Json.f5ti54ia1a.wasm - null null -2026-01-28 14:17:49.807 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.807 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.807 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.807 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.807 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.807 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.807 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.807 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.807 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.807 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.807 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.807 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.807 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.807 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.807 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.807 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.807 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.807 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.807 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.807 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.808 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.808 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.808 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Http.Json.f5ti54ia1a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\hdhp2fv8el-{0}-f5ti54ia1a-f5ti54ia1a.gz' -2026-01-28 14:17:49.809 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.809 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Http.Json.f5ti54ia1a.wasm - 200 45883 application/wasm 2.7934ms -2026-01-28 14:17:49.813 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Http.xnexopyo77.wasm - null null -2026-01-28 14:17:49.814 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.814 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.814 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.814 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.814 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.814 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.814 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.814 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.814 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.814 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.814 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.814 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.814 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.814 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.815 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.815 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.815 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.815 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.815 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.815 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.815 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.815 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.817 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Http.xnexopyo77.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5zhsh7htpt-{0}-xnexopyo77-xnexopyo77.gz' -2026-01-28 14:17:49.817 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.817 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Http.xnexopyo77.wasm - 200 286046 application/wasm 4.2612ms -2026-01-28 14:17:49.823 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.HttpListener.qea3lr0ivv.wasm - null null -2026-01-28 14:17:49.823 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.823 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.824 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.824 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.824 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.824 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.824 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.824 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.824 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.824 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.824 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.824 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.824 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.824 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.824 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.824 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.824 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.824 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.824 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.824 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.824 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.824 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.825 +03:00 [INF] Sending file. Request path: '_framework/System.Net.HttpListener.qea3lr0ivv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xstee2l2o3-{0}-qea3lr0ivv-qea3lr0ivv.gz' -2026-01-28 14:17:49.825 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.825 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.HttpListener.qea3lr0ivv.wasm - 200 45883 application/wasm 2.6928ms -2026-01-28 14:17:49.829 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Mail.kabvwy0nwb.wasm - null null -2026-01-28 14:17:49.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.830 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.830 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.830 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.830 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.830 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.830 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.830 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.831 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.831 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.831 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.831 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.831 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.831 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.831 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.831 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.832 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Mail.kabvwy0nwb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\brj66r630l-{0}-kabvwy0nwb-kabvwy0nwb.gz' -2026-01-28 14:17:49.832 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.832 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Mail.kabvwy0nwb.wasm - 200 95040 application/wasm 2.8742ms -2026-01-28 14:17:49.835 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.NameResolution.r77xqyi48e.wasm - null null -2026-01-28 14:17:49.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.836 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.836 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.836 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.836 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.836 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.837 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.837 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.837 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.837 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.837 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.837 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.837 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.837 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.837 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.838 +03:00 [INF] Sending file. Request path: '_framework/System.Net.NameResolution.r77xqyi48e.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0muzq1nn1l-{0}-r77xqyi48e-r77xqyi48e.gz' -2026-01-28 14:17:49.838 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.838 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.NameResolution.r77xqyi48e.wasm - 200 14134 application/wasm 2.3555ms -2026-01-28 14:17:49.842 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.NetworkInformation.4y8ae4b47g.wasm - null null -2026-01-28 14:17:49.842 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.843 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.843 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.843 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.843 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.843 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.843 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.843 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.843 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.843 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.843 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.843 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.843 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.843 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.843 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.843 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.843 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.843 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.843 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.843 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.843 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.844 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.844 +03:00 [INF] Sending file. Request path: '_framework/System.Net.NetworkInformation.4y8ae4b47g.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\t7lf75pu6w-{0}-4y8ae4b47g-4y8ae4b47g.gz' -2026-01-28 14:17:49.844 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.844 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.NetworkInformation.4y8ae4b47g.wasm - 200 32054 application/wasm 2.659ms -2026-01-28 14:17:49.848 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Ping.fb39s7nqmu.wasm - null null -2026-01-28 14:17:49.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.849 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.849 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.850 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.850 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.850 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.850 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.850 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.850 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.850 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.850 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.850 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Ping.fb39s7nqmu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1qhthfilvz-{0}-fb39s7nqmu-fb39s7nqmu.gz' -2026-01-28 14:17:49.850 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.850 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Ping.fb39s7nqmu.wasm - 200 17718 application/wasm 2.287ms -2026-01-28 14:17:49.855 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Primitives.2oo4pve6tx.wasm - null null -2026-01-28 14:17:49.855 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.855 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.855 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.855 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.855 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.856 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.856 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.856 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.856 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.856 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.856 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.856 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.856 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.856 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.856 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.857 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Primitives.2oo4pve6tx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xxez8u380e-{0}-2oo4pve6tx-2oo4pve6tx.gz' -2026-01-28 14:17:49.857 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.857 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Primitives.2oo4pve6tx.wasm - 200 97088 application/wasm 2.7415ms -2026-01-28 14:17:49.861 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Quic.wedsu6m1ok.wasm - null null -2026-01-28 14:17:49.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.862 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.862 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.862 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.862 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.862 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.862 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.862 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.862 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.862 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.862 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.862 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.862 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.862 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.863 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.863 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Quic.wedsu6m1ok.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mavmo5ad6x-{0}-wedsu6m1ok-wedsu6m1ok.gz' -2026-01-28 14:17:49.863 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.863 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Quic.wedsu6m1ok.wasm - 200 28982 application/wasm 2.4961ms -2026-01-28 14:17:49.868 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Requests.dd8um1v0v4.wasm - null null -2026-01-28 14:17:49.869 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.869 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.869 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.869 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.869 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.869 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.869 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.869 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.869 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.869 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.869 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.869 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.869 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.869 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.870 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.870 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.870 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.870 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.870 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.870 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.870 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.870 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.871 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Requests.dd8um1v0v4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\g8osyueis5-{0}-dd8um1v0v4-dd8um1v0v4.gz' -2026-01-28 14:17:49.871 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.871 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Requests.dd8um1v0v4.wasm - 200 55611 application/wasm 2.8047ms -2026-01-28 14:17:49.875 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Security.j01yc12epg.wasm - null null -2026-01-28 14:17:49.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.876 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.876 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.876 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.876 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.876 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.876 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.876 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.876 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.876 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.876 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.876 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.876 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.876 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.877 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.878 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Security.j01yc12epg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vd1ks16ws6-{0}-j01yc12epg-j01yc12epg.gz' -2026-01-28 14:17:49.878 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.878 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Security.j01yc12epg.wasm - 200 104261 application/wasm 2.9918ms -2026-01-28 14:17:49.882 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.ServerSentEvents.n20pwunwwa.wasm - null null -2026-01-28 14:17:49.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.883 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.883 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.883 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.883 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.883 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.883 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.883 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.883 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.883 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.883 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.883 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.883 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.883 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.884 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.884 +03:00 [INF] Sending file. Request path: '_framework/System.Net.ServerSentEvents.n20pwunwwa.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rp6twqxirl-{0}-n20pwunwwa-n20pwunwwa.gz' -2026-01-28 14:17:49.884 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.884 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.ServerSentEvents.n20pwunwwa.wasm - 200 30518 application/wasm 2.8125ms -2026-01-28 14:17:49.888 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.ServicePoint.6qgdmrxct2.wasm - null null -2026-01-28 14:17:49.889 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.889 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.889 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.889 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.889 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.889 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.889 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.889 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.889 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.889 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.889 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.889 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.889 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.889 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.889 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.890 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.890 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.890 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.890 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.890 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.890 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.890 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.890 +03:00 [INF] Sending file. Request path: '_framework/System.Net.ServicePoint.6qgdmrxct2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v7t97n1u19-{0}-6qgdmrxct2-6qgdmrxct2.gz' -2026-01-28 14:17:49.890 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.890 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.ServicePoint.6qgdmrxct2.wasm - 200 4918 application/wasm 2.3125ms -2026-01-28 14:17:49.894 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Sockets.0jj55xk9rv.wasm - null null -2026-01-28 14:17:49.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.895 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.895 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.895 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.895 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.895 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.896 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.896 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.896 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.896 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.896 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.896 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.896 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.896 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.896 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.897 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Sockets.0jj55xk9rv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\i4k589b7bn-{0}-0jj55xk9rv-0jj55xk9rv.gz' -2026-01-28 14:17:49.897 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.897 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Sockets.0jj55xk9rv.wasm - 200 64315 application/wasm 2.9122ms -2026-01-28 14:17:49.901 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebClient.3wc74qco9q.wasm - null null -2026-01-28 14:17:49.902 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.902 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.902 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.902 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.902 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.902 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.902 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.902 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.902 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.903 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.903 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.903 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.903 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.903 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.903 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.903 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.903 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.903 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.904 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebClient.3wc74qco9q.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9mnjsb8x3q-{0}-3wc74qco9q-3wc74qco9q.gz' -2026-01-28 14:17:49.904 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.904 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebClient.3wc74qco9q.wasm - 200 45883 application/wasm 2.7557ms -2026-01-28 14:17:49.908 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebHeaderCollection.4ybcvi6krs.wasm - null null -2026-01-28 14:17:49.908 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.908 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.909 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.909 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.909 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.909 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.909 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.909 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.909 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.909 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.909 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.909 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.909 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.909 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.909 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.910 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebHeaderCollection.4ybcvi6krs.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\apet8won7e-{0}-4ybcvi6krs-4ybcvi6krs.gz' -2026-01-28 14:17:49.910 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.910 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebHeaderCollection.4ybcvi6krs.wasm - 200 22838 application/wasm 2.7132ms -2026-01-28 14:17:49.914 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebProxy.zxvs9bwlaq.wasm - null null -2026-01-28 14:17:49.915 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.915 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.915 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.915 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.915 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.916 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.916 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.916 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.916 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.916 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.916 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.916 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.916 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.916 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.916 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.916 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.916 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.916 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.916 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.916 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.916 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.916 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.917 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebProxy.zxvs9bwlaq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n8e7iy8bgt-{0}-zxvs9bwlaq-zxvs9bwlaq.gz' -2026-01-28 14:17:49.917 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.917 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebProxy.zxvs9bwlaq.wasm - 200 11574 application/wasm 2.7662ms -2026-01-28 14:17:49.921 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebSockets.Client.n57nf3z1br.wasm - null null -2026-01-28 14:17:49.922 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.922 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.922 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.922 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.922 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.922 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.922 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.922 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.922 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.922 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.922 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.922 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.922 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.922 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.923 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.923 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.923 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.923 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.923 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.923 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.923 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.923 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.924 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebSockets.Client.n57nf3z1br.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rnseevpeje-{0}-n57nf3z1br-n57nf3z1br.gz' -2026-01-28 14:17:49.924 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.924 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebSockets.Client.n57nf3z1br.wasm - 200 42299 application/wasm 2.6006ms -2026-01-28 14:17:49.928 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebSockets.i3475fl55i.wasm - null null -2026-01-28 14:17:49.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.929 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.930 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.930 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.930 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.930 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.930 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.930 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.930 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.930 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.930 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.932 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebSockets.i3475fl55i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fixxlx5x95-{0}-i3475fl55i-i3475fl55i.gz' -2026-01-28 14:17:49.932 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.932 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebSockets.i3475fl55i.wasm - 200 98629 application/wasm 3.5548ms -2026-01-28 14:17:49.937 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.2jb9y9tls4.wasm - null null -2026-01-28 14:17:49.937 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.938 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.938 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.938 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.938 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.938 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.938 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.938 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.938 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.938 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.938 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.938 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.938 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.938 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.938 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.938 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.938 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.938 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.938 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.938 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.938 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.939 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.939 +03:00 [INF] Sending file. Request path: '_framework/System.Net.2jb9y9tls4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sdhyils1a8-{0}-2jb9y9tls4-2jb9y9tls4.gz' -2026-01-28 14:17:49.939 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.939 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.2jb9y9tls4.wasm - 200 6966 application/wasm 2.7364ms -2026-01-28 14:17:49.943 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Numerics.Vectors.tjoypuu8wa.wasm - null null -2026-01-28 14:17:49.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.950 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.950 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.950 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.950 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.951 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.951 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.951 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.951 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.951 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.951 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.951 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.951 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.951 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.951 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.951 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.951 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.951 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.951 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.952 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.952 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.952 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.953 +03:00 [INF] Sending file. Request path: '_framework/System.Numerics.Vectors.tjoypuu8wa.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\52qfucpyv5-{0}-tjoypuu8wa-tjoypuu8wa.gz' -2026-01-28 14:17:49.953 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.953 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Numerics.Vectors.tjoypuu8wa.wasm - 200 5430 application/wasm 9.486ms -2026-01-28 14:17:49.957 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Numerics.zb6snwiiqo.wasm - null null -2026-01-28 14:17:49.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.957 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.957 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.957 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.957 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.959 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.959 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.959 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.959 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.959 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.959 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.959 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.959 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.959 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.960 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.960 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.960 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.960 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.960 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.960 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.960 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.960 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.961 +03:00 [INF] Sending file. Request path: '_framework/System.Numerics.zb6snwiiqo.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3mhjbwzot4-{0}-zb6snwiiqo-zb6snwiiqo.gz' -2026-01-28 14:17:49.961 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.961 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Numerics.zb6snwiiqo.wasm - 200 4918 application/wasm 4.6259ms -2026-01-28 14:17:49.966 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ObjectModel.qra8ipv6cl.wasm - null null -2026-01-28 14:17:49.967 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.967 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.967 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.967 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.967 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.968 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.968 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.968 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.968 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.968 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.968 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.968 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.968 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.968 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.968 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.968 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.968 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.968 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.968 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.968 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.968 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.968 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.969 +03:00 [INF] Sending file. Request path: '_framework/System.ObjectModel.qra8ipv6cl.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\69h7jimh8b-{0}-qra8ipv6cl-qra8ipv6cl.gz' -2026-01-28 14:17:49.969 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.969 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ObjectModel.qra8ipv6cl.wasm - 200 31030 application/wasm 2.6877ms -2026-01-28 14:17:49.973 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.DataContractSerialization.cdaesawoob.wasm - null null -2026-01-28 14:17:49.974 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.974 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.974 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.974 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.975 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.975 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.975 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.975 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.975 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.975 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.975 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.975 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.975 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.975 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.975 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.975 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.975 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.975 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.975 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.975 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.975 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.976 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.980 +03:00 [INF] Sending file. Request path: '_framework/System.Private.DataContractSerialization.cdaesawoob.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xukodscfdt-{0}-cdaesawoob-cdaesawoob.gz' -2026-01-28 14:17:49.980 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.980 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.DataContractSerialization.cdaesawoob.wasm - 200 849331 application/wasm 6.4151ms -2026-01-28 14:17:49.986 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.Uri.d7c7uu4en8.wasm - null null -2026-01-28 14:17:49.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.990 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:49.990 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:49.990 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:49.990 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.990 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:49.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:49.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:49.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:49.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:49.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:49.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.990 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:49.990 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:49.991 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:49.991 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:49.991 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:49.991 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:49.991 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:49.991 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:49.991 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:49.991 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.993 +03:00 [INF] Sending file. Request path: '_framework/System.Private.Uri.d7c7uu4en8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ru8d7hu3hx-{0}-d7c7uu4en8-d7c7uu4en8.gz' -2026-01-28 14:17:49.993 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:49.993 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.Uri.d7c7uu4en8.wasm - 200 95040 application/wasm 6.4757ms -2026-01-28 14:17:50.000 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.Xml.Linq.yklun9npsh.wasm - null null -2026-01-28 14:17:50.001 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.002 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.002 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.002 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.002 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.002 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.002 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.003 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.003 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.003 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.003 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.003 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.003 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.003 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.003 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.005 +03:00 [INF] Sending file. Request path: '_framework/System.Private.Xml.Linq.yklun9npsh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wby45u92ah-{0}-yklun9npsh-yklun9npsh.gz' -2026-01-28 14:17:50.005 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.005 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.Xml.Linq.yklun9npsh.wasm - 200 143690 application/wasm 4.3751ms -2026-01-28 14:17:50.009 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.Xml.8fl2owujec.wasm - null null -2026-01-28 14:17:50.010 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.010 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.010 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.010 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.010 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.011 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.011 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.011 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.011 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.011 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.011 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.011 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.011 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.011 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.011 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.023 +03:00 [INF] Sending file. Request path: '_framework/System.Private.Xml.8fl2owujec.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4tw2sl7qh6-{0}-8fl2owujec-8fl2owujec.gz' -2026-01-28 14:17:50.023 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.024 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.Xml.8fl2owujec.wasm - 200 3096336 application/wasm 14.2193ms -2026-01-28 14:17:50.034 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.DispatchProxy.dur3huf884.wasm - null null -2026-01-28 14:17:50.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.035 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.035 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.035 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.035 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.035 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.036 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.036 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.036 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.036 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.036 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.036 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.036 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.036 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.036 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.036 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.036 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.036 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.036 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.036 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.036 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.037 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.DispatchProxy.dur3huf884.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1vtfgkdvnc-{0}-dur3huf884-dur3huf884.gz' -2026-01-28 14:17:50.037 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.037 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.DispatchProxy.dur3huf884.wasm - 200 27958 application/wasm 2.784ms -2026-01-28 14:17:50.041 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.ILGeneration.pei97jn90w.wasm - null null -2026-01-28 14:17:50.042 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.042 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.042 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.042 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.042 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.043 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.043 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.043 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.043 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.043 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.043 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.043 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.043 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.043 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.043 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.043 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.043 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.043 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.043 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.043 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.043 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.043 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.044 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Emit.ILGeneration.pei97jn90w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v1gyf0d1ub-{0}-pei97jn90w-pei97jn90w.gz' -2026-01-28 14:17:50.044 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.044 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.ILGeneration.pei97jn90w.wasm - 200 5430 application/wasm 2.6971ms -2026-01-28 14:17:50.048 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.Lightweight.ywsyqlj9p1.wasm - null null -2026-01-28 14:17:50.049 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.049 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.049 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.049 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.049 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.049 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.049 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.050 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.050 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.050 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.050 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.050 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.050 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.050 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.050 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.050 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.050 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.050 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.050 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.050 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.050 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.050 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.051 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Emit.Lightweight.ywsyqlj9p1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fhnd5yeiv1-{0}-ywsyqlj9p1-ywsyqlj9p1.gz' -2026-01-28 14:17:50.051 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.051 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.Lightweight.ywsyqlj9p1.wasm - 200 5430 application/wasm 3.2686ms -2026-01-28 14:17:50.055 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.tumhikm19o.wasm - null null -2026-01-28 14:17:50.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.056 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.056 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.057 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.057 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.057 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.057 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.057 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.057 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.057 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.057 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.058 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Emit.tumhikm19o.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vgtdlzmyp9-{0}-tumhikm19o-tumhikm19o.gz' -2026-01-28 14:17:50.058 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.058 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.tumhikm19o.wasm - 200 122693 application/wasm 2.9663ms -2026-01-28 14:17:50.062 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Extensions.z98cfn5ig8.wasm - null null -2026-01-28 14:17:50.063 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.063 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.063 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.063 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.063 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.063 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.063 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.063 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.063 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.063 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.063 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.063 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.063 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.063 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.063 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.063 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.063 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.063 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.063 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.063 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.063 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.064 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.064 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Extensions.z98cfn5ig8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5188hd084t-{0}-z98cfn5ig8-z98cfn5ig8.gz' -2026-01-28 14:17:50.064 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.064 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Extensions.z98cfn5ig8.wasm - 200 4918 application/wasm 2.394ms -2026-01-28 14:17:50.069 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Metadata.j4t1n1ywxj.wasm - null null -2026-01-28 14:17:50.069 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.069 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.069 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.069 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.069 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.070 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.070 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.070 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.070 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.070 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.070 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.070 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.070 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.070 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.070 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.070 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.070 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.070 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.070 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.070 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.070 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.070 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.073 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Metadata.j4t1n1ywxj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ih2v39fwix-{0}-j4t1n1ywxj-j4t1n1ywxj.gz' -2026-01-28 14:17:50.073 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.073 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Metadata.j4t1n1ywxj.wasm - 200 493441 application/wasm 4.447ms -2026-01-28 14:17:50.077 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Primitives.p4ntci6hk7.wasm - null null -2026-01-28 14:17:50.078 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.078 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.078 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.078 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.078 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.078 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.078 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.078 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.078 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.078 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.078 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.078 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.078 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.078 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.079 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.079 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.079 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.079 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.079 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.079 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.079 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.079 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.079 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Primitives.p4ntci6hk7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\z9kjf4ns5o-{0}-p4ntci6hk7-p4ntci6hk7.gz' -2026-01-28 14:17:50.079 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.080 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Primitives.p4ntci6hk7.wasm - 200 5430 application/wasm 2.3902ms -2026-01-28 14:17:50.083 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.TypeExtensions.puzzlnwex2.wasm - null null -2026-01-28 14:17:50.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.084 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.084 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.084 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.084 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.084 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.084 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.084 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.084 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.084 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.085 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.085 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.085 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.085 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.085 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.085 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.TypeExtensions.puzzlnwex2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7ukk8euu3c-{0}-puzzlnwex2-puzzlnwex2.gz' -2026-01-28 14:17:50.086 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.086 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.TypeExtensions.puzzlnwex2.wasm - 200 14134 application/wasm 2.5627ms -2026-01-28 14:17:50.090 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.lt32pnnkzd.wasm - null null -2026-01-28 14:17:50.090 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.090 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.091 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.091 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.091 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.091 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.091 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.091 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.091 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.091 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.091 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.091 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.091 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.091 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.092 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.092 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.lt32pnnkzd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5zfqu7bsm3-{0}-lt32pnnkzd-lt32pnnkzd.gz' -2026-01-28 14:17:50.092 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.092 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.lt32pnnkzd.wasm - 200 5942 application/wasm 2.8088ms -2026-01-28 14:17:50.103 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Resources.Reader.c8jfsntxbn.wasm - null null -2026-01-28 14:17:50.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.103 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.103 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.103 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.103 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.104 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.104 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.104 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.104 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.104 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.104 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.104 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.104 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.104 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.104 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.104 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.104 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.104 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.104 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.104 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.104 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.104 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.106 +03:00 [INF] Sending file. Request path: '_framework/System.Resources.Reader.c8jfsntxbn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5fcb3hbz6f-{0}-c8jfsntxbn-c8jfsntxbn.gz' -2026-01-28 14:17:50.106 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.106 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Resources.Reader.c8jfsntxbn.wasm - 200 4918 application/wasm 3.514ms -2026-01-28 14:17:50.134 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Resources.ResourceManager.q30psrnl7u.wasm - null null -2026-01-28 14:17:50.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.135 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.135 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.135 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.135 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.135 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.136 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.136 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.136 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.136 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.136 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.136 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.136 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.136 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.136 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.137 +03:00 [INF] Sending file. Request path: '_framework/System.Resources.ResourceManager.q30psrnl7u.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\k3xfrex2pp-{0}-q30psrnl7u-q30psrnl7u.gz' -2026-01-28 14:17:50.137 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.137 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Resources.ResourceManager.q30psrnl7u.wasm - 200 5430 application/wasm 2.9593ms -2026-01-28 14:17:50.145 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Resources.Writer.wvyn0j1lcg.wasm - null null -2026-01-28 14:17:50.146 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.146 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.146 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.146 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.146 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.147 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.147 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.147 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.147 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.147 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.147 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.147 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.147 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.147 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.147 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.147 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.147 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.147 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.147 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.147 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.147 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.148 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.148 +03:00 [INF] Sending file. Request path: '_framework/System.Resources.Writer.wvyn0j1lcg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wsg9isam35-{0}-wvyn0j1lcg-wvyn0j1lcg.gz' -2026-01-28 14:17:50.148 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.149 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Resources.Writer.wvyn0j1lcg.wasm - 200 16694 application/wasm 4.0891ms -2026-01-28 14:17:50.154 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.CompilerServices.Unsafe.djrvtrz9tb.wasm - null null -2026-01-28 14:17:50.155 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.155 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.155 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.155 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.155 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.155 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.155 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.155 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.155 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.155 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.155 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.156 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.156 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.156 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.156 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.156 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.156 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.156 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.156 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.156 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.156 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.156 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.157 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.CompilerServices.Unsafe.djrvtrz9tb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\smsvmq9glf-{0}-djrvtrz9tb-djrvtrz9tb.gz' -2026-01-28 14:17:50.157 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.157 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.CompilerServices.Unsafe.djrvtrz9tb.wasm - 200 4918 application/wasm 3.0656ms -2026-01-28 14:17:50.162 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.CompilerServices.VisualC.luekj4crl6.wasm - null null -2026-01-28 14:17:50.163 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.163 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.163 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.163 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.163 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.163 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.163 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.163 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.163 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.163 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.163 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.163 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.163 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.163 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.164 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.164 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.164 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.164 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.164 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.164 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.164 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.164 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.165 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.CompilerServices.VisualC.luekj4crl6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\w5clnjen17-{0}-luekj4crl6-luekj4crl6.gz' -2026-01-28 14:17:50.165 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.165 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.CompilerServices.VisualC.luekj4crl6.wasm - 200 6966 application/wasm 3.8503ms -2026-01-28 14:17:50.170 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Extensions.d5mymlulmr.wasm - null null -2026-01-28 14:17:50.171 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.171 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.171 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.171 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.171 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.171 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.171 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.171 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.171 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.172 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.172 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.172 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.172 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.172 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.172 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.172 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.172 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.172 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.173 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Extensions.d5mymlulmr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n6jkmkc1vw-{0}-d5mymlulmr-d5mymlulmr.gz' -2026-01-28 14:17:50.173 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.173 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Extensions.d5mymlulmr.wasm - 200 7478 application/wasm 2.7552ms -2026-01-28 14:17:50.176 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Handles.ih3cmfwxzd.wasm - null null -2026-01-28 14:17:50.177 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.177 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.177 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.177 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.177 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.178 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.178 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.178 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.178 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.178 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.178 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.178 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.178 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.178 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.178 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.178 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.178 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.178 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.178 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.178 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.178 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.179 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.179 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Handles.ih3cmfwxzd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2b53wjzpk1-{0}-ih3cmfwxzd-ih3cmfwxzd.gz' -2026-01-28 14:17:50.179 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.180 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Handles.ih3cmfwxzd.wasm - 200 5430 application/wasm 3.1446ms -2026-01-28 14:17:50.183 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.RuntimeInformation.nvwt5l6jkw.wasm - null null -2026-01-28 14:17:50.184 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.184 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.184 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.184 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.184 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.185 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.185 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.185 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.185 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.185 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.185 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.185 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.185 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.185 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.185 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.185 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.185 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.185 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.185 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.185 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.185 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.185 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.186 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.InteropServices.RuntimeInformation.nvwt5l6jkw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5rxlvv130r-{0}-nvwt5l6jkw-nvwt5l6jkw.gz' -2026-01-28 14:17:50.186 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.186 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.RuntimeInformation.nvwt5l6jkw.wasm - 200 4918 application/wasm 2.802ms -2026-01-28 14:17:50.189 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.0us88a4qml.wasm - null null -2026-01-28 14:17:50.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.190 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.191 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.191 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.191 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.191 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.191 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.191 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.191 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.191 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.191 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.192 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.InteropServices.0us88a4qml.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\t1e5pdefro-{0}-0us88a4qml-0us88a4qml.gz' -2026-01-28 14:17:50.192 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.192 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.0us88a4qml.wasm - 200 54587 application/wasm 3.0355ms -2026-01-28 14:17:50.196 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Intrinsics.bd7qf7pr2d.wasm - null null -2026-01-28 14:17:50.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.197 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.197 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.197 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.197 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.197 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.197 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.197 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.197 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.197 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.197 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.197 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.197 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.197 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.198 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.198 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Intrinsics.bd7qf7pr2d.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\q8hyt22w7t-{0}-bd7qf7pr2d-bd7qf7pr2d.gz' -2026-01-28 14:17:50.198 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.198 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Intrinsics.bd7qf7pr2d.wasm - 200 6966 application/wasm 2.6023ms -2026-01-28 14:17:50.202 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Loader.opo019ewpt.wasm - null null -2026-01-28 14:17:50.203 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.203 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.203 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.203 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.203 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.203 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.203 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.203 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.203 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.203 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.203 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.203 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.203 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.203 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.203 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.203 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.203 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.203 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.203 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.204 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.204 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.204 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.204 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Loader.opo019ewpt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lulkrkawwl-{0}-opo019ewpt-opo019ewpt.gz' -2026-01-28 14:17:50.204 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.204 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Loader.opo019ewpt.wasm - 200 5430 application/wasm 2.5089ms -2026-01-28 14:17:50.208 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Numerics.opgppvbdi6.wasm - null null -2026-01-28 14:17:50.208 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.208 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.208 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.208 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.208 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.209 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.209 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.209 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.209 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.209 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.209 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.209 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.209 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.209 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.209 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.209 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.209 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.209 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.209 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.209 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.209 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.209 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.211 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Numerics.opgppvbdi6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\15lzitxs0t-{0}-opgppvbdi6-opgppvbdi6.gz' -2026-01-28 14:17:50.211 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.211 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Numerics.opgppvbdi6.wasm - 200 134986 application/wasm 3.3476ms -2026-01-28 14:17:50.215 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Formatters.seonqd55ks.wasm - null null -2026-01-28 14:17:50.215 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.215 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.215 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.216 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.216 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.216 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.216 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.216 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.216 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.216 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.216 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.216 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.216 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.216 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.216 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.216 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.216 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.216 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.216 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.216 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.216 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.216 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.217 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.Formatters.seonqd55ks.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n0v9yl0jh6-{0}-seonqd55ks-seonqd55ks.gz' -2026-01-28 14:17:50.217 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.217 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Formatters.seonqd55ks.wasm - 200 55611 application/wasm 2.7481ms -2026-01-28 14:17:50.221 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Json.zn0mp7kdmp.wasm - null null -2026-01-28 14:17:50.222 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.222 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.222 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.222 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.222 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.222 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.222 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.222 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.222 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.222 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.222 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.222 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.222 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.222 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.222 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.222 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.222 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.222 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.222 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.222 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.222 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.223 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.223 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.Json.zn0mp7kdmp.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wh4w9dsljz-{0}-zn0mp7kdmp-zn0mp7kdmp.gz' -2026-01-28 14:17:50.223 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.223 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Json.zn0mp7kdmp.wasm - 200 5430 application/wasm 2.5353ms -2026-01-28 14:17:50.227 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Primitives.yueinvlj2j.wasm - null null -2026-01-28 14:17:50.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.228 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.229 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.229 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.229 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.229 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.229 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.229 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.229 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.229 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.229 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.229 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.230 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.Primitives.yueinvlj2j.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n1gdasegta-{0}-yueinvlj2j-yueinvlj2j.gz' -2026-01-28 14:17:50.230 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.230 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Primitives.yueinvlj2j.wasm - 200 13110 application/wasm 2.5901ms -2026-01-28 14:17:50.234 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Xml.v8gymdawqg.wasm - null null -2026-01-28 14:17:50.235 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.235 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.235 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.235 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.235 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.236 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.236 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.237 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.237 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.237 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.237 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.237 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.237 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.237 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.237 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.238 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.Xml.v8gymdawqg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j0zo8hxl7f-{0}-v8gymdawqg-v8gymdawqg.gz' -2026-01-28 14:17:50.238 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.238 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Xml.v8gymdawqg.wasm - 200 6454 application/wasm 4.1723ms -2026-01-28 14:17:50.242 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.gs7sg0u955.wasm - null null -2026-01-28 14:17:50.242 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.242 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.242 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.242 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.242 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.243 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.243 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.243 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.243 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.243 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.243 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.243 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.243 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.243 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.243 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.244 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.gs7sg0u955.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c9urnolypd-{0}-gs7sg0u955-gs7sg0u955.gz' -2026-01-28 14:17:50.244 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.244 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.gs7sg0u955.wasm - 200 6966 application/wasm 2.5605ms -2026-01-28 14:17:50.247 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.6bp69qbwkj.wasm - null null -2026-01-28 14:17:50.248 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.248 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.248 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.248 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.248 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.249 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.249 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.249 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.249 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.249 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.249 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.249 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.249 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.249 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.249 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.249 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.249 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.249 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.249 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.249 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.249 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.249 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.250 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.6bp69qbwkj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\35jd1dce24-{0}-6bp69qbwkj-6bp69qbwkj.gz' -2026-01-28 14:17:50.250 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.250 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.6bp69qbwkj.wasm - 200 34619 application/wasm 2.6305ms -2026-01-28 14:17:50.253 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.AccessControl.6rjkcrpkiw.wasm - null null -2026-01-28 14:17:50.254 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.254 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.254 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.254 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.254 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.254 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.254 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.254 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.254 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.255 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.255 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.255 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.255 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.255 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.255 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.255 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.255 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.255 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.256 +03:00 [INF] Sending file. Request path: '_framework/System.Security.AccessControl.6rjkcrpkiw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ad9pnuyu1n-{0}-6rjkcrpkiw-6rjkcrpkiw.gz' -2026-01-28 14:17:50.256 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.256 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.AccessControl.6rjkcrpkiw.wasm - 200 47931 application/wasm 2.7427ms -2026-01-28 14:17:50.259 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Claims.hk3ae85l96.wasm - null null -2026-01-28 14:17:50.260 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.260 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.260 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.260 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.260 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.260 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.260 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.260 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.260 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.260 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.260 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.260 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.260 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.260 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.261 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.261 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.261 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.261 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.261 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.261 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.261 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.261 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.262 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Claims.hk3ae85l96.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vbfh1norfg-{0}-hk3ae85l96-hk3ae85l96.gz' -2026-01-28 14:17:50.262 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.262 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Claims.hk3ae85l96.wasm - 200 44859 application/wasm 2.3873ms -2026-01-28 14:17:50.265 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Algorithms.whyyu092ah.wasm - null null -2026-01-28 14:17:50.266 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.266 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.266 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.266 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.266 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.267 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.267 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.267 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.267 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.267 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.267 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.267 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.267 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.267 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.267 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.267 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.267 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.267 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.267 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.267 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.267 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.267 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.268 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Algorithms.whyyu092ah.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lts4eaytip-{0}-whyyu092ah-whyyu092ah.gz' -2026-01-28 14:17:50.268 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.268 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Algorithms.whyyu092ah.wasm - 200 6966 application/wasm 2.3734ms -2026-01-28 14:17:50.271 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Cng.m6se2pcpu2.wasm - null null -2026-01-28 14:17:50.271 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.271 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.271 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.271 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.271 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.272 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.272 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.272 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.272 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.272 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.272 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.272 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.272 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.272 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.272 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.272 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.272 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.272 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.272 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.272 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.272 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.272 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.273 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Cng.m6se2pcpu2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fe4hdxl6xd-{0}-m6se2pcpu2-m6se2pcpu2.gz' -2026-01-28 14:17:50.273 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.273 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Cng.m6se2pcpu2.wasm - 200 5942 application/wasm 2.3562ms -2026-01-28 14:17:50.276 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Csp.hhoaoktf3s.wasm - null null -2026-01-28 14:17:50.276 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.276 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.276 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.276 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.276 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.277 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.277 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.277 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.277 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.277 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.277 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.277 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.277 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.277 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.277 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.278 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Csp.hhoaoktf3s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\e6c5growx5-{0}-hhoaoktf3s-hhoaoktf3s.gz' -2026-01-28 14:17:50.278 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.278 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Csp.hhoaoktf3s.wasm - 200 5942 application/wasm 2.2773ms -2026-01-28 14:17:50.281 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Encoding.52vboi33gw.wasm - null null -2026-01-28 14:17:50.282 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.282 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.282 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.282 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.282 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.283 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.283 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.283 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.283 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.283 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.283 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.283 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.283 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.283 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.283 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.283 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.283 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.283 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.283 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.283 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.283 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.283 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.284 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Encoding.52vboi33gw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9nnkgpt0mz-{0}-52vboi33gw-52vboi33gw.gz' -2026-01-28 14:17:50.284 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.284 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Encoding.52vboi33gw.wasm - 200 5430 application/wasm 2.6188ms -2026-01-28 14:17:50.287 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.OpenSsl.ml0tyz68i8.wasm - null null -2026-01-28 14:17:50.287 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.287 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.287 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.287 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.287 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.288 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.288 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.288 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.288 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.288 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.288 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.288 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.288 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.288 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.288 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.289 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.OpenSsl.ml0tyz68i8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ggd18ngby9-{0}-ml0tyz68i8-ml0tyz68i8.gz' -2026-01-28 14:17:50.289 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.289 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.OpenSsl.ml0tyz68i8.wasm - 200 5430 application/wasm 2.2199ms -2026-01-28 14:17:50.292 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Primitives.1dlu2dh7y8.wasm - null null -2026-01-28 14:17:50.292 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.292 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.292 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.292 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.292 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.293 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.293 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.293 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.293 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.293 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.293 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.293 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.293 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.293 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.293 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.293 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.293 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.293 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.293 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.293 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.293 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.293 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.294 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Primitives.1dlu2dh7y8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ibvt59z0m8-{0}-1dlu2dh7y8-1dlu2dh7y8.gz' -2026-01-28 14:17:50.294 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.294 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Primitives.1dlu2dh7y8.wasm - 200 5430 application/wasm 2.2183ms -2026-01-28 14:17:50.297 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.X509Certificates.6uh0qispd4.wasm - null null -2026-01-28 14:17:50.298 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.298 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.298 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.298 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.298 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.298 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.298 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.298 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.298 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.298 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.298 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.298 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.298 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.298 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.298 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.298 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.299 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.299 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.299 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.299 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.299 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.299 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.299 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.X509Certificates.6uh0qispd4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kv01n2x7di-{0}-6uh0qispd4-6uh0qispd4.gz' -2026-01-28 14:17:50.299 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.299 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.X509Certificates.6uh0qispd4.wasm - 200 6454 application/wasm 2.4555ms -2026-01-28 14:17:50.302 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.mbts90zzn6.wasm - null null -2026-01-28 14:17:50.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.303 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.303 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.303 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.303 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.303 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.303 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.303 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.304 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.304 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.304 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.304 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.304 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.304 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.304 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.304 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.307 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.mbts90zzn6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\najz3idkx9-{0}-mbts90zzn6-mbts90zzn6.gz' -2026-01-28 14:17:50.307 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.307 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.mbts90zzn6.wasm - 200 642453 application/wasm 5.088ms -2026-01-28 14:17:50.311 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Principal.Windows.rp57epmxji.wasm - null null -2026-01-28 14:17:50.311 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.312 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.312 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.312 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.312 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.312 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.312 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.312 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.312 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.312 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.312 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.312 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.312 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.312 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.312 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.312 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.312 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.312 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.312 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.312 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.312 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.312 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.313 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Principal.Windows.rp57epmxji.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6c4gn33xif-{0}-rp57epmxji-rp57epmxji.gz' -2026-01-28 14:17:50.313 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.313 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Principal.Windows.rp57epmxji.wasm - 200 27446 application/wasm 2.5289ms -2026-01-28 14:17:50.317 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Principal.0lplkfn42e.wasm - null null -2026-01-28 14:17:50.317 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.317 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.317 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.317 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.317 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.318 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.318 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.318 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.318 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.318 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.318 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.318 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.318 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.318 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.318 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.318 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.318 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.318 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.318 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.318 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.318 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.318 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.319 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Principal.0lplkfn42e.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bapixjfy1p-{0}-0lplkfn42e-0lplkfn42e.gz' -2026-01-28 14:17:50.319 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.319 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Principal.0lplkfn42e.wasm - 200 4918 application/wasm 2.1417ms -2026-01-28 14:17:50.323 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.SecureString.dhwpww24h2.wasm - null null -2026-01-28 14:17:50.323 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.323 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.324 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.324 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.324 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.324 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.324 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.324 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.324 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.324 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.324 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.324 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.324 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.324 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.325 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.325 +03:00 [INF] Sending file. Request path: '_framework/System.Security.SecureString.dhwpww24h2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\z7kpj97i3q-{0}-dhwpww24h2-dhwpww24h2.gz' -2026-01-28 14:17:50.325 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.325 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.SecureString.dhwpww24h2.wasm - 200 5430 application/wasm 2.6283ms -2026-01-28 14:17:50.328 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.l9hsxb0sdk.wasm - null null -2026-01-28 14:17:50.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.329 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.329 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.329 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.329 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.329 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.329 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.329 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.329 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.329 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.329 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.329 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.329 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.329 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.330 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.330 +03:00 [INF] Sending file. Request path: '_framework/System.Security.l9hsxb0sdk.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4w9pau8lca-{0}-l9hsxb0sdk-l9hsxb0sdk.gz' -2026-01-28 14:17:50.330 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.331 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.l9hsxb0sdk.wasm - 200 7990 application/wasm 2.5365ms -2026-01-28 14:17:50.333 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ServiceModel.Web.zcvkay2idv.wasm - null null -2026-01-28 14:17:50.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.334 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.334 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.334 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.334 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.334 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.334 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.335 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.335 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.335 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.335 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.335 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.335 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.335 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.335 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.336 +03:00 [INF] Sending file. Request path: '_framework/System.ServiceModel.Web.zcvkay2idv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wy542848av-{0}-zcvkay2idv-zcvkay2idv.gz' -2026-01-28 14:17:50.336 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.336 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ServiceModel.Web.zcvkay2idv.wasm - 200 6454 application/wasm 2.5206ms -2026-01-28 14:17:50.339 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ServiceProcess.x10kdcthsy.wasm - null null -2026-01-28 14:17:50.340 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.340 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.340 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.340 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.340 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.340 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.340 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.340 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.340 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.340 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.340 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.340 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.340 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.340 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.340 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.340 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.340 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.340 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.340 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.340 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.340 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.341 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.341 +03:00 [INF] Sending file. Request path: '_framework/System.ServiceProcess.x10kdcthsy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2yoiew09ss-{0}-x10kdcthsy-x10kdcthsy.gz' -2026-01-28 14:17:50.341 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.341 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ServiceProcess.x10kdcthsy.wasm - 200 5430 application/wasm 2.4613ms -2026-01-28 14:17:50.345 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.CodePages.36p8aommvy.wasm - null null -2026-01-28 14:17:50.345 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.346 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.346 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.346 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.346 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.346 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.346 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.346 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.346 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.346 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.346 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.346 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.346 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.346 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.346 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.346 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.346 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.346 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.346 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.346 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.346 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.347 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.351 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Encoding.CodePages.36p8aommvy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lrsfp7sbdw-{0}-36p8aommvy-36p8aommvy.gz' -2026-01-28 14:17:50.351 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.351 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.CodePages.36p8aommvy.wasm - 200 732580 application/wasm 6.5375ms -2026-01-28 14:17:50.357 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.Extensions.7s9z475qvj.wasm - null null -2026-01-28 14:17:50.357 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.357 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.357 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.357 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.357 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.358 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.358 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.358 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.358 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.358 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.358 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.358 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.358 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.358 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.358 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.359 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Encoding.Extensions.7s9z475qvj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ij3a13vyp7-{0}-7s9z475qvj-7s9z475qvj.gz' -2026-01-28 14:17:50.359 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.359 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.Extensions.7s9z475qvj.wasm - 200 5430 application/wasm 2.605ms -2026-01-28 14:17:50.363 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.ldc2rqh80i.wasm - null null -2026-01-28 14:17:50.364 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.364 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.364 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.364 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.364 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.365 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.365 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.365 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.365 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.365 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.365 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.365 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.365 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.365 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.365 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.365 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.365 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.365 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.365 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.365 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.365 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.365 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.366 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Encoding.ldc2rqh80i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\w1z5z4lpop-{0}-ldc2rqh80i-ldc2rqh80i.gz' -2026-01-28 14:17:50.366 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.366 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.ldc2rqh80i.wasm - 200 5430 application/wasm 2.6434ms -2026-01-28 14:17:50.369 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Encodings.Web.8dol48h5sw.wasm - null null -2026-01-28 14:17:50.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.370 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.370 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.370 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.370 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.370 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.370 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.372 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.372 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.372 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.372 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.372 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.372 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.372 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.372 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.374 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Encodings.Web.8dol48h5sw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b5ft8vnha4-{0}-8dol48h5sw-8dol48h5sw.gz' -2026-01-28 14:17:50.374 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.374 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Encodings.Web.8dol48h5sw.wasm - 200 55611 application/wasm 4.6681ms -2026-01-28 14:17:50.378 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Json.3vc5r851ef.wasm - null null -2026-01-28 14:17:50.379 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.379 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.379 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.379 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.379 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.379 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.380 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.380 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.380 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.380 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.380 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.380 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.380 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.380 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.380 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.380 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.380 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.380 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.380 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.380 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.380 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.380 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.384 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Json.3vc5r851ef.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\is1y7e0ewf-{0}-3vc5r851ef-3vc5r851ef.gz' -2026-01-28 14:17:50.384 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.384 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Json.3vc5r851ef.wasm - 200 638869 application/wasm 5.2193ms -2026-01-28 14:17:50.388 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.RegularExpressions.fa55zq7noc.wasm - null null -2026-01-28 14:17:50.388 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.388 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.389 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.389 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.389 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.389 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.389 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.389 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.389 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.389 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.389 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.391 +03:00 [INF] Sending file. Request path: '_framework/System.Text.RegularExpressions.fa55zq7noc.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b5e2kemd87-{0}-fa55zq7noc-fa55zq7noc.gz' -2026-01-28 14:17:50.391 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.391 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.RegularExpressions.fa55zq7noc.wasm - 200 374637 application/wasm 3.8979ms -2026-01-28 14:17:50.395 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.AccessControl.0jx6t23d4a.wasm - null null -2026-01-28 14:17:50.395 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.395 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.395 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.395 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.395 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.396 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.396 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.396 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.396 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.396 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.396 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.396 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.396 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.396 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.396 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.397 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.AccessControl.0jx6t23d4a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7hxeyq70th-{0}-0jx6t23d4a-0jx6t23d4a.gz' -2026-01-28 14:17:50.397 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.397 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.AccessControl.0jx6t23d4a.wasm - 200 23350 application/wasm 2.4711ms -2026-01-28 14:17:50.400 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Channels.5yls0a3tlo.wasm - null null -2026-01-28 14:17:50.401 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.401 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.401 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.401 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.401 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.401 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.401 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.402 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.402 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.402 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.402 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.402 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.402 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.402 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.402 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.402 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.402 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.402 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.402 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.402 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.402 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.402 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.403 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Channels.5yls0a3tlo.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\yfc45zghwv-{0}-5yls0a3tlo-5yls0a3tlo.gz' -2026-01-28 14:17:50.403 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.403 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Channels.5yls0a3tlo.wasm - 200 56123 application/wasm 2.8003ms -2026-01-28 14:17:50.406 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Overlapped.7fzdvfjpcj.wasm - null null -2026-01-28 14:17:50.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.407 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.407 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.407 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.407 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.407 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.407 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.408 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.408 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.408 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.408 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.408 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.408 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.408 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.408 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.408 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Overlapped.7fzdvfjpcj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1nn32vjcux-{0}-7fzdvfjpcj-7fzdvfjpcj.gz' -2026-01-28 14:17:50.408 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.409 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Overlapped.7fzdvfjpcj.wasm - 200 5430 application/wasm 2.2845ms -2026-01-28 14:17:50.411 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Dataflow.b1bop2hs5a.wasm - null null -2026-01-28 14:17:50.412 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.412 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.412 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.412 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.412 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.413 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.413 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.413 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.413 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.413 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.413 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.413 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.413 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.413 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.413 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.413 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.413 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.413 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.413 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.413 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.413 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.413 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.415 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Tasks.Dataflow.b1bop2hs5a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bygxarg1od-{0}-b1bop2hs5a-b1bop2hs5a.gz' -2026-01-28 14:17:50.415 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.415 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Dataflow.b1bop2hs5a.wasm - 200 175439 application/wasm 3.5032ms -2026-01-28 14:17:50.418 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Extensions.w1aib1cdwa.wasm - null null -2026-01-28 14:17:50.419 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.419 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.419 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.419 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.419 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.419 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.419 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.419 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.419 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.419 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.419 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.419 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.419 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.419 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.419 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.419 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.419 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.419 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.419 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.419 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.419 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.419 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.420 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Tasks.Extensions.w1aib1cdwa.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wzcconrhmx-{0}-w1aib1cdwa-w1aib1cdwa.gz' -2026-01-28 14:17:50.420 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.420 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Extensions.w1aib1cdwa.wasm - 200 5430 application/wasm 2.1928ms -2026-01-28 14:17:50.423 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Parallel.k09pj8k6wz.wasm - null null -2026-01-28 14:17:50.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.424 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.424 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.424 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.424 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.424 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.424 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.424 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.424 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.424 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.425 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.425 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Tasks.Parallel.k09pj8k6wz.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\eo71wakl9t-{0}-k09pj8k6wz-k09pj8k6wz.gz' -2026-01-28 14:17:50.425 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.425 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Parallel.k09pj8k6wz.wasm - 200 51003 application/wasm 2.5743ms -2026-01-28 14:17:50.430 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.ixxtp5uj8k.wasm - null null -2026-01-28 14:17:50.431 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.431 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.431 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.431 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.431 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.431 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.431 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.431 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.431 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.431 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.431 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.431 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.431 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.431 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.431 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.431 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.431 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.431 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.431 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.431 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.431 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.431 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.432 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Tasks.ixxtp5uj8k.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dmqlrfwu1b-{0}-ixxtp5uj8k-ixxtp5uj8k.gz' -2026-01-28 14:17:50.432 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.432 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.ixxtp5uj8k.wasm - 200 6454 application/wasm 2.3838ms -2026-01-28 14:17:50.435 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Thread.oikmdgabjt.wasm - null null -2026-01-28 14:17:50.435 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.436 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.436 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.436 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.436 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.436 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.436 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.436 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.436 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.436 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.436 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.436 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.436 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.436 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.436 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.436 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.436 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.436 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.436 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.436 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.436 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.437 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.437 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Thread.oikmdgabjt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v09yqluov3-{0}-oikmdgabjt-oikmdgabjt.gz' -2026-01-28 14:17:50.437 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.437 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Thread.oikmdgabjt.wasm - 200 5430 application/wasm 2.3139ms -2026-01-28 14:17:50.440 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.ThreadPool.szctd5y8bn.wasm - null null -2026-01-28 14:17:50.441 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.441 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.441 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.441 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.441 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.441 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.441 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.441 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.441 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.441 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.441 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.441 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.441 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.441 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.442 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.442 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.442 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.442 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.442 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.442 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.442 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.442 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.443 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.ThreadPool.szctd5y8bn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jfyqp856kd-{0}-szctd5y8bn-szctd5y8bn.gz' -2026-01-28 14:17:50.443 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.443 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.ThreadPool.szctd5y8bn.wasm - 200 5430 application/wasm 2.6766ms -2026-01-28 14:17:50.447 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Timer.k8rrsskw5o.wasm - null null -2026-01-28 14:17:50.447 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.447 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.448 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.448 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.448 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.448 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.448 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.448 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.448 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.448 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.448 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.448 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.448 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.448 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.448 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.448 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.449 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Timer.k8rrsskw5o.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kw1ofqxbky-{0}-k8rrsskw5o-k8rrsskw5o.gz' -2026-01-28 14:17:50.449 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.449 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Timer.k8rrsskw5o.wasm - 200 4918 application/wasm 2.4919ms -2026-01-28 14:17:50.452 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.s2hrn953g9.wasm - null null -2026-01-28 14:17:50.452 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.453 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.453 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.453 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.453 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.453 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.453 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.453 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.453 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.453 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.453 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.453 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.453 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.453 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.453 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.454 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.s2hrn953g9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6obifrcy4d-{0}-s2hrn953g9-s2hrn953g9.gz' -2026-01-28 14:17:50.454 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.454 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.s2hrn953g9.wasm - 200 34619 application/wasm 2.3952ms -2026-01-28 14:17:50.458 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Transactions.Local.nufsb5pyrr.wasm - null null -2026-01-28 14:17:50.458 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.458 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.459 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.459 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.459 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.459 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.459 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.459 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.459 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.459 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.459 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.459 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.459 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.459 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.459 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.459 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.459 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.459 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.459 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.459 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.459 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.459 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.461 +03:00 [INF] Sending file. Request path: '_framework/System.Transactions.Local.nufsb5pyrr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vnl4qu3in7-{0}-nufsb5pyrr-nufsb5pyrr.gz' -2026-01-28 14:17:50.461 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.461 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Transactions.Local.nufsb5pyrr.wasm - 200 165711 application/wasm 3.6775ms -2026-01-28 14:17:50.464 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Transactions.3ezo8twol7.wasm - null null -2026-01-28 14:17:50.465 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.465 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.465 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.465 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.465 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.465 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.465 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.465 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.465 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.465 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.465 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.465 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.465 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.465 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.466 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.466 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.466 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.466 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.466 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.466 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.466 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.466 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.467 +03:00 [INF] Sending file. Request path: '_framework/System.Transactions.3ezo8twol7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v8zohqruou-{0}-3ezo8twol7-3ezo8twol7.gz' -2026-01-28 14:17:50.467 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.467 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Transactions.3ezo8twol7.wasm - 200 6454 application/wasm 2.5748ms -2026-01-28 14:17:50.469 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ValueTuple.lle7yi2fzv.wasm - null null -2026-01-28 14:17:50.470 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.470 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.470 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.470 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.470 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.470 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.470 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.470 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.470 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.470 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.470 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.470 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.470 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.471 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.471 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.471 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.471 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.471 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.471 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.471 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.471 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.471 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.472 +03:00 [INF] Sending file. Request path: '_framework/System.ValueTuple.lle7yi2fzv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\io39vdvq9n-{0}-lle7yi2fzv-lle7yi2fzv.gz' -2026-01-28 14:17:50.472 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.472 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ValueTuple.lle7yi2fzv.wasm - 200 5430 application/wasm 2.2759ms -2026-01-28 14:17:50.474 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Web.HttpUtility.u5rdfpwou6.wasm - null null -2026-01-28 14:17:50.475 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.475 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.475 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.475 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.475 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.475 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.475 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.475 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.475 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.475 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.475 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.475 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.475 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.475 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.476 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.476 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.476 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.476 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.476 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.476 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.476 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.476 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.476 +03:00 [INF] Sending file. Request path: '_framework/System.Web.HttpUtility.u5rdfpwou6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rn4buhtgqs-{0}-u5rdfpwou6-u5rdfpwou6.gz' -2026-01-28 14:17:50.476 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.477 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Web.HttpUtility.u5rdfpwou6.wasm - 200 19766 application/wasm 2.3295ms -2026-01-28 14:17:50.480 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Web.wygikf6la5.wasm - null null -2026-01-28 14:17:50.480 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.481 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.481 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.481 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.481 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.481 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.481 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.481 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.481 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.481 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.481 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.481 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.481 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.481 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.481 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.481 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.481 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.481 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.481 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.481 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.481 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.482 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.482 +03:00 [INF] Sending file. Request path: '_framework/System.Web.wygikf6la5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ru9f3t39bb-{0}-wygikf6la5-wygikf6la5.gz' -2026-01-28 14:17:50.482 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.482 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Web.wygikf6la5.wasm - 200 4918 application/wasm 2.7509ms -2026-01-28 14:17:50.485 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Windows.axtn86mzz6.wasm - null null -2026-01-28 14:17:50.486 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.486 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.486 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.486 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.486 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.486 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.486 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.486 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.486 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.486 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.486 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.486 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.486 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.486 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.487 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.487 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.487 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.487 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.487 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.487 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.487 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.487 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.488 +03:00 [INF] Sending file. Request path: '_framework/System.Windows.axtn86mzz6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1my90r3byi-{0}-axtn86mzz6-axtn86mzz6.gz' -2026-01-28 14:17:50.488 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.488 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Windows.axtn86mzz6.wasm - 200 5430 application/wasm 2.4717ms -2026-01-28 14:17:50.491 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.Linq.j4b5ce3025.wasm - null null -2026-01-28 14:17:50.492 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.492 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.492 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.492 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.492 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.493 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.493 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.493 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.493 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.493 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.493 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.493 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.493 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.493 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.493 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.493 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.493 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.493 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.493 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.493 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.493 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.493 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.494 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.Linq.j4b5ce3025.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2m6czvvsuo-{0}-j4b5ce3025-j4b5ce3025.gz' -2026-01-28 14:17:50.494 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.494 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.Linq.j4b5ce3025.wasm - 200 5430 application/wasm 3.0725ms -2026-01-28 14:17:50.497 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.ReaderWriter.60z52rxro3.wasm - null null -2026-01-28 14:17:50.498 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.498 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.498 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.498 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.498 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.498 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.498 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.498 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.498 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.498 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.498 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.498 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.498 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.498 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.498 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.498 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.498 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.498 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.498 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.498 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.499 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.499 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.499 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.ReaderWriter.60z52rxro3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rg4isli5jp-{0}-60z52rxro3-60z52rxro3.gz' -2026-01-28 14:17:50.499 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.499 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.ReaderWriter.60z52rxro3.wasm - 200 11574 application/wasm 2.4559ms -2026-01-28 14:17:50.502 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.Serialization.pm5yw3aolk.wasm - null null -2026-01-28 14:17:50.503 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.503 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.503 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.503 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.503 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.503 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.503 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.503 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.503 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.503 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.503 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.503 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.503 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.503 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.504 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.504 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.504 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.504 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.504 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.504 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.504 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.504 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.505 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.Serialization.pm5yw3aolk.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\o41cy5pfaz-{0}-pm5yw3aolk-pm5yw3aolk.gz' -2026-01-28 14:17:50.505 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.505 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.Serialization.pm5yw3aolk.wasm - 200 5942 application/wasm 2.5145ms -2026-01-28 14:17:50.507 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XDocument.b4xtw4lbmx.wasm - null null -2026-01-28 14:17:50.508 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.508 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.508 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.508 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.508 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.509 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.509 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.509 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.509 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.509 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.509 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.509 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.509 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.509 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.509 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.510 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XDocument.b4xtw4lbmx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\veh6k128ug-{0}-b4xtw4lbmx-b4xtw4lbmx.gz' -2026-01-28 14:17:50.510 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.510 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XDocument.b4xtw4lbmx.wasm - 200 5430 application/wasm 2.4188ms -2026-01-28 14:17:50.513 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XPath.XDocument.p6s7bmw3ej.wasm - null null -2026-01-28 14:17:50.513 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.513 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.513 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.513 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.513 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.514 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.514 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.514 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.514 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.514 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.514 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.514 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.514 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.514 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.514 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.514 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.514 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.514 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.514 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.514 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.514 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.514 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.515 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XPath.XDocument.p6s7bmw3ej.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dp2x1o3mj5-{0}-p6s7bmw3ej-p6s7bmw3ej.gz' -2026-01-28 14:17:50.515 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.515 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XPath.XDocument.p6s7bmw3ej.wasm - 200 5430 application/wasm 2.1059ms -2026-01-28 14:17:50.518 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XPath.egozus3d9z.wasm - null null -2026-01-28 14:17:50.518 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.518 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.518 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.519 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.519 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.519 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.519 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.519 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.519 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.519 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.519 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.519 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.519 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.519 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.520 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.520 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XPath.egozus3d9z.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6kx3a3nw65-{0}-egozus3d9z-egozus3d9z.gz' -2026-01-28 14:17:50.520 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.520 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XPath.egozus3d9z.wasm - 200 5430 application/wasm 2.837ms -2026-01-28 14:17:50.523 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XmlDocument.771pf23z5h.wasm - null null -2026-01-28 14:17:50.524 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.524 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.524 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.524 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.524 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.524 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.524 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.524 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.525 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.525 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.525 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.525 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.525 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.525 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.525 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.525 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.525 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.525 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.525 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.525 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.525 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.525 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.526 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XmlDocument.771pf23z5h.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mit9lp1cls-{0}-771pf23z5h-771pf23z5h.gz' -2026-01-28 14:17:50.526 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.526 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XmlDocument.771pf23z5h.wasm - 200 5430 application/wasm 2.526ms -2026-01-28 14:17:50.529 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XmlSerializer.h0uogtkh03.wasm - null null -2026-01-28 14:17:50.530 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.530 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.530 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.530 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.530 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.531 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.531 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.531 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.531 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.531 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.531 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.531 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.531 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.531 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.531 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.531 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.531 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.531 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.531 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.531 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.531 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.531 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.532 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XmlSerializer.h0uogtkh03.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6ubynsl46b-{0}-h0uogtkh03-h0uogtkh03.gz' -2026-01-28 14:17:50.532 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.532 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XmlSerializer.h0uogtkh03.wasm - 200 7478 application/wasm 2.8731ms -2026-01-28 14:17:50.535 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.95nan2l20b.wasm - null null -2026-01-28 14:17:50.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.536 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.536 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.537 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.537 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.537 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.537 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.537 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.537 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.537 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.537 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.538 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.95nan2l20b.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pcooe0k5kk-{0}-95nan2l20b-95nan2l20b.gz' -2026-01-28 14:17:50.538 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.538 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.95nan2l20b.wasm - 200 13110 application/wasm 2.7059ms -2026-01-28 14:17:50.541 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.au65xu8d95.wasm - null null -2026-01-28 14:17:50.541 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.541 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.541 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.541 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.541 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.541 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.542 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.542 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.542 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.542 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.542 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.542 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.542 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.542 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.542 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.542 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.542 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.542 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.542 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.542 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.542 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.542 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.543 +03:00 [INF] Sending file. Request path: '_framework/System.au65xu8d95.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\um28rmltyb-{0}-au65xu8d95-au65xu8d95.gz' -2026-01-28 14:17:50.543 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.543 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.au65xu8d95.wasm - 200 39739 application/wasm 2.3547ms -2026-01-28 14:17:50.546 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/WindowsBase.mi3hkxthj8.wasm - null null -2026-01-28 14:17:50.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.547 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.547 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.548 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.548 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.548 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.548 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.548 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.548 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.548 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.548 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.549 +03:00 [INF] Sending file. Request path: '_framework/WindowsBase.mi3hkxthj8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8syd5uq41h-{0}-mi3hkxthj8-mi3hkxthj8.gz' -2026-01-28 14:17:50.549 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.549 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/WindowsBase.mi3hkxthj8.wasm - 200 5942 application/wasm 2.3945ms -2026-01-28 14:17:50.552 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/mscorlib.uifnjyorgo.wasm - null null -2026-01-28 14:17:50.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.552 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.552 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.552 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.552 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.553 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.553 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.553 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.553 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.553 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.553 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.553 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.553 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.553 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.553 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.553 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.553 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.553 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.553 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.553 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.553 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.553 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.554 +03:00 [INF] Sending file. Request path: '_framework/mscorlib.uifnjyorgo.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xpihquz2r5-{0}-uifnjyorgo-uifnjyorgo.gz' -2026-01-28 14:17:50.554 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.554 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/mscorlib.uifnjyorgo.wasm - 200 49467 application/wasm 2.436ms -2026-01-28 14:17:50.558 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/netstandard.qvqeanc7qr.wasm - null null -2026-01-28 14:17:50.558 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.558 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.558 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.558 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.559 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.559 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.559 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.559 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.559 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.559 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.559 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.559 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.559 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.559 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.559 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.559 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.559 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.559 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.559 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.559 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.559 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.559 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.561 +03:00 [INF] Sending file. Request path: '_framework/netstandard.qvqeanc7qr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ciukkw19kg-{0}-qvqeanc7qr-qvqeanc7qr.gz' -2026-01-28 14:17:50.561 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.561 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/netstandard.qvqeanc7qr.wasm - 200 90432 application/wasm 3.0812ms -2026-01-28 14:17:50.564 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Application.Contracts.uq8ziq260z.wasm - null null -2026-01-28 14:17:50.565 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.565 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.565 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.565 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.565 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.565 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.565 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.565 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.565 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.565 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.565 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.565 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.565 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.565 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.565 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.565 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.565 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.565 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.565 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.565 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.565 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.566 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.566 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Application.Contracts.uq8ziq260z.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0lm5ebgqof-{0}-uq8ziq260z-uq8ziq260z.gz' -2026-01-28 14:17:50.566 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.566 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Application.Contracts.uq8ziq260z.wasm - 200 8502 application/wasm 2.5415ms -2026-01-28 14:17:50.569 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Domain.Shared.a1r7gug13a.wasm - null null -2026-01-28 14:17:50.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.570 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.571 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.571 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.571 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.571 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.571 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.571 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.571 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.571 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.571 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.572 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Domain.Shared.a1r7gug13a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\qwx72m6fc1-{0}-a1r7gug13a-a1r7gug13a.gz' -2026-01-28 14:17:50.572 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.572 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Domain.Shared.a1r7gug13a.wasm - 200 23350 application/wasm 2.4864ms -2026-01-28 14:17:50.576 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.HttpApi.Client.3wngu4nxgr.wasm - null null -2026-01-28 14:17:50.576 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.576 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.576 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.576 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.576 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.576 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.577 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.577 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.577 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.577 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.577 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.577 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.577 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.577 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.577 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.578 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.HttpApi.Client.3wngu4nxgr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\scloparoeu-{0}-3wngu4nxgr-3wngu4nxgr.gz' -2026-01-28 14:17:50.578 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.578 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.HttpApi.Client.3wngu4nxgr.wasm - 200 7990 application/wasm 2.2625ms -2026-01-28 14:17:50.581 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.Application.Contracts.k8182bqsqt.wasm - null null -2026-01-28 14:17:50.581 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.581 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.581 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.581 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.581 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.582 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.582 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.582 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.582 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.582 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.582 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.582 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.582 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.582 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.582 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.582 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.582 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.582 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.582 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.582 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.582 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.582 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.584 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Account.Application.Contracts.k8182bqsqt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lj6k2ntok7-{0}-k8182bqsqt-k8182bqsqt.gz' -2026-01-28 14:17:50.584 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.584 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.Application.Contracts.k8182bqsqt.wasm - 200 182095 application/wasm 3.3973ms -2026-01-28 14:17:50.587 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.HttpApi.Client.tyjyiionpp.wasm - null null -2026-01-28 14:17:50.588 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.588 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.588 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.588 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.588 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.588 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.588 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.588 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.588 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.588 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.588 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.588 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.588 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.588 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.588 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.589 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.589 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.589 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.589 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.589 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Account.HttpApi.Client.tyjyiionpp.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\am5qy7si0d-{0}-tyjyiionpp-tyjyiionpp.gz' -2026-01-28 14:17:50.589 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.589 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.HttpApi.Client.tyjyiionpp.wasm - 200 36667 application/wasm 2.2366ms -2026-01-28 14:17:50.593 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.w8xtoi4w2w.wasm - null null -2026-01-28 14:17:50.593 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.594 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.594 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.594 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.594 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.594 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.594 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.594 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.594 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.594 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.594 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.594 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.594 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.594 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.594 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.594 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.594 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.594 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.594 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.594 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.594 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.594 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.595 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.w8xtoi4w2w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7rtjnlhdr6-{0}-w8xtoi4w2w-w8xtoi4w2w.gz' -2026-01-28 14:17:50.595 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.595 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.w8xtoi4w2w.wasm - 200 23350 application/wasm 2.2225ms -2026-01-28 14:17:50.599 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.tfobi4ljh9.wasm - null null -2026-01-28 14:17:50.599 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.599 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.600 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.600 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.600 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.600 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.600 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.600 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.600 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.600 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.600 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.600 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.600 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.600 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.600 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.600 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.600 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.600 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.600 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.600 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.600 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.600 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.601 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.tfobi4ljh9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dtw2jvq9ko-{0}-tfobi4ljh9-tfobi4ljh9.gz' -2026-01-28 14:17:50.601 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.601 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.tfobi4ljh9.wasm - 200 49979 application/wasm 2.3379ms -2026-01-28 14:17:50.604 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.v2vsbafrsu.wasm - null null -2026-01-28 14:17:50.605 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.605 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.605 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.605 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.605 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.605 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.605 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.605 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.605 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.605 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.605 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.605 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.605 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.605 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.605 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.605 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.605 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.605 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.605 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.605 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.605 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.606 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.606 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.v2vsbafrsu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\314s0gg35t-{0}-v2vsbafrsu-v2vsbafrsu.gz' -2026-01-28 14:17:50.606 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.606 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.v2vsbafrsu.wasm - 200 31030 application/wasm 2.1672ms -2026-01-28 14:17:50.609 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.g96eihnnrd.wasm - null null -2026-01-28 14:17:50.610 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.610 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.610 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.610 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.610 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.610 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.610 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.610 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.610 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.610 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.610 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.610 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.610 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.610 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.611 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.611 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.611 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.611 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.611 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.611 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.611 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.611 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.611 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.g96eihnnrd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xik7tubv32-{0}-g96eihnnrd-g96eihnnrd.gz' -2026-01-28 14:17:50.611 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.612 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.g96eihnnrd.wasm - 200 57659 application/wasm 2.2318ms -2026-01-28 14:17:50.615 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.ysnekz4aln.wasm - null null -2026-01-28 14:17:50.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.616 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.616 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.616 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.616 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.616 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.616 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.616 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.617 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.617 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.617 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.617 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.617 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.617 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.617 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.617 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.618 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.ysnekz4aln.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\29y4ttn7p6-{0}-ysnekz4aln-ysnekz4aln.gz' -2026-01-28 14:17:50.618 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.618 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.ysnekz4aln.wasm - 200 56635 application/wasm 2.7248ms -2026-01-28 14:17:50.621 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.9bxiazim84.wasm - null null -2026-01-28 14:17:50.622 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.622 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.622 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.622 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.622 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.622 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.622 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.622 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.622 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.622 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.622 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.622 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.622 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.622 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.622 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.622 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.622 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.622 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.623 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.623 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.623 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.623 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.623 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.9bxiazim84.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0h6kud88pg-{0}-9bxiazim84-9bxiazim84.gz' -2026-01-28 14:17:50.623 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.623 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.9bxiazim84.wasm - 200 6966 application/wasm 2.2633ms -2026-01-28 14:17:50.626 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.tlnm5w6vzv.wasm - null null -2026-01-28 14:17:50.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.627 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.627 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.627 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.627 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.627 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.627 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.627 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.627 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.628 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.628 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.628 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.628 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.628 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.628 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.628 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.tlnm5w6vzv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\79f9hg2kci-{0}-tlnm5w6vzv-tlnm5w6vzv.gz' -2026-01-28 14:17:50.628 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.628 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.tlnm5w6vzv.wasm - 200 29494 application/wasm 2.478ms -2026-01-28 14:17:50.632 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.vwbrjkm58i.wasm - null null -2026-01-28 14:17:50.632 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.632 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.633 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.633 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.633 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.633 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.633 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.633 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.633 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.633 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.633 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.633 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.633 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.633 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.633 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.633 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.633 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.633 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.633 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.633 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.633 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.633 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.634 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.vwbrjkm58i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v23sh1qt8y-{0}-vwbrjkm58i-vwbrjkm58i.gz' -2026-01-28 14:17:50.634 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.634 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.vwbrjkm58i.wasm - 200 9526 application/wasm 2.1452ms -2026-01-28 14:17:50.637 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.w3letp91lq.wasm - null null -2026-01-28 14:17:50.637 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.637 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.637 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.637 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.637 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.638 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.638 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.638 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.638 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.638 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.638 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.638 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.638 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.638 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.638 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.638 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.638 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.638 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.638 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.638 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.638 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.638 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.639 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.w3letp91lq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5xzpephnhm-{0}-w3letp91lq-w3letp91lq.gz' -2026-01-28 14:17:50.639 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.639 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.w3letp91lq.wasm - 200 9526 application/wasm 2.3116ms -2026-01-28 14:17:50.642 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.3jjfqno7lg.wasm - null null -2026-01-28 14:17:50.642 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.642 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.642 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.642 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.642 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.642 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.643 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.643 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.643 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.643 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.643 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.643 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.643 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.643 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.643 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.644 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.3jjfqno7lg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wywr70k095-{0}-3jjfqno7lg-3jjfqno7lg.gz' -2026-01-28 14:17:50.644 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.644 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.3jjfqno7lg.wasm - 200 53051 application/wasm 2.2146ms -2026-01-28 14:17:50.647 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Contracts.syr4dyw7am.wasm - null null -2026-01-28 14:17:50.648 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.648 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.648 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.648 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.648 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.648 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.648 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.648 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.648 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.648 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.648 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.648 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.648 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.648 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.648 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.648 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.648 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.649 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.649 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.649 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.649 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.649 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.649 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.Contracts.syr4dyw7am.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ch1l6yg9xg-{0}-syr4dyw7am-syr4dyw7am.gz' -2026-01-28 14:17:50.649 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.649 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Contracts.syr4dyw7am.wasm - 200 32054 application/wasm 2.2392ms -2026-01-28 14:17:50.653 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.bu7idw18jp.wasm - null null -2026-01-28 14:17:50.653 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.653 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.653 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.653 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.653 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.654 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.654 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.654 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.654 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.654 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.654 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.654 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.654 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.654 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.654 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.654 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.654 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.654 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.654 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.654 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.654 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.654 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.655 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.bu7idw18jp.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6qc21ahd0h-{0}-bu7idw18jp-bu7idw18jp.gz' -2026-01-28 14:17:50.655 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.655 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.bu7idw18jp.wasm - 200 24886 application/wasm 2.3084ms -2026-01-28 14:17:50.658 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.Contracts.ao19uqfxk1.wasm - null null -2026-01-28 14:17:50.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.659 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.659 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.659 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.659 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.659 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.659 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.659 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.659 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.659 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.659 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.659 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.659 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.659 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.660 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.660 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Auditing.Contracts.ao19uqfxk1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gvrtk0uenw-{0}-ao19uqfxk1-ao19uqfxk1.gz' -2026-01-28 14:17:50.660 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.660 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.Contracts.ao19uqfxk1.wasm - 200 6454 application/wasm 2.5445ms -2026-01-28 14:17:50.663 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.96yxua01gc.wasm - null null -2026-01-28 14:17:50.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.664 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.664 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.664 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.664 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.664 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.664 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.665 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.665 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.665 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.665 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.665 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.665 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.665 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.665 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.666 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Auditing.96yxua01gc.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0bpurwxf4x-{0}-96yxua01gc-96yxua01gc.gz' -2026-01-28 14:17:50.666 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.666 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.96yxua01gc.wasm - 200 51003 application/wasm 2.602ms -2026-01-28 14:17:50.669 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AuditLogging.Domain.Shared.dftqdjnknx.wasm - null null -2026-01-28 14:17:50.670 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.670 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.670 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.670 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.670 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.670 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.670 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.670 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.670 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.670 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.670 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.670 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.670 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.670 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.671 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.671 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.671 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.671 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.671 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.671 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.671 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.671 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.672 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AuditLogging.Domain.Shared.dftqdjnknx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\een9hz6ik5-{0}-dftqdjnknx-dftqdjnknx.gz' -2026-01-28 14:17:50.672 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.672 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AuditLogging.Domain.Shared.dftqdjnknx.wasm - 200 158026 application/wasm 3.3554ms -2026-01-28 14:17:50.675 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.Abstractions.afyzjlgpmi.wasm - null null -2026-01-28 14:17:50.676 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.676 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.676 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.676 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.676 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.676 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.676 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.676 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.676 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.676 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.676 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.676 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.677 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.677 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.677 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.677 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.677 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.677 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.677 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.677 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.677 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.677 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.678 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Authorization.Abstractions.afyzjlgpmi.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mzg3hwxb9z-{0}-afyzjlgpmi-afyzjlgpmi.gz' -2026-01-28 14:17:50.678 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.678 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.Abstractions.afyzjlgpmi.wasm - 200 36155 application/wasm 2.2614ms -2026-01-28 14:17:50.681 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.af69ln5ic4.wasm - null null -2026-01-28 14:17:50.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.682 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.682 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.682 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.682 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.682 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.683 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.683 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.683 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.683 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.683 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.683 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.683 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.683 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.683 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.683 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.683 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.683 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.683 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.683 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.683 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.683 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.684 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Authorization.af69ln5ic4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kmfgdovl74-{0}-af69ln5ic4-af69ln5ic4.gz' -2026-01-28 14:17:50.684 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.685 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.af69ln5ic4.wasm - 200 134986 application/wasm 3.3139ms -2026-01-28 14:17:50.688 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.757dvxj4ke.wasm - null null -2026-01-28 14:17:50.688 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.688 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.689 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.689 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.689 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.689 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.689 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.689 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.689 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.689 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.689 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.689 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.689 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.689 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.689 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.689 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.689 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.689 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.689 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.689 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.689 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.689 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.690 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Autofac.757dvxj4ke.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dnh2928fpn-{0}-757dvxj4ke-757dvxj4ke.gz' -2026-01-28 14:17:50.690 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.690 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.757dvxj4ke.wasm - 200 20790 application/wasm 2.3922ms -2026-01-28 14:17:50.694 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.WebAssembly.67r46affwj.wasm - null null -2026-01-28 14:17:50.694 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.694 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.694 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.694 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.694 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.694 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.695 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.695 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.695 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.695 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.695 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.695 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.695 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.695 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.695 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.695 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.695 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.695 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.695 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.695 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.695 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.695 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.696 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Autofac.WebAssembly.67r46affwj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fy88n7o3re-{0}-67r46affwj-67r46affwj.gz' -2026-01-28 14:17:50.696 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.696 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.WebAssembly.67r46affwj.wasm - 200 6454 application/wasm 2.2744ms -2026-01-28 14:17:50.699 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundJobs.Domain.Shared.1ndljj9fe1.wasm - null null -2026-01-28 14:17:50.699 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.699 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.699 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.699 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.699 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.700 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.700 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.700 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.700 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.700 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.700 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.700 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.700 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.700 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.700 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.700 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.701 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BackgroundJobs.Domain.Shared.1ndljj9fe1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\it8pbr6hs7-{0}-1ndljj9fe1-1ndljj9fe1.gz' -2026-01-28 14:17:50.701 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.701 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundJobs.Domain.Shared.1ndljj9fe1.wasm - 200 5430 application/wasm 2.2067ms -2026-01-28 14:17:50.704 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundWorkers.2p6fuqijf3.wasm - null null -2026-01-28 14:17:50.704 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.704 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.704 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.704 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.704 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.705 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.705 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.705 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.705 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.705 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.705 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.705 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.705 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.705 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.705 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.705 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.705 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.705 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.705 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.705 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.705 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.705 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.706 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BackgroundWorkers.2p6fuqijf3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tnta0aqntp-{0}-2p6fuqijf3-2p6fuqijf3.gz' -2026-01-28 14:17:50.706 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.706 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundWorkers.2p6fuqijf3.wasm - 200 25398 application/wasm 2.331ms -2026-01-28 14:17:50.709 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Caching.815cqd6cda.wasm - null null -2026-01-28 14:17:50.710 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.710 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.710 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.710 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.710 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.710 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.710 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.710 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.710 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.710 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.710 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.710 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.710 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.710 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.711 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.711 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.711 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.711 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.711 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.711 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.711 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.711 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.712 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Caching.815cqd6cda.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5pr3wxuvo5-{0}-815cqd6cda-815cqd6cda.gz' -2026-01-28 14:17:50.712 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.712 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Caching.815cqd6cda.wasm - 200 85824 application/wasm 2.5814ms -2026-01-28 14:17:50.715 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Castle.Core.h40m7fuufn.wasm - null null -2026-01-28 14:17:50.716 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.716 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.716 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.716 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.716 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.716 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.716 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.716 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.716 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.716 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.716 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.717 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.717 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.717 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.717 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.717 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.717 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.717 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.717 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.717 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.717 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.717 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.718 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Castle.Core.h40m7fuufn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\f5a40y0td5-{0}-h40m7fuufn-h40m7fuufn.gz' -2026-01-28 14:17:50.718 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.718 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Castle.Core.h40m7fuufn.wasm - 200 11574 application/wasm 2.5226ms -2026-01-28 14:17:50.721 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Core.4xaaeuhx7w.wasm - null null -2026-01-28 14:17:50.721 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.721 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.722 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.722 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.722 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.722 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.722 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.722 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.722 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.722 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.722 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.722 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.722 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.722 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.722 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.722 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.722 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.722 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.722 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.722 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.722 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.723 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.724 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Core.4xaaeuhx7w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\klnckblff1-{0}-4xaaeuhx7w-4xaaeuhx7w.gz' -2026-01-28 14:17:50.724 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.724 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Core.4xaaeuhx7w.wasm - 200 311139 application/wasm 3.8425ms -2026-01-28 14:17:50.728 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Data.xk5nl74k60.wasm - null null -2026-01-28 14:17:50.728 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.728 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.728 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.728 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.728 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.729 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.729 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.729 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.729 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.729 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.729 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.729 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.729 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.729 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.729 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.729 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.730 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Data.xk5nl74k60.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\g2etzqh2n8-{0}-xk5nl74k60-xk5nl74k60.gz' -2026-01-28 14:17:50.730 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.730 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Data.xk5nl74k60.wasm - 200 23862 application/wasm 2.2144ms -2026-01-28 14:17:50.733 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Ddd.Application.Contracts.1kpejy4fde.wasm - null null -2026-01-28 14:17:50.734 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.734 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.734 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.734 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.734 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.734 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.734 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.734 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.735 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.735 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.735 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.735 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.735 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.735 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.735 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.735 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.735 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.735 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.735 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.735 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.735 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.735 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.736 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Ddd.Application.Contracts.1kpejy4fde.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bq3ub7csyu-{0}-1kpejy4fde-1kpejy4fde.gz' -2026-01-28 14:17:50.736 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.736 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Ddd.Application.Contracts.1kpejy4fde.wasm - 200 37691 application/wasm 2.6912ms -2026-01-28 14:17:50.739 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.DistributedLocking.Abstractions.q8g86pl4ti.wasm - null null -2026-01-28 14:17:50.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.740 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.740 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.740 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.740 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.740 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.740 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.741 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.741 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.741 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.741 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.741 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.741 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.741 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.741 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.742 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.DistributedLocking.Abstractions.q8g86pl4ti.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\qe2ghijxui-{0}-q8g86pl4ti-q8g86pl4ti.gz' -2026-01-28 14:17:50.742 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.742 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.DistributedLocking.Abstractions.q8g86pl4ti.wasm - 200 7990 application/wasm 2.4047ms -2026-01-28 14:17:50.744 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.Abstractions.lbrqgul2g3.wasm - null null -2026-01-28 14:17:50.745 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.745 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.745 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.745 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.745 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.746 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.746 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.746 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.746 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.746 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.746 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.746 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.746 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.746 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.746 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.746 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.746 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.746 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.746 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.746 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.746 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.746 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.747 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.EventBus.Abstractions.lbrqgul2g3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\30q391t77y-{0}-lbrqgul2g3-lbrqgul2g3.gz' -2026-01-28 14:17:50.747 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.747 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.Abstractions.lbrqgul2g3.wasm - 200 20278 application/wasm 2.4755ms -2026-01-28 14:17:50.750 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.4naok44xvm.wasm - null null -2026-01-28 14:17:50.751 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.751 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.751 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.751 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.751 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.751 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.751 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.751 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.751 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.751 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.751 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.751 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.751 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.751 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.751 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.751 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.751 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.751 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.751 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.751 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.751 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.752 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.753 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.EventBus.4naok44xvm.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xdn8i8epqw-{0}-4naok44xvm-4naok44xvm.gz' -2026-01-28 14:17:50.753 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.753 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.4naok44xvm.wasm - 200 85824 application/wasm 2.5546ms -2026-01-28 14:17:50.756 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ExceptionHandling.ecbhbsp3we.wasm - null null -2026-01-28 14:17:50.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.757 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.757 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.757 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.757 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.757 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.757 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.757 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.757 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.757 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.757 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.757 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.757 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.757 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.757 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.758 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.759 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ExceptionHandling.ecbhbsp3we.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\86e1bzf02o-{0}-ecbhbsp3we-ecbhbsp3we.gz' -2026-01-28 14:17:50.759 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.759 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ExceptionHandling.ecbhbsp3we.wasm - 200 79680 application/wasm 2.7196ms -2026-01-28 14:17:50.762 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Application.Contracts.40s1e77e5m.wasm - null null -2026-01-28 14:17:50.763 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.763 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.763 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.763 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.763 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.763 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.763 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.764 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.764 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.764 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.764 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.764 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.764 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.764 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.764 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.764 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.764 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.764 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.764 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.764 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.764 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.764 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.765 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Application.Contracts.40s1e77e5m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1k1yaajq7n-{0}-40s1e77e5m-40s1e77e5m.gz' -2026-01-28 14:17:50.765 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.765 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Application.Contracts.40s1e77e5m.wasm - 200 11574 application/wasm 2.5972ms -2026-01-28 14:17:50.768 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.nj1v9irvz8.wasm - null null -2026-01-28 14:17:50.769 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.769 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.769 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.769 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.769 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.769 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.769 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.769 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.769 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.769 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.769 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.769 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.769 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.769 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.770 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.770 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.770 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.770 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.770 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.770 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.770 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.770 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.770 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.nj1v9irvz8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\247hfc7v1l-{0}-nj1v9irvz8-nj1v9irvz8.gz' -2026-01-28 14:17:50.770 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.771 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.nj1v9irvz8.wasm - 200 41275 application/wasm 2.525ms -2026-01-28 14:17:50.774 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Domain.Shared.b0b5pjfr2i.wasm - null null -2026-01-28 14:17:50.775 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.775 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.775 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.775 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.775 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.775 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.775 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.775 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.775 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.775 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.775 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.775 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.775 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.775 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.775 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.775 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.775 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.776 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.776 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.776 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.776 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.776 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.776 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Domain.Shared.b0b5pjfr2i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nv73dihqbu-{0}-b0b5pjfr2i-b0b5pjfr2i.gz' -2026-01-28 14:17:50.776 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.777 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Domain.Shared.b0b5pjfr2i.wasm - 200 47419 application/wasm 2.7487ms -2026-01-28 14:17:50.781 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.HttpApi.Client.uclbvotalx.wasm - null null -2026-01-28 14:17:50.782 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.782 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.782 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.782 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.782 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.782 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.782 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.782 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.782 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.782 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.782 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.782 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.782 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.782 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.783 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.783 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.783 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.783 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.783 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.783 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.783 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.783 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.784 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.HttpApi.Client.uclbvotalx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5kgd4qlij6-{0}-uclbvotalx-uclbvotalx.gz' -2026-01-28 14:17:50.784 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.784 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.HttpApi.Client.uclbvotalx.wasm - 200 22838 application/wasm 3.1642ms -2026-01-28 14:17:50.792 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Features.wy0y61456s.wasm - null null -2026-01-28 14:17:50.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.793 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.793 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.793 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.793 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.793 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.793 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.794 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.794 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.794 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.794 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.794 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.794 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.794 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.794 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.795 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Features.wy0y61456s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c4f7xcddbd-{0}-wy0y61456s-wy0y61456s.gz' -2026-01-28 14:17:50.795 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.795 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Features.wy0y61456s.wasm - 200 71488 application/wasm 3.7229ms -2026-01-28 14:17:50.802 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.GlobalFeatures.hoqe61zskr.wasm - null null -2026-01-28 14:17:50.803 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.803 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.803 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.803 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.803 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.803 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.803 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.803 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.803 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.803 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.803 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.803 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.803 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.803 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.804 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.804 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.804 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.804 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.804 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.804 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.804 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.804 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.805 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.GlobalFeatures.hoqe61zskr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lgshqof3zp-{0}-hoqe61zskr-hoqe61zskr.gz' -2026-01-28 14:17:50.805 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.805 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.GlobalFeatures.hoqe61zskr.wasm - 200 26422 application/wasm 3.1953ms -2026-01-28 14:17:50.809 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Guids.liit7170e2.wasm - null null -2026-01-28 14:17:50.809 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.809 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.809 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.809 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.809 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.810 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.810 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.810 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.810 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.810 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.810 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.810 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.810 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.810 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.810 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.811 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Guids.liit7170e2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fakjzvu1ye-{0}-liit7170e2-liit7170e2.gz' -2026-01-28 14:17:50.811 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.811 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Guids.liit7170e2.wasm - 200 5942 application/wasm 2.3125ms -2026-01-28 14:17:50.814 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Abstractions.dwudu7bg2j.wasm - null null -2026-01-28 14:17:50.815 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.815 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.815 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.815 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.815 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.815 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.815 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.815 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.815 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.815 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.815 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.815 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.815 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.815 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.815 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.815 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.815 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.815 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.815 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.815 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.815 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.816 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.816 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Abstractions.dwudu7bg2j.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\orvt5319bs-{0}-dwudu7bg2j-dwudu7bg2j.gz' -2026-01-28 14:17:50.816 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.816 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Abstractions.dwudu7bg2j.wasm - 200 5942 application/wasm 2.4742ms -2026-01-28 14:17:50.820 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.gvl0zhfcrh.wasm - null null -2026-01-28 14:17:50.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.821 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.821 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.821 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.821 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.821 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.821 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.821 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.821 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.821 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.821 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.821 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.821 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.821 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.821 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.821 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.821 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.821 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.821 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.821 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.821 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.822 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.823 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.gvl0zhfcrh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\esehx2q8xm-{0}-gvl0zhfcrh-gvl0zhfcrh.gz' -2026-01-28 14:17:50.823 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.823 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.gvl0zhfcrh.wasm - 200 96576 application/wasm 3.0197ms -2026-01-28 14:17:50.826 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.lpg5d6esbr.wasm - null null -2026-01-28 14:17:50.827 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.827 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.827 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.827 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.827 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.827 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.827 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.827 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.827 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.827 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.827 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.827 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.827 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.827 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.827 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.827 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.827 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.827 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.828 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.828 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.828 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.828 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.828 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.IdentityModel.lpg5d6esbr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\69zsrpzmke-{0}-lpg5d6esbr-lpg5d6esbr.gz' -2026-01-28 14:17:50.828 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.828 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.lpg5d6esbr.wasm - 200 7990 application/wasm 2.2192ms -2026-01-28 14:17:50.831 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.rizl9dmjps.wasm - null null -2026-01-28 14:17:50.832 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.832 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.832 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.832 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.832 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.833 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.833 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.833 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.833 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.833 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.833 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.833 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.833 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.833 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.833 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.833 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.833 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.833 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.833 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.833 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.833 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.833 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.834 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.rizl9dmjps.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\985eczt6cq-{0}-rizl9dmjps-rizl9dmjps.gz' -2026-01-28 14:17:50.834 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.834 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.rizl9dmjps.wasm - 200 10550 application/wasm 2.9662ms -2026-01-28 14:17:50.837 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.wui0lrbb2n.wasm - null null -2026-01-28 14:17:50.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.838 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.838 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.838 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.838 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.838 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.838 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.838 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.838 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.838 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.838 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.838 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.838 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.838 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.838 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.839 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.wui0lrbb2n.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\blqvtier8g-{0}-wui0lrbb2n-wui0lrbb2n.gz' -2026-01-28 14:17:50.839 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.839 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.wui0lrbb2n.wasm - 200 54587 application/wasm 2.4897ms -2026-01-28 14:17:50.842 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Application.Contracts.085birxe2b.wasm - null null -2026-01-28 14:17:50.843 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.843 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.843 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.843 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.843 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.844 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.844 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.844 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.844 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.844 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.844 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.844 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.844 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.844 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.844 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.844 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.844 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.844 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.844 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.844 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.844 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.844 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.845 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Application.Contracts.085birxe2b.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ru0e3g14jl-{0}-085birxe2b-085birxe2b.gz' -2026-01-28 14:17:50.845 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.845 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Application.Contracts.085birxe2b.wasm - 200 21302 application/wasm 2.4997ms -2026-01-28 14:17:50.848 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.uyv78l0zds.wasm - null null -2026-01-28 14:17:50.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.849 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.849 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.850 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.850 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.850 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.850 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.850 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.850 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.850 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.850 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.850 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.850 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.851 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Blazor.MudBlazor.uyv78l0zds.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mcjoi5xqrj-{0}-uyv78l0zds-uyv78l0zds.gz' -2026-01-28 14:17:50.851 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.851 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.uyv78l0zds.wasm - 200 67392 application/wasm 2.9614ms -2026-01-28 14:17:50.854 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.hte2321dzm.wasm - null null -2026-01-28 14:17:50.855 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.855 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.855 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.855 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.855 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.855 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.855 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.855 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.855 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.855 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.855 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.855 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.855 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.855 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.856 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.856 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.856 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.856 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.856 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.856 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.856 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.856 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.856 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.hte2321dzm.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\d0art33lcl-{0}-hte2321dzm-hte2321dzm.gz' -2026-01-28 14:17:50.856 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.857 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.hte2321dzm.wasm - 200 5430 application/wasm 2.235ms -2026-01-28 14:17:50.859 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Domain.Shared.ymdct2u5om.wasm - null null -2026-01-28 14:17:50.860 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.860 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.860 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.860 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.860 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.860 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.861 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.861 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.861 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.861 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.861 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.861 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.861 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.861 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.861 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.863 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Domain.Shared.ymdct2u5om.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\o0k8cjq56a-{0}-ymdct2u5om-ymdct2u5om.gz' -2026-01-28 14:17:50.863 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.864 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Domain.Shared.ymdct2u5om.wasm - 200 370029 application/wasm 4.309ms -2026-01-28 14:17:50.867 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.HttpApi.Client.clb4nzb2zs.wasm - null null -2026-01-28 14:17:50.868 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.868 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.868 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.868 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.868 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.868 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.868 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.868 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.868 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.868 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.868 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.868 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.868 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.868 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.868 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.868 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.868 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.868 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.868 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.868 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.868 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.869 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.870 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.HttpApi.Client.clb4nzb2zs.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bj1jtfcis3-{0}-clb4nzb2zs-clb4nzb2zs.gz' -2026-01-28 14:17:50.870 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.870 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.HttpApi.Client.clb4nzb2zs.wasm - 200 123205 application/wasm 2.8322ms -2026-01-28 14:17:50.873 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.IdentityModel.58e7vj7i45.wasm - null null -2026-01-28 14:17:50.874 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.874 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.874 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.874 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.874 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.874 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.874 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.875 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.875 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.875 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.875 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.875 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.875 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.875 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.875 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.875 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.876 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.IdentityModel.58e7vj7i45.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6dvntei2gj-{0}-58e7vj7i45-58e7vj7i45.gz' -2026-01-28 14:17:50.876 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.876 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.IdentityModel.58e7vj7i45.wasm - 200 32566 application/wasm 2.9505ms -2026-01-28 14:17:50.879 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.Abstractions.dk3pk9ktl7.wasm - null null -2026-01-28 14:17:50.880 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.880 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.880 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.880 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.880 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.881 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.881 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.881 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.881 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.881 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.881 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.881 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.881 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.881 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.881 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.882 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.Abstractions.dk3pk9ktl7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kno3y6bjsa-{0}-dk3pk9ktl7-dk3pk9ktl7.gz' -2026-01-28 14:17:50.882 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.882 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.Abstractions.dk3pk9ktl7.wasm - 200 4918 application/wasm 2.9451ms -2026-01-28 14:17:50.885 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.8u3i5b9etn.wasm - null null -2026-01-28 14:17:50.886 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.886 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.886 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.886 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.886 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.886 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.886 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.886 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.886 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.886 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.886 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.886 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.886 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.886 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.887 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.887 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.887 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.887 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.887 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.887 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.887 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.887 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.887 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.8u3i5b9etn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xxkqi4ckse-{0}-8u3i5b9etn-8u3i5b9etn.gz' -2026-01-28 14:17:50.887 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.887 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.8u3i5b9etn.wasm - 200 3894 application/wasm 2.3299ms -2026-01-28 14:17:50.890 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.SystemTextJson.dmgvw38e5z.wasm - null null -2026-01-28 14:17:50.891 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.891 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.891 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.891 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.891 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.891 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.891 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.891 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.891 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.891 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.891 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.891 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.891 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.891 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.892 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.892 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.892 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.892 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.892 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.892 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.892 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.892 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.893 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.SystemTextJson.dmgvw38e5z.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\y6nmb5oill-{0}-dmgvw38e5z-dmgvw38e5z.gz' -2026-01-28 14:17:50.893 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.893 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.SystemTextJson.dmgvw38e5z.wasm - 200 24374 application/wasm 2.5316ms -2026-01-28 14:17:50.897 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.Abstractions.j5b6ddcipj.wasm - null null -2026-01-28 14:17:50.897 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.897 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.898 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.898 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.898 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.898 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.898 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.898 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.898 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.898 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.898 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.898 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.898 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.898 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.898 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.898 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.898 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.898 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.898 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.898 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.898 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.898 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.899 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Localization.Abstractions.j5b6ddcipj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6hzosd4d2z-{0}-j5b6ddcipj-j5b6ddcipj.gz' -2026-01-28 14:17:50.899 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.899 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.Abstractions.j5b6ddcipj.wasm - 200 13622 application/wasm 2.5087ms -2026-01-28 14:17:50.902 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.tgarxcuaaj.wasm - null null -2026-01-28 14:17:50.902 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.903 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.903 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.903 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.903 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.903 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.903 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.903 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.903 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.903 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.903 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.903 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.903 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.903 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.904 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.905 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Localization.tgarxcuaaj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\742lfcokyb-{0}-tgarxcuaaj-tgarxcuaaj.gz' -2026-01-28 14:17:50.905 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.905 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.tgarxcuaaj.wasm - 200 66880 application/wasm 2.7923ms -2026-01-28 14:17:50.908 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Mapperly.mifpi94512.wasm - null null -2026-01-28 14:17:50.908 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.908 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.908 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.909 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.909 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.909 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.909 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.909 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.909 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.909 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.909 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.909 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.909 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.909 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.909 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.910 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Mapperly.mifpi94512.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wlgf7ryjmc-{0}-mifpi94512-mifpi94512.gz' -2026-01-28 14:17:50.910 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.910 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Mapperly.mifpi94512.wasm - 200 18230 application/wasm 2.404ms -2026-01-28 14:17:50.913 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Minify.u0ftati5vi.wasm - null null -2026-01-28 14:17:50.914 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.914 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.914 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.914 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.914 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.914 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.915 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.915 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.915 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.915 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.915 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.915 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.915 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.915 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.915 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.915 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.915 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.915 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.915 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.915 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.915 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.915 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.916 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Minify.u0ftati5vi.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xo92mb2h1m-{0}-u0ftati5vi-u0ftati5vi.gz' -2026-01-28 14:17:50.916 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.916 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Minify.u0ftati5vi.wasm - 200 6966 application/wasm 2.3853ms -2026-01-28 14:17:50.919 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MudBlazorUI.rp0ak0tuw8.wasm - null null -2026-01-28 14:17:50.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.920 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.920 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.921 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.921 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.921 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.921 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.921 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.921 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.921 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.921 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.922 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MudBlazorUI.rp0ak0tuw8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kchqj3qnme-{0}-rp0ak0tuw8-rp0ak0tuw8.gz' -2026-01-28 14:17:50.922 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.922 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MudBlazorUI.rp0ak0tuw8.wasm - 200 137546 application/wasm 3.0184ms -2026-01-28 14:17:50.926 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.Abstractions.l8q9drti5i.wasm - null null -2026-01-28 14:17:50.926 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.927 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.927 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.927 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.927 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.927 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.927 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.927 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.927 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.927 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.927 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.927 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.927 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.927 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.927 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.927 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.927 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.927 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.927 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.927 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.927 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.928 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.928 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MultiTenancy.Abstractions.l8q9drti5i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9h6hwofytn-{0}-l8q9drti5i-l8q9drti5i.gz' -2026-01-28 14:17:50.928 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.928 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.Abstractions.l8q9drti5i.wasm - 200 26934 application/wasm 2.7441ms -2026-01-28 14:17:50.932 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.9vppak6oe0.wasm - null null -2026-01-28 14:17:50.932 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.932 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.933 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.933 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.933 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.933 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.933 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.933 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.933 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.933 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.933 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.933 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.933 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.933 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.933 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.933 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.934 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MultiTenancy.9vppak6oe0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\k4tu4vjqt3-{0}-9vppak6oe0-9vppak6oe0.gz' -2026-01-28 14:17:50.934 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.934 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.9vppak6oe0.wasm - 200 31542 application/wasm 2.2816ms -2026-01-28 14:17:50.937 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectExtending.xqdaldejf6.wasm - null null -2026-01-28 14:17:50.938 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.938 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.938 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.938 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.938 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.938 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.938 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.938 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.938 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.938 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.938 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.938 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.938 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.938 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.939 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.939 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.939 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.939 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.939 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.939 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.939 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.939 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.940 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ObjectExtending.xqdaldejf6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3mtcgnfv0c-{0}-xqdaldejf6-xqdaldejf6.gz' -2026-01-28 14:17:50.940 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.940 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectExtending.xqdaldejf6.wasm - 200 48443 application/wasm 2.7849ms -2026-01-28 14:17:50.943 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectMapping.jfxlue5mz1.wasm - null null -2026-01-28 14:17:50.944 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.944 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.944 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.944 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.944 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.944 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.944 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.944 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.944 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.944 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.944 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.944 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.944 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.944 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.945 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.945 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.945 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.945 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.945 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.945 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.945 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.945 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.945 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ObjectMapping.jfxlue5mz1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\zesov8dx3n-{0}-jfxlue5mz1-jfxlue5mz1.gz' -2026-01-28 14:17:50.945 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.945 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectMapping.jfxlue5mz1.wasm - 200 17206 application/wasm 2.3845ms -2026-01-28 14:17:50.949 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.OpenIddict.Domain.Shared.p76j32m8t5.wasm - null null -2026-01-28 14:17:50.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.950 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.950 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.950 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.950 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.950 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.950 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.950 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.950 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.950 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.950 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.950 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.950 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.950 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.950 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.950 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.951 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.OpenIddict.Domain.Shared.p76j32m8t5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\e9mit81pkr-{0}-p76j32m8t5-p76j32m8t5.gz' -2026-01-28 14:17:50.951 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.951 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.OpenIddict.Domain.Shared.p76j32m8t5.wasm - 200 41275 application/wasm 2.4265ms -2026-01-28 14:17:50.955 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Application.Contracts.wmkikr93o7.wasm - null null -2026-01-28 14:17:50.956 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.956 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.956 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.956 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.956 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.956 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.956 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.956 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.956 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.956 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.956 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.956 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.956 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.956 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.956 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.956 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.956 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.956 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.956 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.956 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.956 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.957 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.957 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Application.Contracts.wmkikr93o7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\my5sja1gq5-{0}-wmkikr93o7-wmkikr93o7.gz' -2026-01-28 14:17:50.957 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.957 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Application.Contracts.wmkikr93o7.wasm - 200 14134 application/wasm 2.6269ms -2026-01-28 14:17:50.961 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.zznf2kzkxh.wasm - null null -2026-01-28 14:17:50.962 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.962 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.962 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.962 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.962 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.963 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.963 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.963 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.963 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.963 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.963 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.963 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.963 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.963 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.963 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.963 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.963 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.963 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.963 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.963 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.963 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.963 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.964 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.zznf2kzkxh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kxch0h7hgv-{0}-zznf2kzkxh-zznf2kzkxh.gz' -2026-01-28 14:17:50.964 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.964 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.zznf2kzkxh.wasm - 200 77632 application/wasm 3.1022ms -2026-01-28 14:17:50.968 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.axi1gmd0uq.wasm - null null -2026-01-28 14:17:50.969 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.969 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.969 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.969 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.969 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.970 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.970 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.970 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.970 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.970 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.970 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.970 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.970 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.970 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.970 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.971 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.axi1gmd0uq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\66b7cc8ocy-{0}-axi1gmd0uq-axi1gmd0uq.gz' -2026-01-28 14:17:50.971 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.971 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.axi1gmd0uq.wasm - 200 5942 application/wasm 2.693ms -2026-01-28 14:17:50.974 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Domain.Shared.ic13klvitm.wasm - null null -2026-01-28 14:17:50.975 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.975 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.975 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.975 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.975 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.975 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.975 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.975 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.975 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.975 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.975 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.975 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.975 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.975 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.975 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.976 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.976 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.976 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.976 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.976 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.976 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.976 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.976 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Domain.Shared.ic13klvitm.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\yzrsadtuc3-{0}-ic13klvitm-ic13klvitm.gz' -2026-01-28 14:17:50.977 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.977 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Domain.Shared.ic13klvitm.wasm - 200 59195 application/wasm 2.6343ms -2026-01-28 14:17:50.980 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.HttpApi.Client.emu449d09n.wasm - null null -2026-01-28 14:17:50.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.981 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.981 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.981 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.981 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.981 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.981 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.981 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.982 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.982 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.982 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.982 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.982 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.982 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.982 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.982 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.983 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.HttpApi.Client.emu449d09n.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\oo1t1rirr3-{0}-emu449d09n-emu449d09n.gz' -2026-01-28 14:17:50.983 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.983 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.HttpApi.Client.emu449d09n.wasm - 200 68416 application/wasm 3.2528ms -2026-01-28 14:17:50.987 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.RemoteServices.d8gnck4fgy.wasm - null null -2026-01-28 14:17:50.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.988 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.988 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.988 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.988 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.988 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.988 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.988 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.988 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.988 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.988 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.988 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.988 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.988 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.988 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.988 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.988 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.988 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.988 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.988 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.988 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.989 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.989 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.RemoteServices.d8gnck4fgy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fxolomud6k-{0}-d8gnck4fgy-d8gnck4fgy.gz' -2026-01-28 14:17:50.989 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.989 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.RemoteServices.d8gnck4fgy.wasm - 200 11574 application/wasm 2.5148ms -2026-01-28 14:17:50.993 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Security.k9ttfxcsex.wasm - null null -2026-01-28 14:17:50.993 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.993 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.993 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.993 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.993 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.993 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.993 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:50.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:50.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:50.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:50.994 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:50.994 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:50.994 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:50.994 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:50.994 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:50.994 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:50.994 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:50.994 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:50.994 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.995 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Security.k9ttfxcsex.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3330bn9dpa-{0}-k9ttfxcsex-k9ttfxcsex.gz' -2026-01-28 14:17:50.995 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:50.995 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Security.k9ttfxcsex.wasm - 200 48955 application/wasm 2.3053ms -2026-01-28 14:17:50.998 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Serialization.gqp3lze8fb.wasm - null null -2026-01-28 14:17:50.999 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.999 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:50.999 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:50.999 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:50.999 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.999 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:50.999 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:50.999 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:50.999 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:51.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:51.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:51.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.000 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.000 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:51.000 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:51.000 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:51.000 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:51.000 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:51.000 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:51.000 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:51.000 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:51.000 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.001 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Serialization.gqp3lze8fb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jm5tzubbmd-{0}-gqp3lze8fb-gqp3lze8fb.gz' -2026-01-28 14:17:51.001 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.001 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Serialization.gqp3lze8fb.wasm - 200 6966 application/wasm 2.7029ms -2026-01-28 14:17:51.004 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Application.Contracts.xvq3wz5075.wasm - null null -2026-01-28 14:17:51.004 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.005 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.005 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:51.005 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:51.005 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.005 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:51.005 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.005 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:51.005 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:51.005 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:51.005 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:51.005 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.005 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.005 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:51.006 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:51.006 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:51.006 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:51.006 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:51.006 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:51.006 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:51.006 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:51.006 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.007 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Application.Contracts.xvq3wz5075.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sa63frt88b-{0}-xvq3wz5075-xvq3wz5075.gz' -2026-01-28 14:17:51.007 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.007 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Application.Contracts.xvq3wz5075.wasm - 200 14134 application/wasm 2.9753ms -2026-01-28 14:17:51.013 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.yorcbsllti.wasm - null null -2026-01-28 14:17:51.014 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.014 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.014 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:51.014 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:51.014 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.014 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:51.014 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.014 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:51.014 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:51.014 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:51.014 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:51.014 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.014 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.014 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:51.015 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:51.015 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:51.015 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:51.015 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:51.015 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:51.015 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:51.015 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:51.015 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.016 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.yorcbsllti.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\du4d4xybrw-{0}-yorcbsllti-yorcbsllti.gz' -2026-01-28 14:17:51.016 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.016 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.yorcbsllti.wasm - 200 59195 application/wasm 2.6713ms -2026-01-28 14:17:51.020 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.rl433unjhk.wasm - null null -2026-01-28 14:17:51.020 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.020 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.020 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:51.020 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:51.020 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.021 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:51.021 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.021 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:51.021 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:51.021 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:51.021 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:51.021 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.021 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.021 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:51.021 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:51.021 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:51.021 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:51.021 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:51.021 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:51.021 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:51.021 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:51.021 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.022 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.rl433unjhk.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\khsc69ietg-{0}-rl433unjhk-rl433unjhk.gz' -2026-01-28 14:17:51.022 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.022 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.rl433unjhk.wasm - 200 5942 application/wasm 2.5566ms -2026-01-28 14:17:51.025 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Domain.Shared.ehawvm0lul.wasm - null null -2026-01-28 14:17:51.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.026 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.026 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:51.026 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:51.026 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.026 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:51.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:51.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:51.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:51.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:51.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.026 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:51.026 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:51.026 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:51.026 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:51.026 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:51.026 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:51.026 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:51.026 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:51.027 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.028 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Domain.Shared.ehawvm0lul.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\a9lyefc7q1-{0}-ehawvm0lul-ehawvm0lul.gz' -2026-01-28 14:17:51.028 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.028 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Domain.Shared.ehawvm0lul.wasm - 200 86336 application/wasm 2.7678ms -2026-01-28 14:17:51.032 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.HttpApi.Client.2z0jshntcg.wasm - null null -2026-01-28 14:17:51.032 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:51.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:51.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.033 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:51.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:51.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:51.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:51.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:51.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.033 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:51.033 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:51.033 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:51.033 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:51.033 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:51.033 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:51.033 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:51.033 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:51.033 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.034 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.HttpApi.Client.2z0jshntcg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ivgy4mp33s-{0}-2z0jshntcg-2z0jshntcg.gz' -2026-01-28 14:17:51.034 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.034 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.HttpApi.Client.2z0jshntcg.wasm - 200 23862 application/wasm 2.4483ms -2026-01-28 14:17:51.037 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Settings.05ptknrv5m.wasm - null null -2026-01-28 14:17:51.038 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.038 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.038 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:51.038 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:51.038 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.038 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:51.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:51.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:51.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:51.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:51.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.039 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:51.039 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:51.039 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:51.039 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:51.039 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:51.039 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:51.039 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:51.039 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:51.039 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.040 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Settings.05ptknrv5m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bgt33y9v4t-{0}-05ptknrv5m-05ptknrv5m.gz' -2026-01-28 14:17:51.040 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.040 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Settings.05ptknrv5m.wasm - 200 40763 application/wasm 2.5562ms -2026-01-28 14:17:51.043 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Application.Contracts.dorwnqqwy5.wasm - null null -2026-01-28 14:17:51.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.044 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.044 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:51.044 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:51.044 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.044 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:51.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:51.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:51.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:51.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:51.044 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.045 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.045 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:51.045 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:51.045 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:51.045 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:51.045 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:51.045 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:51.045 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:51.045 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:51.045 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.046 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Application.Contracts.dorwnqqwy5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c16tsznfvz-{0}-dorwnqqwy5-dorwnqqwy5.gz' -2026-01-28 14:17:51.046 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.046 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Application.Contracts.dorwnqqwy5.wasm - 200 12086 application/wasm 2.5282ms -2026-01-28 14:17:51.049 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.h58oqkfeng.wasm - null null -2026-01-28 14:17:51.050 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.050 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.050 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:51.050 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:51.050 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.050 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:51.050 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.050 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:51.050 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:51.050 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:51.050 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:51.050 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.050 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.050 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:51.051 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:51.051 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:51.051 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:51.051 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:51.051 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:51.051 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:51.051 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:51.051 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.052 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.h58oqkfeng.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ckfyi6dd9r-{0}-h58oqkfeng-h58oqkfeng.gz' -2026-01-28 14:17:51.052 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.052 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.h58oqkfeng.wasm - 200 35131 application/wasm 2.8177ms -2026-01-28 14:17:51.056 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.vv7n6m7yut.wasm - null null -2026-01-28 14:17:51.056 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.056 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.057 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:51.057 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:51.057 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.057 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:51.057 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.057 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:51.057 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:51.057 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:51.057 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:51.057 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.057 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.057 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:51.057 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:51.057 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:51.057 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:51.057 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:51.057 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:51.057 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:51.057 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:51.058 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.058 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.vv7n6m7yut.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xddkl43426-{0}-vv7n6m7yut-vv7n6m7yut.gz' -2026-01-28 14:17:51.058 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.058 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.vv7n6m7yut.wasm - 200 5942 application/wasm 2.5697ms -2026-01-28 14:17:51.061 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Domain.Shared.llpimxq3rm.wasm - null null -2026-01-28 14:17:51.061 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.061 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.062 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:51.062 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:51.062 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.062 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:51.062 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.062 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:51.062 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:51.062 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:51.062 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:51.062 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.062 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.062 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:51.062 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:51.062 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:51.062 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:51.062 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:51.062 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:51.062 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:51.062 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:51.062 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.063 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Domain.Shared.llpimxq3rm.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\so2apr0f18-{0}-llpimxq3rm-llpimxq3rm.gz' -2026-01-28 14:17:51.063 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.063 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Domain.Shared.llpimxq3rm.wasm - 200 44347 application/wasm 2.3875ms -2026-01-28 14:17:51.066 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.HttpApi.Client.bjkg75uhux.wasm - null null -2026-01-28 14:17:51.067 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.067 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.067 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:51.067 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:51.067 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.067 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:51.067 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.067 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:51.068 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:51.068 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:51.068 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:51.068 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.068 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.068 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:51.068 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:51.068 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:51.068 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:51.068 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:51.068 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:51.068 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:51.068 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:51.068 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.069 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.HttpApi.Client.bjkg75uhux.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\imelthvwfz-{0}-bjkg75uhux-bjkg75uhux.gz' -2026-01-28 14:17:51.069 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.069 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.HttpApi.Client.bjkg75uhux.wasm - 200 37179 application/wasm 2.7075ms -2026-01-28 14:17:51.073 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Threading.rwdxyhv0ce.wasm - null null -2026-01-28 14:17:51.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.074 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.074 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:51.074 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:51.074 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.074 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:51.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:51.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:51.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:51.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:51.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.074 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:51.075 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:51.075 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:51.075 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:51.075 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:51.075 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:51.075 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:51.075 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:51.075 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.076 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Threading.rwdxyhv0ce.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bipe9d19v0-{0}-rwdxyhv0ce-rwdxyhv0ce.gz' -2026-01-28 14:17:51.076 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.076 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Threading.rwdxyhv0ce.wasm - 200 34619 application/wasm 2.9393ms -2026-01-28 14:17:51.080 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Timing.otg12tqej8.wasm - null null -2026-01-28 14:17:51.080 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.080 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.080 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:51.081 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:51.081 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.081 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:51.081 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.081 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:51.081 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:51.081 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:51.081 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:51.081 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.081 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.081 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:51.081 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:51.081 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:51.081 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:51.081 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:51.081 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:51.081 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:51.081 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:51.082 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.082 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Timing.otg12tqej8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\k5ucu0dgya-{0}-otg12tqej8-otg12tqej8.gz' -2026-01-28 14:17:51.082 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.082 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Timing.otg12tqej8.wasm - 200 19766 application/wasm 2.8431ms -2026-01-28 14:17:51.086 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.wwlqw4om2r.wasm - null null -2026-01-28 14:17:51.087 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.087 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.087 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:51.087 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:51.087 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.087 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:51.087 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.087 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:51.087 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:51.087 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:51.087 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:51.087 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.087 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.087 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:51.088 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:51.088 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:51.088 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:51.088 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:51.088 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:51.088 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:51.088 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:51.088 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.089 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.UI.wwlqw4om2r.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pq6xwwf7om-{0}-wwlqw4om2r-wwlqw4om2r.gz' -2026-01-28 14:17:51.089 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.089 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.wwlqw4om2r.wasm - 200 83776 application/wasm 3.1634ms -2026-01-28 14:17:51.092 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.Navigation.gyuxza111s.wasm - null null -2026-01-28 14:17:51.093 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.093 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.093 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:51.093 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:51.093 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.093 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:51.093 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.093 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:51.093 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:51.093 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:51.093 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:51.093 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.093 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.093 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:51.094 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:51.094 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:51.094 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:51.094 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:51.094 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:51.094 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:51.094 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:51.094 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.095 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.UI.Navigation.gyuxza111s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9g5ljk4lon-{0}-gyuxza111s-gyuxza111s.gz' -2026-01-28 14:17:51.095 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.095 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.Navigation.gyuxza111s.wasm - 200 40763 application/wasm 2.7623ms -2026-01-28 14:17:51.098 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Uow.jneickkblt.wasm - null null -2026-01-28 14:17:51.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:51.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:51.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.099 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:51.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:51.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:51.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:51.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:51.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.099 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:51.100 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:51.100 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:51.100 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:51.100 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:51.100 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:51.100 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:51.100 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:51.100 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.101 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Uow.jneickkblt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ilu4fbxe2e-{0}-jneickkblt-jneickkblt.gz' -2026-01-28 14:17:51.101 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.101 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Uow.jneickkblt.wasm - 200 39227 application/wasm 2.6589ms -2026-01-28 14:17:51.104 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Abstractions.0mrf0cvj5h.wasm - null null -2026-01-28 14:17:51.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.105 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.105 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:51.105 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:51.105 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.106 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:51.106 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.106 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:51.106 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:51.106 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:51.106 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:51.106 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.106 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.106 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:51.106 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:51.106 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:51.106 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:51.106 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:51.106 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:51.106 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:51.106 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:51.106 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.107 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Users.Abstractions.0mrf0cvj5h.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jyt2zu3ttz-{0}-0mrf0cvj5h-0mrf0cvj5h.gz' -2026-01-28 14:17:51.107 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.107 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Abstractions.0mrf0cvj5h.wasm - 200 11062 application/wasm 2.3176ms -2026-01-28 14:17:51.110 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Domain.Shared.h4yyltz4ll.wasm - null null -2026-01-28 14:17:51.110 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.110 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.110 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:51.110 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:51.110 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.111 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:51.111 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.111 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:51.111 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:51.111 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:51.111 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:51.111 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.111 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.111 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:51.111 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:51.111 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:51.111 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:51.111 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:51.111 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:51.111 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:51.111 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:51.111 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.112 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Users.Domain.Shared.h4yyltz4ll.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8bcoe6ftg7-{0}-h4yyltz4ll-h4yyltz4ll.gz' -2026-01-28 14:17:51.112 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.112 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Domain.Shared.h4yyltz4ll.wasm - 200 4918 application/wasm 2.6892ms -2026-01-28 14:17:51.116 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.Abstractions.924wndkz1f.wasm - null null -2026-01-28 14:17:51.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.116 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:51.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:51.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.117 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:51.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:51.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:51.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:51.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:51.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.117 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:51.117 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:51.117 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:51.117 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:51.117 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:51.117 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:51.117 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:51.117 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:51.118 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.118 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Validation.Abstractions.924wndkz1f.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gd6ojlvfcf-{0}-924wndkz1f-924wndkz1f.gz' -2026-01-28 14:17:51.118 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.118 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.Abstractions.924wndkz1f.wasm - 200 6966 application/wasm 2.7306ms -2026-01-28 14:17:51.121 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.0d8qfgigij.wasm - null null -2026-01-28 14:17:51.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:51.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:51.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.122 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:51.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:51.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:51.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:51.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:51.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.122 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:51.122 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:51.122 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:51.122 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:51.122 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:51.123 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:51.123 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:51.123 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:51.123 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.124 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Validation.0d8qfgigij.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2i0haqeq52-{0}-0d8qfgigij-0d8qfgigij.gz' -2026-01-28 14:17:51.124 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.124 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.0d8qfgigij.wasm - 200 133962 application/wasm 2.9769ms -2026-01-28 14:17:51.128 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.VirtualFileSystem.gxdtmkr6a5.wasm - null null -2026-01-28 14:17:51.128 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.128 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:51.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:51.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.129 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:51.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:51.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:51.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:51.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:51.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.129 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:51.129 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:51.129 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:51.129 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:51.129 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:51.129 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:51.129 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:51.129 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:51.130 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.130 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.VirtualFileSystem.gxdtmkr6a5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\oikj36ifzq-{0}-gxdtmkr6a5-gxdtmkr6a5.gz' -2026-01-28 14:17:51.130 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.131 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.VirtualFileSystem.gxdtmkr6a5.wasm - 200 21302 application/wasm 2.8839ms -2026-01-28 14:17:51.134 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.ohwxgh6gpx.wasm - null null -2026-01-28 14:17:51.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.135 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.135 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:51.135 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:51.135 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.135 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:51.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:51.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:51.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:51.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:51.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.135 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.135 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:51.136 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:51.136 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:51.136 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:51.136 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:51.136 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:51.136 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:51.136 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:51.136 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.137 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.ohwxgh6gpx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b9vq30g1vb-{0}-ohwxgh6gpx-ohwxgh6gpx.gz' -2026-01-28 14:17:51.137 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.137 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.ohwxgh6gpx.wasm - 200 38715 application/wasm 2.5976ms -2026-01-28 14:17:51.140 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/icudt.oh1zvcfom8.dat - null null -2026-01-28 14:17:51.140 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.140 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.140 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:51.140 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:51.140 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.141 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:51.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:51.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:51.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:51.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:51.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.141 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:51.141 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:51.141 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:51.141 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:51.141 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:51.141 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:51.141 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:51.141 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:51.141 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.142 +03:00 [INF] The file _framework/icudt.oh1zvcfom8.dat was not modified -2026-01-28 14:17:51.142 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.142 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/icudt.oh1zvcfom8.dat - 304 null application/octet-stream 1.9549ms -2026-01-28 14:17:51.149 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/appsettings.Development.json - null null -2026-01-28 14:17:51.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:51.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:51.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.151 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:51.151 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.151 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:51.151 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:51.151 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:51.151 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:51.151 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.151 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.151 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:51.151 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:51.151 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:51.151 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:51.151 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:51.151 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:51.151 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:51.151 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:51.151 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.152 +03:00 [INF] Sending file. Request path: 'appsettings.Development.json'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5yh5mvb6m0-{0}-qygrwjo5h3-qygrwjo5h3.gz' -2026-01-28 14:17:51.152 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.152 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/appsettings.Development.json - 200 41 application/json 2.6623ms -2026-01-28 14:17:51.155 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/appsettings.json - null null -2026-01-28 14:17:51.155 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.156 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:51.156 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:51.156 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:51.156 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.156 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:51.156 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:51.156 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:51.156 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:51.156 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:51.156 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:51.156 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.156 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:51.156 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:51.156 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:51.156 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:51.156 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:51.156 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:51.156 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:51.156 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:51.156 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:51.157 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.157 +03:00 [INF] Sending file. Request path: 'appsettings.json'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\apuwzph3tz-{0}-b8hf2s338i-b8hf2s338i.gz' -2026-01-28 14:17:51.157 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:51.157 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/appsettings.json - 200 136 application/json 2.2162ms -2026-01-28 14:17:53.605 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/api/abp/application-configuration?IncludeLocalizationResources=False&api-version=1.0 - null null -2026-01-28 14:17:53.608 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:53.608 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:53.608 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:53.608 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:53.608 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:53.609 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:53.609 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:53.609 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:53.609 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:53.609 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:53.609 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:53.609 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:53.609 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:53.609 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:53.609 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:53.609 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:53.609 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:53.609 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:53.609 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:53.609 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:53.609 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:53.610 +03:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' -2026-01-28 14:17:53.638 +03:00 [INF] Route matched with {area = "abp", action = "Get", controller = "AbpApplicationConfiguration", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto] GetAsync(Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationRequestOptions) on controller Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController (Volo.Abp.AspNetCore.Mvc). -2026-01-28 14:17:53.736 +03:00 [DBG] Executing AbpApplicationConfigurationAppService.GetAsync()... -2026-01-28 14:17:53.902 +03:00 [DBG] Executed AbpApplicationConfigurationAppService.GetAsync(). -2026-01-28 14:17:53.912 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto'. -2026-01-28 14:17:53.947 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc) in 304.6874ms -2026-01-28 14:17:53.947 +03:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' -2026-01-28 14:17:53.948 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/api/abp/application-configuration?IncludeLocalizationResources=False&api-version=1.0 - 200 null application/json; charset=utf-8 342.2955ms -2026-01-28 14:17:54.181 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/api/abp/application-localization?CultureName=en&OnlyDynamics=True&api-version=1.0 - null null -2026-01-28 14:17:54.184 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:54.184 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:54.184 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:54.184 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:54.184 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:54.184 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:54.184 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:54.184 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:54.184 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:54.184 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:54.184 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:54.184 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:54.184 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:54.184 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:54.185 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:54.185 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:54.185 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:54.185 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:54.185 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:54.185 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:54.185 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:54.185 +03:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationLocalizationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' -2026-01-28 14:17:54.192 +03:00 [INF] Route matched with {area = "abp", action = "Get", controller = "AbpApplicationLocalization", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationDto] GetAsync(Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationRequestDto) on controller Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationLocalizationController (Volo.Abp.AspNetCore.Mvc). -2026-01-28 14:17:54.243 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationDto'. -2026-01-28 14:17:54.244 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationLocalizationController.GetAsync (Volo.Abp.AspNetCore.Mvc) in 52.7427ms -2026-01-28 14:17:54.244 +03:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationLocalizationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' -2026-01-28 14:17:54.244 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/api/abp/application-localization?CultureName=en&OnlyDynamics=True&api-version=1.0 - 200 null application/json; charset=utf-8 63.1985ms -2026-01-28 14:17:58.417 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/core/abp.css - null null -2026-01-28 14:17:58.421 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:58.421 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/all.css - null null -2026-01-28 14:17:58.421 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2026-01-28 14:17:58.421 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/select2/css/select2.min.css - null null -2026-01-28 14:17:58.421 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.css - null null -2026-01-28 14:17:58.421 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:58.421 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/datatables.net-bs5/css/dataTables.bootstrap5.css - null null -2026-01-28 14:17:58.421 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/bootstrap-datepicker/bootstrap-datepicker.min.css - null null -2026-01-28 14:17:58.421 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:58.421 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:58.421 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:58.421 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/bootstrap-daterangepicker/daterangepicker.css - null null -2026-01-28 14:17:58.421 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:58.421 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:58.421 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:58.421 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:58.421 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:58.421 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:58.421 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:58.421 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:58.421 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:58.422 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:58.422 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:58.422 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:58.422 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:58.422 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:58.422 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:58.422 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:58.422 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:58.422 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/global-styles.css - null null -2026-01-28 14:17:58.422 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/MudBlazor/MudBlazor.min.css - null null -2026-01-28 14:17:58.422 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2026-01-28 14:17:58.422 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.MudBlazorUI/volo.abp.mudblazorui.css - null null -2026-01-28 14:17:58.423 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/themes/basic/main.css - null null -2026-01-28 14:17:58.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:58.423 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:58.423 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:58.423 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:58.423 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:58.423 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/blazor-global-styles.css - null null -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:58.424 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css - null null -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:58.424 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:58.424 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:58.424 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:58.424 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:58.424 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:58.424 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:58.424 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:58.424 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:58.424 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:58.424 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:58.424 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:58.424 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:58.424 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:58.424 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:58.424 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:58.424 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:58.424 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:58.424 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:58.424 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:58.424 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:58.424 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:58.424 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:58.424 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:58.424 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:58.424 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:58.424 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:58.424 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:58.424 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:58.424 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:58.424 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:58.424 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:58.424 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:58.424 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:58.424 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:58.424 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:58.424 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:58.424 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:58.424 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:58.424 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:58.424 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:58.424 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:58.424 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:58.424 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:58.424 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:58.424 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:58.424 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:58.424 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:58.424 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:58.424 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:58.424 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:58.424 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:58.424 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:58.424 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:58.424 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:58.424 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:58.424 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:58.424 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:58.424 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:58.424 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:58.424 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:58.424 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:58.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:58.425 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:58.425 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:58.425 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:58.425 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:58.425 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:58.425 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:58.425 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:58.425 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:58.425 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:58.425 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:58.425 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:58.425 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:58.425 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:58.425 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:58.425 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:58.425 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:58.425 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:58.425 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:58.425 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:58.425 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:58.425 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:58.425 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:58.425 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:58.425 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:58.425 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:58.425 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:58.425 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:58.425 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:58.425 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:58.425 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:58.425 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:58.425 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:58.425 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:58.425 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:58.425 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:58.425 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:58.425 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:58.425 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:58.425 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:58.425 +03:00 [INF] The file _content/MudBlazor/MudBlazor.min.css was not modified -2026-01-28 14:17:58.425 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:58.425 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\obj\Debug\net10.0\compressed\p1g0cu86en-{0}-c25c931rn9-c25c931rn9.gz' -2026-01-28 14:17:58.425 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:58.425 +03:00 [INF] Sending file. Request path: 'blazor-global-styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\smexgl05zq-{0}-y3n6denrdr-y3n6denrdr.gz' -2026-01-28 14:17:58.425 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:58.425 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:58.425 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/blazor-global-styles.css - 200 641 text/css 1.7957ms -2026-01-28 14:17:58.425 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1375 text/css 2.8873ms -2026-01-28 14:17:58.425 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/MudBlazor/MudBlazor.min.css - 304 null text/css 3.0073ms -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:58.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:58.425 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:58.425 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/themes/basic/main.css'. Physical path: 'D:\GitHub\abp\modules\basic-theme\src\Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme\obj\Debug\net10.0\compressed\fqd2rlnqku-{0}-tyyka3g39l-tyyka3g39l.gz' -2026-01-28 14:17:58.425 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:58.425 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:58.425 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/themes/basic/main.css - 200 120 text/css 2.6076ms -2026-01-28 14:17:58.425 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:58.425 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:58.425 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:58.425 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:58.425 +03:00 [INF] Sending file. Request path: 'libs/datatables.net-bs5/css/dataTables.bootstrap5.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\2vxqr2b34z-{0}-ln8ra2a4gr-ln8ra2a4gr.gz' -2026-01-28 14:17:58.425 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:58.425 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:58.425 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:58.426 +03:00 [INF] Sending file. Request path: 'libs/bootstrap-daterangepicker/daterangepicker.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\z8ryymhgcw-{0}-85vbs1dise-85vbs1dise.gz' -2026-01-28 14:17:58.426 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:58.426 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/datatables.net-bs5/css/dataTables.bootstrap5.css - 200 21614 text/css 4.6002ms -2026-01-28 14:17:58.426 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/bootstrap-daterangepicker/daterangepicker.css - 200 8102 text/css 4.5452ms -2026-01-28 14:17:58.426 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:58.426 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:58.426 +03:00 [INF] Sending file. Request path: 'MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s4s6fpr8ex-{0}-oa8u55zyfs-oa8u55zyfs.gz' -2026-01-28 14:17:58.426 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:58.426 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:58.426 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css - 200 317 text/css 1.8081ms -2026-01-28 14:17:58.426 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:58.426 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:58.426 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:58.426 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\dfuwed8qp2-{0}-9fxst9u6yk-9fxst9u6yk.gz' -2026-01-28 14:17:58.426 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:58.426 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 38549 text/css 4.996ms -2026-01-28 14:17:58.426 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:58.426 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:58.426 +03:00 [INF] Sending file. Request path: 'libs/abp/core/abp.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\534um4fsdt-{0}-6vev71rwdm-6vev71rwdm.gz' -2026-01-28 14:17:58.426 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:58.426 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:58.426 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:58.426 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:58.426 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:58.426 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:58.426 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:58.426 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/core/abp.css - 200 1364 text/css 8.6211ms -2026-01-28 14:17:58.426 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:58.426 +03:00 [INF] Sending file. Request path: 'global-styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\rh9y3nvfnm-{0}-bbfo2klxrw-bbfo2klxrw.gz' -2026-01-28 14:17:58.426 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:58.426 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/global-styles.css - 200 284 text/css 3.8452ms -2026-01-28 14:17:58.426 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:58.426 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\0vulsgakzi-{0}-2ej0o14t5y-2ej0o14t5y.gz' -2026-01-28 14:17:58.426 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:58.426 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:58.426 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:58.426 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:58.426 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:58.426 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:58.426 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:58.426 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/all.css - 200 110162 text/css 5.3848ms -2026-01-28 14:17:58.426 +03:00 [INF] Sending file. Request path: 'libs/select2/css/select2.min.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\6ddblemzii-{0}-ntg7hq0exj-ntg7hq0exj.gz' -2026-01-28 14:17:58.426 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:58.426 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/select2/css/select2.min.css - 200 14999 text/css 5.3452ms -2026-01-28 14:17:58.426 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:58.427 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.MudBlazorUI/volo.abp.mudblazorui.css'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.MudBlazorUI\obj\Debug\net10.0\compressed\giyoea8shq-{0}-8qeawnrprb-8qeawnrprb.gz' -2026-01-28 14:17:58.427 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:58.427 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.MudBlazorUI/volo.abp.mudblazorui.css - 200 1120 text/css 4.1925ms -2026-01-28 14:17:58.427 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:58.427 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:58.427 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:58.427 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:58.427 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:58.427 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:58.427 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:58.427 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:58.427 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:58.427 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:58.427 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:58.427 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:58.427 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:58.427 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:58.427 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:58.427 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:58.427 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:58.427 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:58.427 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:58.427 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:58.427 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:58.427 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:58.428 +03:00 [INF] Sending file. Request path: 'libs/bootstrap-datepicker/bootstrap-datepicker.min.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\c98qwcv8t9-{0}-hv5fnth7pn-hv5fnth7pn.gz' -2026-01-28 14:17:58.428 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:58.429 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/bootstrap-datepicker/bootstrap-datepicker.min.css - 200 15767 text/css 7.5544ms -2026-01-28 14:17:58.432 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:58.432 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:58.432 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:58.432 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:58.432 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:58.432 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:58.432 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:58.432 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:58.432 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:58.432 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:58.433 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:58.433 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:58.433 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:58.433 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:58.433 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:58.433 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:58.433 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:58.433 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:58.433 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:58.433 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:58.433 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:58.433 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:58.434 +03:00 [INF] Sending file. Request path: 'libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\14u3fu9aq9-{0}-p8jqw3ap0f-p8jqw3ap0f.gz' -2026-01-28 14:17:58.434 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:58.434 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.css - 200 54888 text/css 13.3112ms -2026-01-28 14:17:58.458 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/.well-known/appspecific/com.chrome.devtools.json - null null -2026-01-28 14:17:58.458 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:58.459 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:58.459 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:58.459 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:58.459 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:58.459 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:58.459 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:58.459 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:58.459 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:58.459 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:58.459 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:58.459 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:58.459 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:58.459 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:58.459 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:58.459 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:58.459 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:58.459 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:58.459 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:58.459 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:58.459 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:58.459 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/.well-known/appspecific/com.chrome.devtools.json - 404 0 null 1.676ms -2026-01-28 14:17:58.459 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44308/.well-known/appspecific/com.chrome.devtools.json, Response status code: 404 -2026-01-28 14:17:59.472 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.js.map - null null -2026-01-28 14:17:59.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:59.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:17:59.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:17:59.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:17:59.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:59.473 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:17:59.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:17:59.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:17:59.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:17:59.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:17:59.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:17:59.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:59.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:17:59.473 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:17:59.473 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:17:59.473 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:17:59.473 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:17:59.473 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:17:59.473 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:17:59.473 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:17:59.473 +03:00 [DBG] No tenant resolved. -2026-01-28 14:17:59.473 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:59.474 +03:00 [INF] Sending file. Request path: '_framework/dotnet.runtime.js.map'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xqmdb6twc8-{0}-efgkpxn596-efgkpxn596.gz' -2026-01-28 14:17:59.474 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:17:59.475 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.js.map - 200 89353 text/plain 2.6823ms -2026-01-28 14:18:27.298 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Account/Login - null null -2026-01-28 14:18:27.299 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:27.299 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:27.299 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:27.299 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:27.299 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:27.300 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:27.300 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:27.300 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:27.300 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:27.300 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:27.300 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:27.300 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:27.300 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:27.300 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:27.300 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:27.300 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:27.300 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:27.300 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:27.300 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:27.300 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:27.300 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:27.301 +03:00 [INF] Executing endpoint '/Account/Login' -2026-01-28 14:18:27.329 +03:00 [INF] Route matched with {page = "/Account/Login", area = "", action = "", controller = ""}. Executing page /Account/Login -2026-01-28 14:18:27.330 +03:00 [INF] Skipping the execution of current filter as its not the most effective filter implementing the policy Microsoft.AspNetCore.Mvc.ViewFeatures.IAntiforgeryPolicy -2026-01-28 14:18:27.900 +03:00 [INF] Executing handler method Volo.Abp.Account.Web.Pages.Account.LoginModel.OnGetAsync - ModelState is "Valid" -2026-01-28 14:18:27.906 +03:00 [INF] Executed handler method OnGetAsync, returned result Microsoft.AspNetCore.Mvc.RazorPages.PageResult. -2026-01-28 14:18:28.242 +03:00 [DBG] Added bundle 'LeptonXLite.Global' to the page in 5.71 ms. -2026-01-28 14:18:28.289 +03:00 [DBG] Added bundle 'LeptonXLite.Global' to the page in 10.83 ms. -2026-01-28 14:18:28.310 +03:00 [DBG] Added bundle 'Volo.Abp.Account.Web.Pages.Account.LoginModel' to the page in 0.99 ms. -2026-01-28 14:18:28.314 +03:00 [INF] Executed page /Account/Login in 984.6603ms -2026-01-28 14:18:28.314 +03:00 [INF] Executed endpoint '/Account/Login' -2026-01-28 14:18:28.317 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Account/Login - 200 null text/html; charset=utf-8 1019.6956ms -2026-01-28 14:18:28.387 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/core/abp.css?_v=639041476857650000 - null null -2026-01-28 14:18:28.388 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.388 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.388 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.388 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.388 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.389 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.389 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.389 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.389 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.389 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.389 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.389 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.389 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.389 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.389 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/bootstrap-dim.css?_v=638990734800000000 - null null -2026-01-28 14:18:28.390 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/v4-shims.css?_v=638968205522840000 - null null -2026-01-28 14:18:28.390 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/select2/css/select2.min.css?_v=637835286139320000 - null null -2026-01-28 14:18:28.390 +03:00 [INF] Sending file. Request path: 'libs/abp/core/abp.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\534um4fsdt-{0}-6vev71rwdm-6vev71rwdm.gz' -2026-01-28 14:18:28.390 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.390 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/core/abp.css?_v=639041476857650000 - 200 1364 text/css 2.832ms -2026-01-28 14:18:28.390 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/all.css?_v=638968205522840000 - null null -2026-01-28 14:18:28.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.390 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.390 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.390 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.390 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.391 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.391 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.391 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.391 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.391 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.391 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.391 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.391 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.391 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.391 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.391 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.391 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.391 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.391 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.391 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.391 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.391 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.391 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.391 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.391 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.391 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.391 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.391 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.391 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.391 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.css?_v=637835286147460000 - null null -2026-01-28 14:18:28.391 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.391 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.391 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.391 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.392 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.392 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.392 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/datatables.net-bs5/css/dataTables.bootstrap5.css?_v=639025851390870000 - null null -2026-01-28 14:18:28.392 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.392 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.392 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.392 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.392 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.392 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.392 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.392 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.392 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.392 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.392 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.392 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.392 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.393 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.393 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.393 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.393 +03:00 [INF] Sending file. Request path: 'libs/select2/css/select2.min.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\6ddblemzii-{0}-ntg7hq0exj-ntg7hq0exj.gz' -2026-01-28 14:18:28.393 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.393 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.393 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.393 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.393 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.393 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.393 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.393 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.393 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.393 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/select2/css/select2.min.css?_v=637835286139320000 - 200 14999 text/css 3.2402ms -2026-01-28 14:18:28.393 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\dfuwed8qp2-{0}-9fxst9u6yk-9fxst9u6yk.gz' -2026-01-28 14:18:28.393 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.393 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.393 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.393 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.393 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/v4-shims.css?_v=638968205522840000 - 200 38549 text/css 3.4092ms -2026-01-28 14:18:28.393 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.393 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.393 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.393 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.393 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.393 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.393 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.393 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.393 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.393 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.393 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.393 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.393 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.393 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.393 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.393 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.393 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.393 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.393 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.393 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.393 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.393 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.393 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.393 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.394 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.394 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/bootstrap-datepicker/bootstrap-datepicker.min.css?_v=638943829436550000 - null null -2026-01-28 14:18:28.395 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/bootstrap-daterangepicker/daterangepicker.css?_v=637835518693970000 - null null -2026-01-28 14:18:28.395 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\0vulsgakzi-{0}-2ej0o14t5y-2ej0o14t5y.gz' -2026-01-28 14:18:28.395 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.395 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/all.css?_v=638968205522840000 - 200 110162 text/css 4.6529ms -2026-01-28 14:18:28.395 +03:00 [INF] Sending file. Request path: 'libs/datatables.net-bs5/css/dataTables.bootstrap5.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\2vxqr2b34z-{0}-ln8ra2a4gr-ln8ra2a4gr.gz' -2026-01-28 14:18:28.395 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.395 +03:00 [INF] Sending file. Request path: 'libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\14u3fu9aq9-{0}-p8jqw3ap0f-p8jqw3ap0f.gz' -2026-01-28 14:18:28.395 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.395 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/datatables.net-bs5/css/dataTables.bootstrap5.css?_v=639025851390870000 - 200 21614 text/css 3.436ms -2026-01-28 14:18:28.395 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.css?_v=637835286147460000 - 200 54888 text/css 3.5332ms -2026-01-28 14:18:28.395 +03:00 [INF] Sending file. Request path: '/Themes/LeptonXLite/Global/side-menu/css/bootstrap-dim.css'. Physical path: 'N/A' -2026-01-28 14:18:28.395 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.395 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.395 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/bootstrap-dim.css?_v=638990734800000000 - 200 308278 text/css 6.0083ms -2026-01-28 14:18:28.395 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.395 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.395 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.395 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.395 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.395 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.395 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.395 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.396 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.396 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.396 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.396 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.396 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=639051948570705850 - null null -2026-01-28 14:18:28.396 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/date-range-picker/date-range-picker-styles.css?_v=639051948570705850 - null null -2026-01-28 14:18:28.396 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/toast/abp-toast.css?_v=639051948570705850 - null null -2026-01-28 14:18:28.396 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/js-bundle.css?_v=638990734800000000 - null null -2026-01-28 14:18:28.396 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.396 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.396 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.396 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.396 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.396 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.396 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.396 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.396 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/abp-bundle.css?_v=638990734800000000 - null null -2026-01-28 14:18:28.396 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/layout-bundle.css?_v=638990734800000000 - null null -2026-01-28 14:18:28.396 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.396 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.396 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.396 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.396 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.396 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.396 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'N/A' -2026-01-28 14:18:28.396 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=639051948570705850 - 200 385 text/css 0.455ms -2026-01-28 14:18:28.397 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toast/abp-toast.css'. Physical path: 'N/A' -2026-01-28 14:18:28.397 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/toast/abp-toast.css?_v=639051948570705850 - 200 2617 text/css 0.5204ms -2026-01-28 14:18:28.397 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.397 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.397 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/font-bundle.css?_v=638990734800000000 - null null -2026-01-28 14:18:28.397 +03:00 [INF] Sending file. Request path: '/Themes/LeptonXLite/Global/side-menu/css/font-bundle.css'. Physical path: 'N/A' -2026-01-28 14:18:28.397 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/date-range-picker/date-range-picker-styles.css'. Physical path: 'N/A' -2026-01-28 14:18:28.397 +03:00 [INF] Sending file. Request path: '/Themes/LeptonXLite/Global/side-menu/css/abp-bundle.css'. Physical path: 'N/A' -2026-01-28 14:18:28.397 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/abp-bundle.css?_v=638990734800000000 - 200 3404 text/css 0.8543ms -2026-01-28 14:18:28.397 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/date-range-picker/date-range-picker-styles.css?_v=639051948570705850 - 200 338 text/css 1.2249ms -2026-01-28 14:18:28.397 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/font-bundle.css?_v=638990734800000000 - 200 127 text/css 0.5466ms -2026-01-28 14:18:28.397 +03:00 [INF] Sending file. Request path: '/Themes/LeptonXLite/Global/side-menu/css/layout-bundle.css'. Physical path: 'N/A' -2026-01-28 14:18:28.397 +03:00 [INF] Sending file. Request path: 'libs/bootstrap-daterangepicker/daterangepicker.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\z8ryymhgcw-{0}-85vbs1dise-85vbs1dise.gz' -2026-01-28 14:18:28.398 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.398 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/layout-bundle.css?_v=638990734800000000 - 200 31589 text/css 1.1078ms -2026-01-28 14:18:28.398 +03:00 [INF] Sending file. Request path: '/Themes/LeptonXLite/Global/side-menu/css/js-bundle.css'. Physical path: 'N/A' -2026-01-28 14:18:28.398 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/js-bundle.css?_v=638990734800000000 - 200 31862 text/css 1.3983ms -2026-01-28 14:18:28.398 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/bootstrap-daterangepicker/daterangepicker.css?_v=637835518693970000 - 200 8102 text/css 3.1937ms -2026-01-28 14:18:28.398 +03:00 [INF] Sending file. Request path: 'libs/bootstrap-datepicker/bootstrap-datepicker.min.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\c98qwcv8t9-{0}-hv5fnth7pn-hv5fnth7pn.gz' -2026-01-28 14:18:28.398 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.398 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/bootstrap-datepicker/bootstrap-datepicker.min.css?_v=638943829436550000 - 200 15767 text/css 3.3656ms -2026-01-28 14:18:28.399 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css?_v=638990734800000000 - null null -2026-01-28 14:18:28.399 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/global-styles.css?_v=638470534679988073 - null null -2026-01-28 14:18:28.400 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.400 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.401 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.401 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.401 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.401 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.401 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.401 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.401 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.401 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.401 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.401 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.401 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.401 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.401 +03:00 [INF] Sending file. Request path: '/Themes/LeptonXLite/Global/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css'. Physical path: 'N/A' -2026-01-28 14:18:28.401 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css?_v=638990734800000000 - 200 74827 text/css 2.0915ms -2026-01-28 14:18:28.401 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.402 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.402 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.402 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.402 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.402 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.402 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.402 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.402 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/utils/abp-utils.umd.min.js?_v=639041476859130000 - null null -2026-01-28 14:18:28.402 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/core/abp.js?_v=639041476857650000 - null null -2026-01-28 14:18:28.402 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/jquery/jquery.js?_v=638295801311220000 - null null -2026-01-28 14:18:28.402 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/jquery/abp.jquery.js?_v=639041476858690000 - null null -2026-01-28 14:18:28.402 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/bootstrap/js/bootstrap.bundle.js?_v=638923938477090000 - null null -2026-01-28 14:18:28.403 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/lodash/lodash.min.js?_v=637828567252040000 - null null -2026-01-28 14:18:28.403 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/jquery-validation/jquery.validate.js?_v=638573368847010000 - null null -2026-01-28 14:18:28.403 +03:00 [INF] Sending file. Request path: 'global-styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\rh9y3nvfnm-{0}-bbfo2klxrw-bbfo2klxrw.gz' -2026-01-28 14:18:28.403 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.403 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/global-styles.css?_v=638470534679988073 - 200 284 text/css 3.6127ms -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.403 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.403 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.403 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.403 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.403 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.403 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.403 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.403 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.403 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.403 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.403 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/jquery-validation/abp.jquery.validate.js?_v=639041476858490000 - null null -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.403 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.403 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.404 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.404 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=638618042615640000 - null null -2026-01-28 14:18:28.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.404 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.404 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.404 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.404 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.404 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.404 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.404 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.404 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.404 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.404 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.404 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.404 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.404 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.404 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.404 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.404 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.404 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.404 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.404 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.404 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.404 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.404 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.404 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.404 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.404 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.404 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.404 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.404 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.404 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.404 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.404 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.404 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.405 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.405 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.405 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.405 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.405 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.405 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.405 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.405 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.405 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.405 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.405 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.405 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.405 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.405 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.405 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.405 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.405 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.405 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.405 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.405 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.405 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.405 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.405 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.405 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.405 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.405 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.405 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/jquery-form/jquery.form.min.js?_v=639041476855950000 - null null -2026-01-28 14:18:28.406 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.406 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.406 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.406 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.406 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.406 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.406 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.406 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.406 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.406 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.406 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.406 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.406 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.406 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.407 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/select2/js/select2.min.js?_v=637835286139320000 - null null -2026-01-28 14:18:28.407 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.407 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.407 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.407 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.407 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.407 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.407 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.407 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.407 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/datatables.net/js/dataTables.min.js?_v=639025851391010000 - null null -2026-01-28 14:18:28.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.407 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.407 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.408 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.408 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.408 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.408 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.408 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.408 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.408 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.408 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.408 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.408 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.408 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.408 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.408 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.408 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.408 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.408 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.408 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.408 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.409 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.409 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.409 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.409 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.409 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.409 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.409 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.409 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.413 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/datatables.net-bs5/js/dataTables.bootstrap5.js?_v=639025851390870000 - null null -2026-01-28 14:18:28.463 +03:00 [INF] Sending file. Request path: 'libs/jquery-validation/abp.jquery.validate.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\3rhuerw7zy-{0}-2j57wpbqm1-2j57wpbqm1.gz' -2026-01-28 14:18:28.464 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.468 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/jquery-validation/abp.jquery.validate.js?_v=639041476858490000 - 200 1112 text/javascript 63.2791ms -2026-01-28 14:18:28.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.469 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.469 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.469 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.469 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.469 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.470 +03:00 [INF] Sending file. Request path: 'libs/abp/core/abp.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\4ilyb8mtdv-{0}-it4x7zpaq1-it4x7zpaq1.gz' -2026-01-28 14:18:28.470 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.470 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/core/abp.js?_v=639041476857650000 - 200 27898 text/javascript 68.3367ms -2026-01-28 14:18:28.469 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.472 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.473 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.473 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.473 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.473 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.473 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.473 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.473 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.473 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.481 +03:00 [INF] Sending file. Request path: 'libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\k1ag48znrx-{0}-03hjc8e09r-03hjc8e09r.gz' -2026-01-28 14:18:28.481 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.481 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=638618042615640000 - 200 19853 text/javascript 77.2304ms -2026-01-28 14:18:28.486 +03:00 [INF] Sending file. Request path: 'libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\el31oe83w7-{0}-i3t0b6nabn-i3t0b6nabn.gz' -2026-01-28 14:18:28.486 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.486 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/jquery/abp.jquery.js?_v=639041476858690000 - 200 13522 text/javascript 83.3864ms -2026-01-28 14:18:28.488 +03:00 [INF] Sending file. Request path: 'libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\p9tzeo4w7c-{0}-lzl9nlhx6b-lzl9nlhx6b.gz' -2026-01-28 14:18:28.488 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.489 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/jquery-validation/jquery.validate.js?_v=638573368847010000 - 200 52574 text/javascript 85.8895ms -2026-01-28 14:18:28.490 +03:00 [INF] Sending file. Request path: 'libs/abp/utils/abp-utils.umd.min.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\2xes1zqzum-{0}-1plsh89gne-1plsh89gne.gz' -2026-01-28 14:18:28.490 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.490 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/utils/abp-utils.umd.min.js?_v=639041476859130000 - 200 8289 text/javascript 87.9356ms -2026-01-28 14:18:28.497 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/sweetalert2/sweetalert2.all.min.js?_v=639020092555030000 - null null -2026-01-28 14:18:28.500 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.500 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.500 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.concat.min.js?_v=637835286147460000 - null null -2026-01-28 14:18:28.500 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.500 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.500 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.500 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/luxon/luxon.min.js?_v=638935308536430000 - null null -2026-01-28 14:18:28.500 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.500 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.500 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.500 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.500 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.500 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.500 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.500 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.500 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.502 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.502 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.502 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.502 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.502 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.502 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.502 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.502 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.502 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.502 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.502 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.503 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.503 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.503 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.504 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.504 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.504 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.504 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.504 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.504 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.504 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.504 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.504 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.505 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.505 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.505 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.505 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.505 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.505 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.505 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.505 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.505 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.505 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.505 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.506 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.506 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/luxon/abp.luxon.js?_v=639041476856430000 - null null -2026-01-28 14:18:28.506 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.506 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.506 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.506 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.506 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.506 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.506 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.506 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.506 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.508 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.508 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.508 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.508 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.508 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.508 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/timeago/jquery.timeago.js?_v=637835286141940000 - null null -2026-01-28 14:18:28.508 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.508 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.508 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.508 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.508 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.508 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.508 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.508 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.508 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.508 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.508 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.508 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.508 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.508 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.508 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.508 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.508 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/bootstrap-datepicker/bootstrap-datepicker.min.js?_v=638943829436550000 - null null -2026-01-28 14:18:28.509 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.509 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.509 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.510 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.510 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.509 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.510 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.510 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.510 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.510 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.510 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.510 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.510 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.510 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.510 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.510 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.510 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.510 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.510 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.510 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.510 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.510 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.510 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.510 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.510 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.510 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.510 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.510 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.510 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.510 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/moment/moment.min.js?_v=638398615758630000 - null null -2026-01-28 14:18:28.510 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.512 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.512 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.512 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.512 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.512 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.515 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.516 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.516 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.516 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.516 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.516 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.516 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.516 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.516 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.516 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.516 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.517 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.517 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.517 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.517 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.517 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.518 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.518 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.518 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.518 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.518 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.518 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.518 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.518 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.522 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/bootstrap-daterangepicker/daterangepicker.js?_v=639041476852020000 - null null -2026-01-28 14:18:28.523 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.523 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.523 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.523 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.523 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.532 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/ui-extensions.js?_v=639051948570705850 - null null -2026-01-28 14:18:28.532 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.532 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.532 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.532 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.532 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.533 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.533 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.533 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.533 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.533 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=639051948570705850 - null null -2026-01-28 14:18:28.533 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.533 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.533 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.533 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.533 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.533 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.533 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.533 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=639051948570705850 - null null -2026-01-28 14:18:28.533 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.533 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'N/A' -2026-01-28 14:18:28.533 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=639051948570705850 - 200 3605 application/javascript 0.239ms -2026-01-28 14:18:28.533 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/widget-manager.js?_v=639051948570705850 - null null -2026-01-28 14:18:28.534 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=639051948570705850 - null null -2026-01-28 14:18:28.534 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=639051948570705850 - null null -2026-01-28 14:18:28.534 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=639051948570705850 - null null -2026-01-28 14:18:28.534 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert2/abp-sweetalert2.js?_v=639051948570705850 - null null -2026-01-28 14:18:28.535 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/toast/abp-toast.js?_v=639051948570705850 - null null -2026-01-28 14:18:28.541 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/date-range-picker/date-range-picker-extensions.js?_v=639051948570705850 - null null -2026-01-28 14:18:28.542 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/authentication-state/authentication-state-listener.js?_v=639051948570705850 - null null -2026-01-28 14:18:28.542 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/authentication-state/authentication-state-listener.js'. Physical path: 'N/A' -2026-01-28 14:18:28.542 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/authentication-state/authentication-state-listener.js?_v=639051948570705850 - 200 776 application/javascript 0.4606ms -2026-01-28 14:18:28.542 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Pages/Abp/MultiTenancy/tenant-switch.js?_v=637946096050351367 - null null -2026-01-28 14:18:28.543 +03:00 [INF] Sending file. Request path: '/Pages/Abp/MultiTenancy/tenant-switch.js'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy\Pages\Abp\MultiTenancy\tenant-switch.js' -2026-01-28 14:18:28.543 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Pages/Abp/MultiTenancy/tenant-switch.js?_v=637946096050351367 - 200 414 application/javascript 0.7045ms -2026-01-28 14:18:28.543 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/js/lepton-x.bundle.min.js?_v=638990734800000000 - null null -2026-01-28 14:18:28.549 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/scripts/leptonx-mvc-ui-initializer.js?_v=638990734800000000 - null null -2026-01-28 14:18:28.550 +03:00 [INF] Sending file. Request path: '/Themes/LeptonXLite/Global/scripts/leptonx-mvc-ui-initializer.js'. Physical path: 'N/A' -2026-01-28 14:18:28.550 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/scripts/leptonx-mvc-ui-initializer.js?_v=638990734800000000 - 200 143 application/javascript 0.7879ms -2026-01-28 14:18:28.550 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/select2/js/i18n/en.js?_v=637835286139320000 - null null -2026-01-28 14:18:28.554 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/timeago/locales/jquery.timeago.en.js?_v=637835286141940000 - null null -2026-01-28 14:18:28.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.555 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.555 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.555 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.555 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.555 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Abp/ApplicationLocalizationScript?cultureName=en - null null -2026-01-28 14:18:28.555 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.555 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.556 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.556 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.556 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.556 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.556 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.556 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.556 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.556 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.556 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.556 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.556 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.556 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.556 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.557 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.557 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.557 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.557 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.557 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.557 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.557 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.557 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.557 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.557 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.557 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.557 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.557 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.557 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.557 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.557 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.557 +03:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.Localization.AbpApplicationLocalizationScriptController.GetAsync (Volo.Abp.AspNetCore.Mvc)' -2026-01-28 14:18:28.559 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.559 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.559 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.559 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.559 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.559 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Abp/ApplicationConfigurationScript - null null -2026-01-28 14:18:28.559 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.559 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.559 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.559 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.559 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.559 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.559 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.559 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.559 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.560 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.560 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.560 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.560 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.560 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.560 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.560 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.560 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.560 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.562 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.562 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.563 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.563 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.563 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.563 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.563 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.563 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.563 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.563 +03:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc)' -2026-01-28 14:18:28.569 +03:00 [INF] Sending file. Request path: 'libs/datatables.net-bs5/js/dataTables.bootstrap5.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\y34m7vvgpw-{0}-fjtml3ocfn-fjtml3ocfn.gz' -2026-01-28 14:18:28.569 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.569 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/datatables.net-bs5/js/dataTables.bootstrap5.js?_v=639025851390870000 - 200 2753 text/javascript 156.1208ms -2026-01-28 14:18:28.569 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Abp/ServiceProxyScript - null null -2026-01-28 14:18:28.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.571 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.571 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.571 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.571 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.571 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.571 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.572 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.572 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.572 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.572 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.572 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.572 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.572 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.572 +03:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc)' -2026-01-28 14:18:28.572 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationLocalizationScript", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.ActionResult] GetAsync(Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationRequestDto) on controller Volo.Abp.AspNetCore.Mvc.Localization.AbpApplicationLocalizationScriptController (Volo.Abp.AspNetCore.Mvc). -2026-01-28 14:18:28.574 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.ActionResult] Get() on controller Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController (Volo.Abp.AspNetCore.Mvc). -2026-01-28 14:18:28.574 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult GetAll(Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel) on controller Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController (Volo.Abp.AspNetCore.Mvc). -2026-01-28 14:18:28.575 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Pages/Account/Login.js?_v=638052398678083686 - null null -2026-01-28 14:18:28.576 +03:00 [INF] Sending file. Request path: '/Pages/Account/Login.js'. Physical path: 'D:\GitHub\abp\modules\account\src\Volo.Abp.Account.Web\Pages\Account\Login.js' -2026-01-28 14:18:28.576 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Pages/Account/Login.js?_v=638052398678083686 - 200 585 application/javascript 1.3041ms -2026-01-28 14:18:28.576 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/logo/leptonx/logo-light.png - null null -2026-01-28 14:18:28.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.578 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.578 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.578 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.578 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.578 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.579 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.579 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.579 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.579 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.579 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.579 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.579 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.579 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.579 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.579 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.579 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.579 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.579 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.579 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.579 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.584 +03:00 [DBG] Executing AbpApplicationConfigurationAppService.GetAsync()... -2026-01-28 14:18:28.604 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/ui-extensions.js'. Physical path: 'N/A' -2026-01-28 14:18:28.604 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/ui-extensions.js?_v=639051948570705850 - 200 11706 application/javascript 71.8523ms -2026-01-28 14:18:28.604 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'N/A' -2026-01-28 14:18:28.604 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=639051948570705850 - 200 6166 application/javascript 71.2992ms -2026-01-28 14:18:28.604 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/widget-manager.js'. Physical path: 'N/A' -2026-01-28 14:18:28.604 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/widget-manager.js?_v=639051948570705850 - 200 4790 application/javascript 70.749ms -2026-01-28 14:18:28.604 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'N/A' -2026-01-28 14:18:28.604 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=639051948570705850 - 200 9958 application/javascript 70.5585ms -2026-01-28 14:18:28.604 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'N/A' -2026-01-28 14:18:28.604 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=639051948570705850 - 200 8760 application/javascript 70.3223ms -2026-01-28 14:18:28.604 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2026-01-28 14:18:28.605 +03:00 [INF] Executing ContentResult with HTTP Response ContentType of application/javascript -2026-01-28 14:18:28.607 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2 - null null -2026-01-28 14:18:28.612 +03:00 [INF] Sending file. Request path: 'libs/abp/luxon/abp.luxon.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\hp8fbjs4i1-{0}-z5wqywdzu2-z5wqywdzu2.gz' -2026-01-28 14:18:28.612 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.612 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/luxon/abp.luxon.js?_v=639041476856430000 - 200 3423 text/javascript 106.4514ms -2026-01-28 14:18:28.613 +03:00 [INF] Sending file. Request path: 'libs/timeago/locales/jquery.timeago.en.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\9247y7aze7-{0}-vyaiids7tg-vyaiids7tg.gz' -2026-01-28 14:18:28.613 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'N/A' -2026-01-28 14:18:28.613 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=639051948570705850 - 200 23177 application/javascript 79.1866ms -2026-01-28 14:18:28.613 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert2/abp-sweetalert2.js'. Physical path: 'N/A' -2026-01-28 14:18:28.613 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.613 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert2/abp-sweetalert2.js?_v=639051948570705850 - 200 4925 application/javascript 78.9567ms -2026-01-28 14:18:28.613 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toast/abp-toast.js'. Physical path: 'N/A' -2026-01-28 14:18:28.613 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/timeago/locales/jquery.timeago.en.js?_v=637835286141940000 - 200 811 text/javascript 59.1428ms -2026-01-28 14:18:28.613 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/toast/abp-toast.js?_v=639051948570705850 - 200 6967 application/javascript 78.7197ms -2026-01-28 14:18:28.613 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/date-range-picker/date-range-picker-extensions.js'. Physical path: 'N/A' -2026-01-28 14:18:28.613 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/date-range-picker/date-range-picker-extensions.js?_v=639051948570705850 - 200 31212 application/javascript 72.0586ms -2026-01-28 14:18:28.614 +03:00 [INF] Sending file. Request path: 'libs/select2/js/select2.min.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\vef1b9uiuu-{0}-o2erkrdy46-o2erkrdy46.gz' -2026-01-28 14:18:28.614 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.614 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/select2/js/select2.min.js?_v=637835286139320000 - 200 70894 text/javascript 207.2294ms -2026-01-28 14:18:28.616 +03:00 [INF] Sending file. Request path: '/Themes/LeptonXLite/Global/side-menu/js/lepton-x.bundle.min.js'. Physical path: 'N/A' -2026-01-28 14:18:28.616 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/js/lepton-x.bundle.min.js?_v=638990734800000000 - 200 34385 application/javascript 72.9677ms -2026-01-28 14:18:28.619 +03:00 [INF] Sending file. Request path: 'libs/select2/js/i18n/en.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\y6aps9e4ci-{0}-5gjijv5o8m-5gjijv5o8m.gz' -2026-01-28 14:18:28.619 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.619 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/select2/js/i18n/en.js?_v=637835286139320000 - 200 877 text/javascript 69.2752ms -2026-01-28 14:18:28.620 +03:00 [INF] Sending file. Request path: 'libs/jquery/jquery.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\r8qytf4xyk-{0}-0i3buxo5is-0i3buxo5is.gz' -2026-01-28 14:18:28.620 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.620 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/jquery/jquery.js?_v=638295801311220000 - 200 285387 text/javascript 217.5132ms -2026-01-28 14:18:28.620 +03:00 [INF] Sending file. Request path: 'libs/lodash/lodash.min.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\kh3ishgkcb-{0}-rz1laysvml-rz1laysvml.gz' -2026-01-28 14:18:28.620 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.620 +03:00 [INF] Sending file. Request path: 'libs/timeago/jquery.timeago.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\g7df2zcusq-{0}-81ir0st3ab-81ir0st3ab.gz' -2026-01-28 14:18:28.620 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.620 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/lodash/lodash.min.js?_v=637828567252040000 - 200 73058 text/javascript 217.4947ms -2026-01-28 14:18:28.620 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/timeago/jquery.timeago.js?_v=637835286141940000 - 200 7437 text/javascript 112.4076ms -2026-01-28 14:18:28.621 +03:00 [INF] Sending file. Request path: 'images/logo/leptonx/logo-light.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\logo\leptonx\logo-light.png' -2026-01-28 14:18:28.621 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.621 +03:00 [INF] Sending file. Request path: '/Themes/LeptonXLite/Global/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2'. Physical path: 'N/A' -2026-01-28 14:18:28.621 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/logo/leptonx/logo-light.png - 200 33228 image/png 45.341ms -2026-01-28 14:18:28.621 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 17.0645ms -2026-01-28 14:18:28.622 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.Localization.AbpApplicationLocalizationScriptController.GetAsync (Volo.Abp.AspNetCore.Mvc) in 49.2762ms -2026-01-28 14:18:28.622 +03:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.Localization.AbpApplicationLocalizationScriptController.GetAsync (Volo.Abp.AspNetCore.Mvc)' -2026-01-28 14:18:28.622 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Abp/ApplicationLocalizationScript?cultureName=en - 200 44290 application/javascript 66.5872ms -2026-01-28 14:18:28.623 +03:00 [INF] Sending file. Request path: 'libs/sweetalert2/sweetalert2.all.min.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\5qgexi0r6r-{0}-mfjzw5tre0-mfjzw5tre0.gz' -2026-01-28 14:18:28.623 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.624 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/sweetalert2/sweetalert2.all.min.js?_v=639020092555030000 - 200 79918 text/javascript 126.0253ms -2026-01-28 14:18:28.624 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.624 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:28.624 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:28.624 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:28.624 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.624 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:28.624 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:28.624 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:28.624 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:28.624 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:28.624 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:28.624 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.624 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:28.625 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:28.625 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:28.625 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:28.625 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:28.625 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:28.625 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:28.625 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:28.625 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:28.625 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.625 +03:00 [INF] The file libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2 was not modified -2026-01-28 14:18:28.625 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.626 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2 - 304 null font/woff2 18.3828ms -2026-01-28 14:18:28.628 +03:00 [DBG] Executed AbpApplicationConfigurationAppService.GetAsync(). -2026-01-28 14:18:28.637 +03:00 [INF] Sending file. Request path: 'libs/bootstrap-daterangepicker/daterangepicker.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\wvke4h4fft-{0}-gmkpl5fspb-gmkpl5fspb.gz' -2026-01-28 14:18:28.637 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.637 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/bootstrap-daterangepicker/daterangepicker.js?_v=639041476852020000 - 200 67788 text/javascript 114.5266ms -2026-01-28 14:18:28.638 +03:00 [INF] Sending file. Request path: 'libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\iw8c7uyrum-{0}-5izpmmkl7p-5izpmmkl7p.gz' -2026-01-28 14:18:28.638 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.639 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/jquery-form/jquery.form.min.js?_v=639041476855950000 - 200 17272 text/javascript 233.406ms -2026-01-28 14:18:28.663 +03:00 [INF] Executing ContentResult with HTTP Response ContentType of application/javascript -2026-01-28 14:18:28.663 +03:00 [INF] Sending file. Request path: 'libs/bootstrap-datepicker/bootstrap-datepicker.min.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\tk3qeqysq9-{0}-tiww64l1hz-tiww64l1hz.gz' -2026-01-28 14:18:28.663 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.663 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 88.7384ms -2026-01-28 14:18:28.663 +03:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc)' -2026-01-28 14:18:28.663 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Abp/ApplicationConfigurationScript - 200 7842 application/javascript 103.9655ms -2026-01-28 14:18:28.663 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/bootstrap-datepicker/bootstrap-datepicker.min.js?_v=638943829436550000 - 200 33910 text/javascript 154.5154ms -2026-01-28 14:18:28.663 +03:00 [INF] Sending file. Request path: 'libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.concat.min.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\w5qv9diyma-{0}-uy460nbibt-uy460nbibt.gz' -2026-01-28 14:18:28.663 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.663 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.concat.min.js?_v=637835286147460000 - 200 45521 text/javascript 163.3493ms -2026-01-28 14:18:28.669 +03:00 [INF] Sending file. Request path: 'libs/luxon/luxon.min.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\hv9u3t2a9f-{0}-z7d3m257il-z7d3m257il.gz' -2026-01-28 14:18:28.669 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.669 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/luxon/luxon.min.js?_v=638935308536430000 - 200 81737 text/javascript 168.6353ms -2026-01-28 14:18:28.677 +03:00 [INF] Sending file. Request path: 'libs/datatables.net/js/dataTables.min.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\z4z2wuj3dd-{0}-q2gjyqvun4-q2gjyqvun4.gz' -2026-01-28 14:18:28.677 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.677 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/datatables.net/js/dataTables.min.js?_v=639025851391010000 - 200 98638 text/javascript 269.9396ms -2026-01-28 14:18:28.699 +03:00 [INF] Sending file. Request path: 'libs/moment/moment.min.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\uamuplg97s-{0}-cwjvxf9th9-cwjvxf9th9.gz' -2026-01-28 14:18:28.699 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.699 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/moment/moment.min.js?_v=638398615758630000 - 200 58928 text/javascript 188.7619ms -2026-01-28 14:18:28.725 +03:00 [DBG] ActionApiDescriptionModel.Create: AbpTenant.FindTenantByNameAsyncByName -2026-01-28 14:18:28.735 +03:00 [DBG] ActionApiDescriptionModel.Create: AbpTenant.FindTenantByIdAsyncById -2026-01-28 14:18:28.736 +03:00 [DBG] ActionApiDescriptionModel.Create: Account.LoginByLogin -2026-01-28 14:18:28.736 +03:00 [DBG] ActionApiDescriptionModel.Create: Account.Logout -2026-01-28 14:18:28.737 +03:00 [DBG] ActionApiDescriptionModel.Create: Account.CheckPasswordByLogin -2026-01-28 14:18:28.737 +03:00 [DBG] ActionApiDescriptionModel.Create: Account.RegisterAsyncByInput -2026-01-28 14:18:28.737 +03:00 [DBG] ActionApiDescriptionModel.Create: Account.SendPasswordResetCodeAsyncByInput -2026-01-28 14:18:28.737 +03:00 [DBG] ActionApiDescriptionModel.Create: Account.VerifyPasswordResetTokenAsyncByInput -2026-01-28 14:18:28.737 +03:00 [DBG] ActionApiDescriptionModel.Create: Account.ResetPasswordAsyncByInput -2026-01-28 14:18:28.738 +03:00 [DBG] ActionApiDescriptionModel.Create: EmailSettings.GetAsync -2026-01-28 14:18:28.738 +03:00 [DBG] ActionApiDescriptionModel.Create: EmailSettings.UpdateAsyncByInput -2026-01-28 14:18:28.738 +03:00 [DBG] ActionApiDescriptionModel.Create: EmailSettings.SendTestEmailAsyncByInput -2026-01-28 14:18:28.739 +03:00 [DBG] ActionApiDescriptionModel.Create: TimeZoneSettings.GetAsync -2026-01-28 14:18:28.739 +03:00 [DBG] ActionApiDescriptionModel.Create: TimeZoneSettings.GetTimezonesAsync -2026-01-28 14:18:28.739 +03:00 [DBG] ActionApiDescriptionModel.Create: TimeZoneSettings.UpdateAsyncByTimezone -2026-01-28 14:18:28.740 +03:00 [DBG] ActionApiDescriptionModel.Create: Tenant.GetAsyncById -2026-01-28 14:18:28.740 +03:00 [DBG] ActionApiDescriptionModel.Create: Tenant.GetListAsyncByInput -2026-01-28 14:18:28.740 +03:00 [DBG] ActionApiDescriptionModel.Create: Tenant.CreateAsyncByInput -2026-01-28 14:18:28.741 +03:00 [DBG] ActionApiDescriptionModel.Create: Tenant.UpdateAsyncByIdAndInput -2026-01-28 14:18:28.741 +03:00 [DBG] ActionApiDescriptionModel.Create: Tenant.DeleteAsyncById -2026-01-28 14:18:28.741 +03:00 [DBG] ActionApiDescriptionModel.Create: Tenant.GetDefaultConnectionStringAsyncById -2026-01-28 14:18:28.741 +03:00 [DBG] ActionApiDescriptionModel.Create: Tenant.UpdateDefaultConnectionStringAsyncByIdAndDefaultConnectionString -2026-01-28 14:18:28.742 +03:00 [DBG] ActionApiDescriptionModel.Create: Tenant.DeleteDefaultConnectionStringAsyncById -2026-01-28 14:18:28.742 +03:00 [DBG] ActionApiDescriptionModel.Create: Features.GetAsyncByProviderNameAndProviderKey -2026-01-28 14:18:28.742 +03:00 [DBG] ActionApiDescriptionModel.Create: Features.UpdateAsyncByProviderNameAndProviderKeyAndInput -2026-01-28 14:18:28.742 +03:00 [DBG] ActionApiDescriptionModel.Create: Features.DeleteAsyncByProviderNameAndProviderKey -2026-01-28 14:18:28.743 +03:00 [DBG] ActionApiDescriptionModel.Create: Permissions.GetAsyncByProviderNameAndProviderKey -2026-01-28 14:18:28.743 +03:00 [DBG] ActionApiDescriptionModel.Create: Permissions.GetByGroupAsyncByGroupNameAndProviderNameAndProviderKey -2026-01-28 14:18:28.743 +03:00 [DBG] ActionApiDescriptionModel.Create: Permissions.UpdateAsyncByProviderNameAndProviderKeyAndInput -2026-01-28 14:18:28.743 +03:00 [DBG] ActionApiDescriptionModel.Create: Permissions.GetResourceProviderKeyLookupServicesAsyncByResourceName -2026-01-28 14:18:28.743 +03:00 [DBG] ActionApiDescriptionModel.Create: Permissions.SearchResourceProviderKeyAsyncByResourceNameAndServiceNameAndFilterAndPage -2026-01-28 14:18:28.743 +03:00 [DBG] ActionApiDescriptionModel.Create: Permissions.GetResourceDefinitionsAsyncByResourceName -2026-01-28 14:18:28.743 +03:00 [DBG] ActionApiDescriptionModel.Create: Permissions.GetResourceAsyncByResourceNameAndResourceKey -2026-01-28 14:18:28.744 +03:00 [DBG] ActionApiDescriptionModel.Create: Permissions.GetResourceByProviderAsyncByResourceNameAndResourceKeyAndProviderNameAndProviderKey -2026-01-28 14:18:28.744 +03:00 [DBG] ActionApiDescriptionModel.Create: Permissions.UpdateResourceAsyncByResourceNameAndResourceKeyAndInput -2026-01-28 14:18:28.744 +03:00 [DBG] ActionApiDescriptionModel.Create: Permissions.DeleteResourceAsyncByResourceNameAndResourceKeyAndProviderNameAndProviderKey -2026-01-28 14:18:28.744 +03:00 [DBG] ActionApiDescriptionModel.Create: DynamicClaims.RefreshAsync -2026-01-28 14:18:28.744 +03:00 [DBG] ActionApiDescriptionModel.Create: Profile.GetAsync -2026-01-28 14:18:28.745 +03:00 [DBG] ActionApiDescriptionModel.Create: Profile.UpdateAsyncByInput -2026-01-28 14:18:28.745 +03:00 [DBG] ActionApiDescriptionModel.Create: Profile.ChangePasswordAsyncByInput -2026-01-28 14:18:28.745 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityRole.GetAllListAsync -2026-01-28 14:18:28.745 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityRole.GetListAsyncByInput -2026-01-28 14:18:28.746 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityRole.GetAsyncById -2026-01-28 14:18:28.746 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityRole.CreateAsyncByInput -2026-01-28 14:18:28.746 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityRole.UpdateAsyncByIdAndInput -2026-01-28 14:18:28.746 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityRole.DeleteAsyncById -2026-01-28 14:18:28.747 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityUser.GetAsyncById -2026-01-28 14:18:28.747 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityUser.GetListAsyncByInput -2026-01-28 14:18:28.747 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityUser.CreateAsyncByInput -2026-01-28 14:18:28.748 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityUser.UpdateAsyncByIdAndInput -2026-01-28 14:18:28.748 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityUser.DeleteAsyncById -2026-01-28 14:18:28.748 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityUser.GetRolesAsyncById -2026-01-28 14:18:28.748 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityUser.GetAssignableRolesAsync -2026-01-28 14:18:28.749 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityUser.UpdateRolesAsyncByIdAndInput -2026-01-28 14:18:28.749 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityUser.FindByUsernameAsyncByUserName -2026-01-28 14:18:28.749 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityUser.FindByEmailAsyncByEmail -2026-01-28 14:18:28.749 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityUserLookup.FindByIdAsyncById -2026-01-28 14:18:28.750 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityUserLookup.FindByUserNameAsyncByUserName -2026-01-28 14:18:28.750 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityUserLookup.SearchAsyncByInput -2026-01-28 14:18:28.750 +03:00 [DBG] ActionApiDescriptionModel.Create: IdentityUserLookup.GetCountAsyncByInput -2026-01-28 14:18:28.751 +03:00 [DBG] ActionApiDescriptionModel.Create: AbpApplicationConfiguration.GetAsyncByOptions -2026-01-28 14:18:28.751 +03:00 [DBG] ActionApiDescriptionModel.Create: AbpApplicationLocalization.GetAsyncByInput -2026-01-28 14:18:28.751 +03:00 [DBG] ActionApiDescriptionModel.Create: AbpApiDefinition.GetByModel -2026-01-28 14:18:28.782 +03:00 [INF] Executing ContentResult with HTTP Response ContentType of application/javascript -2026-01-28 14:18:28.782 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 208.0854ms -2026-01-28 14:18:28.782 +03:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc)' -2026-01-28 14:18:28.783 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Abp/ServiceProxyScript - 200 17884 application/javascript 213.2883ms -2026-01-28 14:18:28.881 +03:00 [INF] Sending file. Request path: 'libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\7cp36y0v43-{0}-lhbtj9850u-lhbtj9850u.gz' -2026-01-28 14:18:28.881 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:28.881 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/bootstrap/js/bootstrap.bundle.js?_v=638923938477090000 - 200 207899 text/javascript 478.7109ms -2026-01-28 14:18:34.353 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44308/Account/Login - application/x-www-form-urlencoded 291 -2026-01-28 14:18:34.355 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:34.355 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:34.356 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:34.356 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:34.356 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:34.356 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2026-01-28 14:18:34.356 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:34.356 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2026-01-28 14:18:34.356 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2026-01-28 14:18:34.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2026-01-28 14:18:34.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2026-01-28 14:18:34.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:34.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2026-01-28 14:18:34.358 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2026-01-28 14:18:34.359 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:34.359 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:34.359 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:34.359 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:34.359 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:34.359 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:34.359 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:34.359 +03:00 [INF] Executing endpoint '/Account/Login' -2026-01-28 14:18:34.359 +03:00 [INF] Route matched with {page = "/Account/Login", area = "", action = "", controller = ""}. Executing page /Account/Login -2026-01-28 14:18:34.359 +03:00 [INF] Skipping the execution of current filter as its not the most effective filter implementing the policy Microsoft.AspNetCore.Mvc.ViewFeatures.IAntiforgeryPolicy -2026-01-28 14:18:34.376 +03:00 [INF] Executing handler method Volo.Abp.Account.Web.Pages.Account.LoginModel.OnPostAsync - ModelState is "Valid" -2026-01-28 14:18:35.459 +03:00 [INF] AuthenticationScheme: Identity.Application signed in. -2026-01-28 14:18:35.634 +03:00 [DBG] Remove dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:35.640 +03:00 [INF] Executed handler method OnPostAsync, returned result Microsoft.AspNetCore.Mvc.RedirectResult. -2026-01-28 14:18:35.644 +03:00 [INF] Executing RedirectResult, redirecting to /. -2026-01-28 14:18:35.644 +03:00 [INF] Executed page /Account/Login in 1284.968ms -2026-01-28 14:18:35.644 +03:00 [INF] Executed endpoint '/Account/Login' -2026-01-28 14:18:35.645 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44308/Account/Login - 302 0 null 1291.9734ms -2026-01-28 14:18:35.651 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/ - null null -2026-01-28 14:18:35.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:35.652 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:35.652 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:35.652 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:35.652 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:35.666 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:35.666 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:35.666 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:35.666 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:35.666 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:35.666 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:35.666 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:35.667 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:35.667 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:35.668 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:35.668 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:35.673 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:35.678 +03:00 [DBG] Filling dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:35.923 +03:00 [INF] Executing endpoint '/ (/)' -2026-01-28 14:18:35.931 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:SettingManagement.Emailing -2026-01-28 14:18:35.932 +03:00 [DBG] Not found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:SettingManagement.Emailing -2026-01-28 14:18:35.940 +03:00 [DBG] Getting all granted permissions from the repository for this provider name,key: U,34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:35.970 +03:00 [DBG] Setting the cache items. Count: 22 -2026-01-28 14:18:35.971 +03:00 [DBG] Finished setting the cache items. Count: 22 -2026-01-28 14:18:35.973 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:SettingManagement.Emailing -2026-01-28 14:18:35.973 +03:00 [DBG] Not found in the cache: pn:R,pk:admin,n:SettingManagement.Emailing -2026-01-28 14:18:35.974 +03:00 [DBG] Getting all granted permissions from the repository for this provider name,key: R,admin -2026-01-28 14:18:35.989 +03:00 [DBG] Setting the cache items. Count: 22 -2026-01-28 14:18:35.989 +03:00 [DBG] Finished setting the cache items. Count: 22 -2026-01-28 14:18:35.997 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants -2026-01-28 14:18:35.998 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants -2026-01-28 14:18:35.999 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles,pn:R,pk:admin,n:AbpIdentity.Users,pn:R,pk:admin,n:AbpTenantManagement.Tenants -2026-01-28 14:18:35.999 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles,pn:R,pk:admin,n:AbpIdentity.Users,pn:R,pk:admin,n:AbpTenantManagement.Tenants -2026-01-28 14:18:36.035 +03:00 [INF] Executed endpoint '/ (/)' -2026-01-28 14:18:36.037 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/ - 200 null text/html; charset=utf-8 385.2521ms -2026-01-28 14:18:36.097 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/core/abp.css - null null -2026-01-28 14:18:36.097 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/all.css - null null -2026-01-28 14:18:36.097 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2026-01-28 14:18:36.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.098 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/select2/css/select2.min.css - null null -2026-01-28 14:18:36.098 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.css - null null -2026-01-28 14:18:36.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.099 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/datatables.net-bs5/css/dataTables.bootstrap5.css - null null -2026-01-28 14:18:36.099 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/bootstrap-datepicker/bootstrap-datepicker.min.css - null null -2026-01-28 14:18:36.099 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/bootstrap-daterangepicker/daterangepicker.css - null null -2026-01-28 14:18:36.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.100 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.100 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.100 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.100 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.100 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.100 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.100 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.100 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.100 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.100 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.100 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.100 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.102 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/global-styles.css - null null -2026-01-28 14:18:36.102 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2026-01-28 14:18:36.103 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.MudBlazorUI/volo.abp.mudblazorui.css - null null -2026-01-28 14:18:36.103 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.103 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.103 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.103 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.103 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.103 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.103 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.103 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.103 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.103 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.103 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.103 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.103 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.103 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.103 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.103 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.103 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.103 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.103 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.103 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.103 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/MudBlazor/MudBlazor.min.css - null null -2026-01-28 14:18:36.103 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.103 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.103 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.103 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.103 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.103 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.103 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.103 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.103 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.103 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.103 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.103 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.103 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.103 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.103 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.103 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.103 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.103 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.103 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.103 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.104 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.104 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.104 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.104 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.104 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.104 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.104 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.104 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.104 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.104 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.104 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.104 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.104 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.104 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.104 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.104 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.104 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.104 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.105 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.105 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/themes/basic/main.css - null null -2026-01-28 14:18:36.105 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.105 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.105 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.105 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.105 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.105 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.105 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.105 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.105 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.106 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.106 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.106 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.106 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.106 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.106 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.106 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.106 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.106 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.106 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.106 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.106 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.106 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.106 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.106 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.106 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.106 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.106 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.106 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.106 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.106 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.107 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.107 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.107 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.107 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.107 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.107 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.107 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.107 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.107 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.107 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.107 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/blazor-global-styles.css - null null -2026-01-28 14:18:36.107 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.107 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.107 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.107 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.108 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.108 +03:00 [INF] Sending file. Request path: 'libs/abp/core/abp.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\534um4fsdt-{0}-6vev71rwdm-6vev71rwdm.gz' -2026-01-28 14:18:36.108 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.108 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.108 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/core/abp.css - 200 1364 text/css 11.4365ms -2026-01-28 14:18:36.108 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css - null null -2026-01-28 14:18:36.108 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.108 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.108 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.108 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.108 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.108 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.108 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.108 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.108 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.108 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.108 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.108 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.108 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.108 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.108 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.108 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.108 +03:00 [INF] Sending file. Request path: 'libs/bootstrap-daterangepicker/daterangepicker.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\z8ryymhgcw-{0}-85vbs1dise-85vbs1dise.gz' -2026-01-28 14:18:36.108 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.108 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.108 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.108 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.108 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.108 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.108 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.108 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.108 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.108 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.108 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/MudBlazor/MudBlazor.min.js - null null -2026-01-28 14:18:36.108 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.108 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/bg-01.png - null null -2026-01-28 14:18:36.109 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.109 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.109 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.109 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.109 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.109 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.109 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.109 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.109 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/img-support.png - null null -2026-01-28 14:18:36.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.109 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/img-blog.png - null null -2026-01-28 14:18:36.109 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.109 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.109 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.109 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.109 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.109 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.109 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.109 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.109 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.109 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.109 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.109 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.109 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2026-01-28 14:18:36.109 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/bootstrap-daterangepicker/daterangepicker.css - 200 8102 text/css 10.1709ms -2026-01-28 14:18:36.109 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.109 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2026-01-28 14:18:36.109 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.109 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.109 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.109 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.109 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.109 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.109 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.110 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.MudBlazorUI/volo.abp.mudblazorui.css'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.MudBlazorUI\obj\Debug\net10.0\compressed\giyoea8shq-{0}-8qeawnrprb-8qeawnrprb.gz' -2026-01-28 14:18:36.110 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.110 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.MudBlazorUI/volo.abp.mudblazorui.css - 200 1120 text/css 7.1084ms -2026-01-28 14:18:36.110 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/blazor.web.js - null null -2026-01-28 14:18:36.110 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.110 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.110 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.110 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.110 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.110 +03:00 [INF] Sending file. Request path: 'libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\14u3fu9aq9-{0}-p8jqw3ap0f-p8jqw3ap0f.gz' -2026-01-28 14:18:36.110 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.110 +03:00 [INF] The file _content/MudBlazor/MudBlazor.min.css was not modified -2026-01-28 14:18:36.110 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.css - 200 54888 text/css 12.4507ms -2026-01-28 14:18:36.110 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.110 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.110 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.110 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.110 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.110 +03:00 [INF] Sending file. Request path: 'libs/select2/css/select2.min.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\6ddblemzii-{0}-ntg7hq0exj-ntg7hq0exj.gz' -2026-01-28 14:18:36.111 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.111 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.111 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\dfuwed8qp2-{0}-9fxst9u6yk-9fxst9u6yk.gz' -2026-01-28 14:18:36.111 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.111 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/MudBlazor/MudBlazor.min.css - 304 null text/css 8.8361ms -2026-01-28 14:18:36.111 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/select2/css/select2.min.css - 200 14999 text/css 13.0682ms -2026-01-28 14:18:36.111 +03:00 [INF] Sending file. Request path: 'libs/datatables.net-bs5/css/dataTables.bootstrap5.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\2vxqr2b34z-{0}-ln8ra2a4gr-ln8ra2a4gr.gz' -2026-01-28 14:18:36.111 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.111 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/datatables.net-bs5/css/dataTables.bootstrap5.css - 200 21614 text/css 11.8776ms -2026-01-28 14:18:36.111 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.111 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.111 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\0vulsgakzi-{0}-2ej0o14t5y-2ej0o14t5y.gz' -2026-01-28 14:18:36.111 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.111 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.111 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/all.css - 200 110162 text/css 13.792ms -2026-01-28 14:18:36.111 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 38549 text/css 13.8841ms -2026-01-28 14:18:36.111 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.111 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.112 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.112 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.112 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.112 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.112 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.112 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.112 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.112 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.112 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.112 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.112 +03:00 [INF] Sending file. Request path: 'global-styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\rh9y3nvfnm-{0}-bbfo2klxrw-bbfo2klxrw.gz' -2026-01-28 14:18:36.112 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.112 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.112 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.112 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/global-styles.css - 200 284 text/css 10.5702ms -2026-01-28 14:18:36.112 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.112 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.112 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.112 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.112 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.112 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.112 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.112 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/themes/basic/main.css'. Physical path: 'D:\GitHub\abp\modules\basic-theme\src\Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme\obj\Debug\net10.0\compressed\fqd2rlnqku-{0}-tyyka3g39l-tyyka3g39l.gz' -2026-01-28 14:18:36.112 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.112 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\obj\Debug\net10.0\compressed\p1g0cu86en-{0}-c25c931rn9-c25c931rn9.gz' -2026-01-28 14:18:36.112 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.113 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/themes/basic/main.css - 200 120 text/css 7.7563ms -2026-01-28 14:18:36.113 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1375 text/css 10.6435ms -2026-01-28 14:18:36.113 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.113 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.113 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.113 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.113 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.113 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.114 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.114 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.114 +03:00 [INF] Sending file. Request path: 'blazor-global-styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\smexgl05zq-{0}-y3n6denrdr-y3n6denrdr.gz' -2026-01-28 14:18:36.114 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.114 +03:00 [INF] The file _content/MudBlazor/MudBlazor.min.js was not modified -2026-01-28 14:18:36.114 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.114 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.114 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.114 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.114 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.114 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/blazor-global-styles.css - 200 641 text/css 7.3298ms -2026-01-28 14:18:36.114 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.114 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.114 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.114 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/MudBlazor/MudBlazor.min.js - 304 null text/javascript 5.7955ms -2026-01-28 14:18:36.114 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.114 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.114 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.114 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.114 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.114 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.114 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.114 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.114 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.114 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.114 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.115 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.115 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.115 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.115 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.116 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.116 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.116 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.116 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.116 +03:00 [INF] The file _framework/blazor.web.js was not modified -2026-01-28 14:18:36.116 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.117 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/blazor.web.js - 304 null text/javascript 6.9899ms -2026-01-28 14:18:36.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.117 +03:00 [INF] Sending file. Request path: 'MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s4s6fpr8ex-{0}-oa8u55zyfs-oa8u55zyfs.gz' -2026-01-28 14:18:36.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.117 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.117 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css - 200 317 text/css 9.0345ms -2026-01-28 14:18:36.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.120 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.120 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.120 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.120 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.121 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.121 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.121 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.121 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.121 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.121 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.121 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.121 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.121 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.121 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.121 +03:00 [INF] Sending file. Request path: 'libs/bootstrap-datepicker/bootstrap-datepicker.min.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\c98qwcv8t9-{0}-hv5fnth7pn-hv5fnth7pn.gz' -2026-01-28 14:18:36.121 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.121 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.121 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.121 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.121 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.121 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.121 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.121 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.121 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.121 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/bootstrap-datepicker/bootstrap-datepicker.min.css - 200 15767 text/css 22.0416ms -2026-01-28 14:18:36.122 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.122 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.122 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.123 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.123 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\obj\Debug\net10.0\compressed\2mj6s76mwx-{0}-qb38od44a4-qb38od44a4.gz' -2026-01-28 14:18:36.123 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.123 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 486 text/javascript 13.9459ms -2026-01-28 14:18:36.123 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\obj\Debug\net10.0\compressed\rhkuekteef-{0}-cowusv9rvg-cowusv9rvg.gz' -2026-01-28 14:18:36.124 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.124 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8981 text/javascript 14.4166ms -2026-01-28 14:18:36.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.133 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.133 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.133 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.133 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.133 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.133 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.133 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.133 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.133 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.133 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.133 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.133 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.133 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.133 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.133 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.133 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.133 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.133 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.133 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.133 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.133 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.133 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.133 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.133 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.133 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.133 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.133 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.133 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.133 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.133 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.133 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.133 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.133 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.134 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.134 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.134 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.134 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.134 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.134 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.134 +03:00 [INF] The file images/getting-started/bg-01.png was not modified -2026-01-28 14:18:36.134 +03:00 [INF] The file images/getting-started/img-blog.png was not modified -2026-01-28 14:18:36.134 +03:00 [INF] The file images/getting-started/img-support.png was not modified -2026-01-28 14:18:36.134 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.134 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.134 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.134 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/bg-01.png - 304 null image/png 26.0453ms -2026-01-28 14:18:36.134 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/img-blog.png - 304 null image/png 25.8127ms -2026-01-28 14:18:36.134 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/img-support.png - 304 null image/png 25.8743ms -2026-01-28 14:18:36.168 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2 - null null -2026-01-28 14:18:36.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.169 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.169 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.169 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.169 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.173 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.173 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.173 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.173 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.173 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.173 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.173 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.173 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.173 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.173 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.173 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.175 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.175 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.175 +03:00 [INF] The file libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2 was not modified -2026-01-28 14:18:36.175 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.176 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2 - 304 null font/woff2 8.1821ms -2026-01-28 14:18:36.178 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2026-01-28 14:18:36.178 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.179 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.179 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.179 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.179 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.179 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 - null null -2026-01-28 14:18:36.179 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.179 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.179 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.179 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.179 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.182 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.182 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.182 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.182 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.182 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.182 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.182 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.182 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.182 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.182 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.182 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.182 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.182 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.182 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.183 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.183 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.183 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.183 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.183 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.183 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.183 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.183 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.184 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.184 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.184 +03:00 [INF] The file libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 was not modified -2026-01-28 14:18:36.184 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.184 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 - 304 null font/woff2 5.7139ms -2026-01-28 14:18:36.185 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.185 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.185 +03:00 [INF] The file libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 was not modified -2026-01-28 14:18:36.185 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.185 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 304 null font/woff2 7.5924ms -2026-01-28 14:18:36.231 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js - null null -2026-01-28 14:18:36.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.236 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.236 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.236 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.236 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.239 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.239 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.239 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.240 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.240 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.240 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.240 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.240 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.240 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.240 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.240 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.241 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.242 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.243 +03:00 [INF] Sending file. Request path: '_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js'. Physical path: 'C:\Users\ismai\.nuget\packages\microsoft.dotnet.hotreload.webassembly.browser\10.0.102\staticwebassets\Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js' -2026-01-28 14:18:36.243 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.243 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js - 200 1862 text/javascript 11.8416ms -2026-01-28 14:18:36.332 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.js - null null -2026-01-28 14:18:36.333 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.333 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.333 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.333 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.333 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.356 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.356 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.356 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.356 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.356 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.356 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.356 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.356 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.356 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.356 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.356 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.358 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.358 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.360 +03:00 [INF] Sending file. Request path: '_framework/dotnet.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uxk8is50o9-{0}-aooho9t0gv-aooho9t0gv.gz' -2026-01-28 14:18:36.361 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.361 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.js - 200 138290 text/javascript 28.7457ms -2026-01-28 14:18:36.397 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.0j6ezsi0n0.js - null null -2026-01-28 14:18:36.398 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.398 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.398 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.398 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.398 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.400 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.native.cs8mcre4gh.js - null null -2026-01-28 14:18:36.400 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.native.muve7a13r4.wasm - null null -2026-01-28 14:18:36.401 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.402 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.402 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.402 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.402 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.402 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.402 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.402 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.402 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.402 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.404 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.404 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.404 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.404 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.404 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.404 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.404 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.405 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.405 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.405 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.405 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.406 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.406 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.406 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.406 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.406 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.406 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.406 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.406 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.406 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.406 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.406 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.406 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.406 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.407 +03:00 [INF] The file _framework/dotnet.runtime.0j6ezsi0n0.js was not modified -2026-01-28 14:18:36.407 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.407 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.0j6ezsi0n0.js - 304 null text/javascript 9.4554ms -2026-01-28 14:18:36.407 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.407 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.407 +03:00 [INF] The file _framework/dotnet.native.muve7a13r4.wasm was not modified -2026-01-28 14:18:36.407 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.407 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.native.muve7a13r4.wasm - 304 null application/wasm 6.926ms -2026-01-28 14:18:36.408 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.408 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.408 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.408 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.408 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.408 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.408 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.408 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.408 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.408 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.408 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.409 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.410 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.410 +03:00 [INF] The file _framework/dotnet.native.cs8mcre4gh.js was not modified -2026-01-28 14:18:36.410 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.410 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.native.cs8mcre4gh.js - 304 null text/javascript 9.7425ms -2026-01-28 14:18:36.421 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.JavaScript.flbdejno7d.wasm - null null -2026-01-28 14:18:36.422 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.422 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.422 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.422 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.422 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.427 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.427 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.427 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.427 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.427 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.427 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.427 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.428 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.428 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.428 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.428 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.429 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.430 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.432 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.InteropServices.JavaScript.flbdejno7d.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s7btk1c9a3-{0}-flbdejno7d-flbdejno7d.gz' -2026-01-28 14:18:36.432 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.432 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.JavaScript.flbdejno7d.wasm - 200 79680 application/wasm 10.9533ms -2026-01-28 14:18:36.469 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.CoreLib.zjh2w4p93l.wasm - null null -2026-01-28 14:18:36.470 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.470 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.470 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.470 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.470 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.474 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.474 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.474 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.474 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.474 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.474 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.474 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.474 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.474 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.474 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.474 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.475 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.475 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.513 +03:00 [INF] Sending file. Request path: '_framework/System.Private.CoreLib.zjh2w4p93l.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6as1brjopk-{0}-zjh2w4p93l-zjh2w4p93l.gz' -2026-01-28 14:18:36.513 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.513 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.CoreLib.zjh2w4p93l.wasm - 200 4870686 application/wasm 44.0728ms -2026-01-28 14:18:36.556 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.rgbxj6i45y.pdb - null null -2026-01-28 14:18:36.557 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.557 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.557 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.557 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.557 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.560 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.560 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.560 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.560 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.560 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.560 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.560 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.561 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.561 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.561 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.561 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.561 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.562 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.563 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.rgbxj6i45y.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vzc2x4ap4x-{0}-rgbxj6i45y-rgbxj6i45y.gz' -2026-01-28 14:18:36.563 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.563 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.rgbxj6i45y.pdb - 200 19065 application/octet-stream 6.773ms -2026-01-28 14:18:36.570 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.3ihkiqtul0.pdb - null null -2026-01-28 14:18:36.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.574 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.574 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.574 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.574 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.574 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.574 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.574 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.574 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.574 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.574 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.574 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.575 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.575 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.576 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.3ihkiqtul0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6vzgo2e02t-{0}-3ihkiqtul0-3ihkiqtul0.gz' -2026-01-28 14:18:36.576 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.576 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.3ihkiqtul0.pdb - 200 18845 application/octet-stream 6.5369ms -2026-01-28 14:18:36.582 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.q12kofv66i.pdb - null null -2026-01-28 14:18:36.582 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.582 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.582 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.582 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.582 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.586 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.586 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.586 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.586 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.586 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.586 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.586 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.586 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.586 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.586 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.586 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.587 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.587 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.588 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.q12kofv66i.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tiqjr11wdr-{0}-q12kofv66i-q12kofv66i.gz' -2026-01-28 14:18:36.588 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.589 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.q12kofv66i.pdb - 200 40486 application/octet-stream 6.5888ms -2026-01-28 14:18:36.595 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.ugoz0mgqgy.pdb - null null -2026-01-28 14:18:36.595 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.596 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.596 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.596 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.596 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.599 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.599 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.599 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.599 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.599 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.599 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.599 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.599 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.599 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.599 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.599 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.600 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.601 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.602 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.ugoz0mgqgy.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3z9ena93oc-{0}-ugoz0mgqgy-ugoz0mgqgy.gz' -2026-01-28 14:18:36.602 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.602 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.ugoz0mgqgy.pdb - 200 31293 application/octet-stream 6.8666ms -2026-01-28 14:18:36.612 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.WebAssembly.imimiyzcuo.pdb - null null -2026-01-28 14:18:36.612 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.612 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.612 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.612 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.612 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.615 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.615 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.615 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.615 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.615 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.615 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.615 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.616 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.616 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.616 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.616 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.617 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.618 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.618 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Autofac.WebAssembly.imimiyzcuo.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\46uzmq97el-{0}-imimiyzcuo-imimiyzcuo.gz' -2026-01-28 14:18:36.619 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.619 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.WebAssembly.imimiyzcuo.pdb - 200 17837 application/octet-stream 7.1313ms -2026-01-28 14:18:36.627 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.xhf7sa1p5x.pdb - null null -2026-01-28 14:18:36.627 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.627 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.627 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.627 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.627 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.632 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.633 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.633 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.633 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.633 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.633 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.633 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.634 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.634 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.634 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.634 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.635 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.635 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.636 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.xhf7sa1p5x.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nvmr6rtxm8-{0}-xhf7sa1p5x-xhf7sa1p5x.gz' -2026-01-28 14:18:36.636 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.636 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.xhf7sa1p5x.pdb - 200 18717 application/octet-stream 9.5851ms -2026-01-28 14:18:36.651 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.aauy841uql.pdb - null null -2026-01-28 14:18:36.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.652 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.652 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.652 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.652 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.656 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.656 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.656 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.656 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.656 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.656 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.656 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.656 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.656 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.656 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.656 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.657 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.657 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.658 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.aauy841uql.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2jefoohlw9-{0}-aauy841uql-aauy841uql.gz' -2026-01-28 14:18:36.658 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.658 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.aauy841uql.pdb - 200 18717 application/octet-stream 7.1026ms -2026-01-28 14:18:36.663 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.gbnu5lon3p.pdb - null null -2026-01-28 14:18:36.664 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.664 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.664 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.664 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.664 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.668 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.668 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.668 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.668 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.668 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.668 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.668 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.668 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.668 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.668 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.668 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.669 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.669 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.670 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.gbnu5lon3p.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\yqm8xk8yh0-{0}-gbnu5lon3p-gbnu5lon3p.gz' -2026-01-28 14:18:36.670 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.670 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.gbnu5lon3p.pdb - 200 18277 application/octet-stream 6.865ms -2026-01-28 14:18:36.675 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.HttpApi.Client.puryd8tfts.pdb - null null -2026-01-28 14:18:36.676 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.676 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.676 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.676 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.676 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.679 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.679 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.679 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.679 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.679 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.679 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.679 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.679 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.679 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.679 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.679 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.680 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.680 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.681 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.HttpApi.Client.puryd8tfts.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wa1oh5lir8-{0}-puryd8tfts-puryd8tfts.gz' -2026-01-28 14:18:36.681 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.681 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.HttpApi.Client.puryd8tfts.pdb - 200 18313 application/octet-stream 5.8542ms -2026-01-28 14:18:36.688 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Application.Contracts.q930c1xwd6.pdb - null null -2026-01-28 14:18:36.689 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.689 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.689 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.689 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.689 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.692 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.692 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.692 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.692 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.692 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.692 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.692 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.692 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.692 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.692 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.692 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.693 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.693 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.694 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Application.Contracts.q930c1xwd6.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7jvwr8mtd4-{0}-q930c1xwd6-q930c1xwd6.gz' -2026-01-28 14:18:36.694 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.694 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Application.Contracts.q930c1xwd6.pdb - 200 17845 application/octet-stream 5.6674ms -2026-01-28 14:18:36.715 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Domain.Shared.bmn2636ymj.pdb - null null -2026-01-28 14:18:36.716 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.716 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.716 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.716 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.716 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.719 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.719 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.719 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.719 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.719 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.719 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.719 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.720 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.720 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.720 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.720 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.720 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.721 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.721 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Domain.Shared.bmn2636ymj.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rlbmklp40g-{0}-bmn2636ymj-bmn2636ymj.gz' -2026-01-28 14:18:36.721 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.721 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Domain.Shared.bmn2636ymj.pdb - 200 17373 application/octet-stream 5.9325ms -2026-01-28 14:18:36.727 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.tv5yl1psyg.pdb - null null -2026-01-28 14:18:36.727 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.727 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.727 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.727 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.727 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.731 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.731 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.731 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.731 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.731 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.731 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.731 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.731 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.731 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.731 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.731 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.732 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.732 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.733 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.tv5yl1psyg.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kaxpuw2pqs-{0}-tv5yl1psyg-tv5yl1psyg.gz' -2026-01-28 14:18:36.733 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.733 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.tv5yl1psyg.pdb - 200 21877 application/octet-stream 6.7209ms -2026-01-28 14:18:36.738 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.i3kyf3e5w5.pdb - null null -2026-01-28 14:18:36.738 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.738 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.739 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.739 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.739 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.742 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.742 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.742 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.742 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.742 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.742 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.742 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.743 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.743 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.743 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.743 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.743 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.744 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.744 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.i3kyf3e5w5.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3g4acw7rc0-{0}-i3kyf3e5w5-i3kyf3e5w5.gz' -2026-01-28 14:18:36.745 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.745 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.i3kyf3e5w5.pdb - 200 28037 application/octet-stream 6.6918ms -2026-01-28 14:18:36.750 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.hcs1zisgxl.pdb - null null -2026-01-28 14:18:36.751 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.751 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.751 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.751 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.751 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.753 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.753 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.753 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.753 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.753 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.753 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.753 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.753 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.753 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.753 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.753 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.754 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.754 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.755 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.hcs1zisgxl.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\iqrjqm25rb-{0}-hcs1zisgxl-hcs1zisgxl.gz' -2026-01-28 14:18:36.755 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.755 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.hcs1zisgxl.pdb - 200 41586 application/octet-stream 5.1883ms -2026-01-28 14:18:36.761 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.w6zddju3kj.pdb - null null -2026-01-28 14:18:36.761 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.761 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.761 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.761 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.761 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.764 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.764 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.764 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.764 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.764 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.764 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.764 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.764 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.764 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.764 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.764 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.765 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.765 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.776 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.w6zddju3kj.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wynnfd4qyp-{0}-w6zddju3kj-w6zddju3kj.gz' -2026-01-28 14:18:36.776 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.777 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.w6zddju3kj.pdb - 200 31269 application/octet-stream 16.1121ms -2026-01-28 14:18:36.785 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.kgrhtsi4hq.pdb - null null -2026-01-28 14:18:36.785 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.785 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.785 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.785 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.785 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.788 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.788 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.788 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.788 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.788 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.788 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.788 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.789 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.789 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.789 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.789 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.790 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.790 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.791 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.kgrhtsi4hq.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\htac70xodz-{0}-kgrhtsi4hq-kgrhtsi4hq.gz' -2026-01-28 14:18:36.791 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.791 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.kgrhtsi4hq.pdb - 200 18517 application/octet-stream 6.7591ms -2026-01-28 14:18:36.798 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.mqramojkbo.pdb - null null -2026-01-28 14:18:36.799 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.799 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.799 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.799 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.799 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.802 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.802 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.802 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.802 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.802 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.802 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.802 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.802 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.802 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.802 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.802 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.803 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.803 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.804 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.mqramojkbo.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mf8v92gj25-{0}-mqramojkbo-mqramojkbo.gz' -2026-01-28 14:18:36.804 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.804 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.mqramojkbo.pdb - 200 13921 application/octet-stream 5.9931ms -2026-01-28 14:18:36.811 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.kbf4e1o5yq.pdb - null null -2026-01-28 14:18:36.811 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.811 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.811 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.811 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.811 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.817 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.817 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.817 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.817 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.817 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.817 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.817 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.817 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.817 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.817 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.817 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.818 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.818 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.819 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.kbf4e1o5yq.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\075clw76hm-{0}-kbf4e1o5yq-kbf4e1o5yq.gz' -2026-01-28 14:18:36.819 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.820 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.kbf4e1o5yq.pdb - 200 21557 application/octet-stream 8.9124ms -2026-01-28 14:18:36.826 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.j3nmt0rh5o.pdb - null null -2026-01-28 14:18:36.827 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.827 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.827 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.827 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.827 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.830 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.830 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.830 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.830 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.830 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.830 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.830 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.830 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.830 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.830 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.830 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.831 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.831 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.832 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.j3nmt0rh5o.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gbgteom76y-{0}-j3nmt0rh5o-j3nmt0rh5o.gz' -2026-01-28 14:18:36.832 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.832 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.j3nmt0rh5o.pdb - 200 31349 application/octet-stream 5.3457ms -2026-01-28 14:18:36.837 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.ej4nfwopnt.pdb - null null -2026-01-28 14:18:36.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.840 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.840 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.840 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.840 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.840 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.840 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.840 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.840 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.840 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.840 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.840 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.841 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.841 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.842 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Blazor.MudBlazor.ej4nfwopnt.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8c1zm5wt8e-{0}-ej4nfwopnt-ej4nfwopnt.gz' -2026-01-28 14:18:36.842 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.842 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.ej4nfwopnt.pdb - 200 45622 application/octet-stream 5.4881ms -2026-01-28 14:18:36.848 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MudBlazorUI.kagx9siw5c.pdb - null null -2026-01-28 14:18:36.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.848 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.848 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.848 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.848 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.852 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.852 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.852 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.852 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.852 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.852 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.852 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.852 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.852 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.852 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.852 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.853 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.853 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.854 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MudBlazorUI.kagx9siw5c.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fb4n2yszse-{0}-kagx9siw5c-kagx9siw5c.gz' -2026-01-28 14:18:36.854 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.854 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MudBlazorUI.kagx9siw5c.pdb - 200 75523 application/octet-stream 6.3097ms -2026-01-28 14:18:36.860 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.h9wobfk88b.pdb - null null -2026-01-28 14:18:36.860 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.860 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.860 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.860 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.860 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.862 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.862 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.862 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.862 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.862 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.862 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.863 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.863 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.863 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.863 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.863 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.863 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.864 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.864 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.h9wobfk88b.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ouhgkzthum-{0}-h9wobfk88b-h9wobfk88b.gz' -2026-01-28 14:18:36.864 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.864 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.h9wobfk88b.pdb - 200 42806 application/octet-stream 4.8359ms -2026-01-28 14:18:36.870 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.sff8ai0aia.pdb - null null -2026-01-28 14:18:36.870 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.870 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.870 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.870 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.870 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.872 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.873 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.873 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.873 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.873 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.873 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.873 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.873 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.873 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.873 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.873 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.873 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.874 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.874 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.sff8ai0aia.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xdm6fxeedd-{0}-sff8ai0aia-sff8ai0aia.gz' -2026-01-28 14:18:36.874 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.874 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.sff8ai0aia.pdb - 200 18145 application/octet-stream 4.8433ms -2026-01-28 14:18:36.879 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.6hy2xofs6k.pdb - null null -2026-01-28 14:18:36.880 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.880 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.880 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.880 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.880 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.882 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.882 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.882 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.882 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.882 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.882 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.882 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.882 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.882 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.882 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.882 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.883 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.883 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.884 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.6hy2xofs6k.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wvossyu6ah-{0}-6hy2xofs6k-6hy2xofs6k.gz' -2026-01-28 14:18:36.884 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.884 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.6hy2xofs6k.pdb - 200 41322 application/octet-stream 4.8872ms -2026-01-28 14:18:36.890 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.phiqfrt9c2.pdb - null null -2026-01-28 14:18:36.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.891 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.891 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.891 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.891 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.894 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.894 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.894 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.894 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.894 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.894 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.894 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.894 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.894 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.894 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.894 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.895 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.895 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.896 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.phiqfrt9c2.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mq253tbkc6-{0}-phiqfrt9c2-phiqfrt9c2.gz' -2026-01-28 14:18:36.896 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.897 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.phiqfrt9c2.pdb - 200 28197 application/octet-stream 6.4686ms -2026-01-28 14:18:36.902 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.Application.Contracts.lnhr5y4bfl.pdb - null null -2026-01-28 14:18:36.902 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.902 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.902 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.902 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.902 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.904 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.905 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.905 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.905 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.905 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.905 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.905 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.905 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.905 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.905 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.905 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.905 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.906 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.907 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Account.Application.Contracts.lnhr5y4bfl.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uzxye9p8cy-{0}-lnhr5y4bfl-lnhr5y4bfl.gz' -2026-01-28 14:18:36.907 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.907 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.Application.Contracts.lnhr5y4bfl.pdb - 200 19021 application/octet-stream 5.1548ms -2026-01-28 14:18:36.912 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.HttpApi.Client.vbwanrrdq2.pdb - null null -2026-01-28 14:18:36.912 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.912 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.912 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.912 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.912 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.915 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.915 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.915 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.915 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.915 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.915 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.915 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.915 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.915 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.916 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.916 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.917 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.917 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.918 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Account.HttpApi.Client.vbwanrrdq2.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ntmq6e7ewr-{0}-vbwanrrdq2-vbwanrrdq2.gz' -2026-01-28 14:18:36.918 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.918 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.HttpApi.Client.vbwanrrdq2.pdb - 200 18073 application/octet-stream 5.8771ms -2026-01-28 14:18:36.923 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.hpzdukhxsy.pdb - null null -2026-01-28 14:18:36.924 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.924 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.924 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.924 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.924 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.927 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.927 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.927 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.927 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.927 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.927 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.927 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.927 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.928 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.928 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.928 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.928 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.929 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.929 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.hpzdukhxsy.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\eoau05i0af-{0}-hpzdukhxsy-hpzdukhxsy.gz' -2026-01-28 14:18:36.930 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.930 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.hpzdukhxsy.pdb - 200 25305 application/octet-stream 6.3061ms -2026-01-28 14:18:36.936 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Contracts.4guztbzukr.pdb - null null -2026-01-28 14:18:36.936 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.936 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.936 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.936 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.936 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.939 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.939 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.939 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.939 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.939 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.939 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.939 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.939 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.939 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.939 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.939 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.940 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.940 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.941 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.Contracts.4guztbzukr.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ur1wb3r0pv-{0}-4guztbzukr-4guztbzukr.gz' -2026-01-28 14:18:36.941 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.942 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Contracts.4guztbzukr.pdb - 200 26921 application/octet-stream 5.6287ms -2026-01-28 14:18:36.947 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.3fgrvz25ex.pdb - null null -2026-01-28 14:18:36.947 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.948 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.948 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.948 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.948 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.952 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.952 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.952 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.952 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.952 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.952 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.952 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.952 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.952 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.952 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.952 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.953 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.953 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.954 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Auditing.3fgrvz25ex.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\o0dl3ao57v-{0}-3fgrvz25ex-3fgrvz25ex.gz' -2026-01-28 14:18:36.954 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.954 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.3fgrvz25ex.pdb - 200 29913 application/octet-stream 6.83ms -2026-01-28 14:18:36.959 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.Contracts.ad5k0tpyib.pdb - null null -2026-01-28 14:18:36.959 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.959 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.959 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.959 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.959 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.962 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.962 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.962 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.962 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.962 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.962 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.962 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.962 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.962 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.962 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.962 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.963 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.963 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.964 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Auditing.Contracts.ad5k0tpyib.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wqxp9ykz4o-{0}-ad5k0tpyib-ad5k0tpyib.gz' -2026-01-28 14:18:36.964 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.964 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.Contracts.ad5k0tpyib.pdb - 200 14417 application/octet-stream 5.0628ms -2026-01-28 14:18:36.970 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AuditLogging.Domain.Shared.er7pf6ix9i.pdb - null null -2026-01-28 14:18:36.970 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.970 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.970 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.970 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.970 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.973 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.973 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.973 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.973 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.973 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.973 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.973 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.973 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.973 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.973 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.973 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.974 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.974 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.975 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AuditLogging.Domain.Shared.er7pf6ix9i.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5199po5zxq-{0}-er7pf6ix9i-er7pf6ix9i.gz' -2026-01-28 14:18:36.975 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.975 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AuditLogging.Domain.Shared.er7pf6ix9i.pdb - 200 16493 application/octet-stream 4.7914ms -2026-01-28 14:18:36.979 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.c2wpqbl74n.pdb - null null -2026-01-28 14:18:36.979 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.980 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.980 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.980 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.980 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.983 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.983 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.983 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.983 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.983 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.983 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.983 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.983 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.983 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.983 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.983 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.984 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.984 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.985 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Authorization.c2wpqbl74n.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sb9kt3tht9-{0}-c2wpqbl74n-c2wpqbl74n.gz' -2026-01-28 14:18:36.985 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.985 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.c2wpqbl74n.pdb - 200 41330 application/octet-stream 6.1242ms -2026-01-28 14:18:36.992 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.Abstractions.njkrkpdqox.pdb - null null -2026-01-28 14:18:36.992 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.992 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:36.992 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:36.992 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:36.992 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:36.995 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.995 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.995 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:36.995 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:36.995 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:36.995 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:36.995 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.995 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:36.995 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:36.996 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:36.996 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:36.996 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:36.997 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.997 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Authorization.Abstractions.njkrkpdqox.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\09yc6y4n5e-{0}-njkrkpdqox-njkrkpdqox.gz' -2026-01-28 14:18:36.997 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:36.998 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.Abstractions.njkrkpdqox.pdb - 200 27181 application/octet-stream 6.0456ms -2026-01-28 14:18:37.002 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.gjl6v1jjym.pdb - null null -2026-01-28 14:18:37.003 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.003 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.003 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.003 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.003 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.005 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.005 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.005 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.005 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.005 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.005 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.005 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.006 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.006 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.006 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.006 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.006 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.007 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.007 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Autofac.gjl6v1jjym.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jpkrtenkjs-{0}-gjl6v1jjym-gjl6v1jjym.gz' -2026-01-28 14:18:37.007 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.007 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.gjl6v1jjym.pdb - 200 18693 application/octet-stream 4.963ms -2026-01-28 14:18:37.012 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundJobs.Domain.Shared.5vpn00cswb.pdb - null null -2026-01-28 14:18:37.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.012 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.012 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.012 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.012 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.015 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.015 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.015 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.015 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.015 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.015 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.015 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.015 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.015 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.015 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.015 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.016 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.016 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.017 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BackgroundJobs.Domain.Shared.5vpn00cswb.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\htaazompkm-{0}-5vpn00cswb-5vpn00cswb.gz' -2026-01-28 14:18:37.017 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.017 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundJobs.Domain.Shared.5vpn00cswb.pdb - 200 13221 application/octet-stream 5.3936ms -2026-01-28 14:18:37.021 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundWorkers.huyj44uu0k.pdb - null null -2026-01-28 14:18:37.022 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.022 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.022 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.022 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.022 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.025 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.025 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.025 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.025 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.025 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.025 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.025 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.026 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.026 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.026 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.026 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.026 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.027 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.027 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BackgroundWorkers.huyj44uu0k.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ei0v3zqng-{0}-huyj44uu0k-huyj44uu0k.gz' -2026-01-28 14:18:37.027 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.028 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundWorkers.huyj44uu0k.pdb - 200 19469 application/octet-stream 6.3042ms -2026-01-28 14:18:37.032 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Caching.x1qmvuwbas.pdb - null null -2026-01-28 14:18:37.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.035 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.035 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.035 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.035 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.035 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.035 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.035 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.035 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.035 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.035 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.035 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.036 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.036 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.037 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Caching.x1qmvuwbas.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wokijgaifq-{0}-x1qmvuwbas-x1qmvuwbas.gz' -2026-01-28 14:18:37.037 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.037 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Caching.x1qmvuwbas.pdb - 200 37286 application/octet-stream 4.6635ms -2026-01-28 14:18:37.042 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Castle.Core.b02it10il0.pdb - null null -2026-01-28 14:18:37.043 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.043 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.043 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.043 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.043 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.046 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.046 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.046 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.046 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.046 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.046 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.046 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.046 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.046 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.046 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.046 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.047 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.047 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.048 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Castle.Core.b02it10il0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dte7v0ocsr-{0}-b02it10il0-b02it10il0.gz' -2026-01-28 14:18:37.048 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.048 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Castle.Core.b02it10il0.pdb - 200 15221 application/octet-stream 5.3977ms -2026-01-28 14:18:37.052 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Core.t1nnzj3qxb.pdb - null null -2026-01-28 14:18:37.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.052 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.052 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.052 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.052 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.055 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.055 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.055 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.055 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.055 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.055 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.055 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.055 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.055 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.055 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.055 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.056 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.056 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.058 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Core.t1nnzj3qxb.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c42x4ftr8l-{0}-t1nnzj3qxb-t1nnzj3qxb.gz' -2026-01-28 14:18:37.058 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.058 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Core.t1nnzj3qxb.pdb - 200 148177 application/octet-stream 6.2764ms -2026-01-28 14:18:37.063 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Data.9rv6w6qyku.pdb - null null -2026-01-28 14:18:37.063 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.063 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.063 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.063 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.063 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.066 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.066 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.066 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.066 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.066 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.066 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.066 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.066 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.066 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.066 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.066 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.067 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.068 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.068 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Data.9rv6w6qyku.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ze3wjukds-{0}-9rv6w6qyku-9rv6w6qyku.gz' -2026-01-28 14:18:37.068 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.068 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Data.9rv6w6qyku.pdb - 200 21821 application/octet-stream 5.6196ms -2026-01-28 14:18:37.074 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Ddd.Application.Contracts.giee71sla7.pdb - null null -2026-01-28 14:18:37.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.074 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.074 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.074 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.074 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.077 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.077 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.077 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.077 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.077 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.077 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.077 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.077 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.077 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.077 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.077 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.078 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.078 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.079 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Ddd.Application.Contracts.giee71sla7.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5aiafzhp1m-{0}-giee71sla7-giee71sla7.gz' -2026-01-28 14:18:37.079 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.079 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Ddd.Application.Contracts.giee71sla7.pdb - 200 23417 application/octet-stream 5.1029ms -2026-01-28 14:18:37.084 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.DistributedLocking.Abstractions.65nua6uxpe.pdb - null null -2026-01-28 14:18:37.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.084 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.084 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.084 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.084 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.087 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.087 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.087 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.087 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.087 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.087 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.087 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.087 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.087 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.087 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.087 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.088 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.088 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.089 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.DistributedLocking.Abstractions.65nua6uxpe.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\a8j0sb24cp-{0}-65nua6uxpe-65nua6uxpe.gz' -2026-01-28 14:18:37.089 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.089 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.DistributedLocking.Abstractions.65nua6uxpe.pdb - 200 14657 application/octet-stream 4.8141ms -2026-01-28 14:18:37.094 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.iceog8f4b1.pdb - null null -2026-01-28 14:18:37.094 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.094 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.094 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.094 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.094 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.096 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.096 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.096 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.096 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.096 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.096 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.096 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.097 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.097 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.097 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.097 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.097 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.097 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.098 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.EventBus.iceog8f4b1.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c7ycdiyl76-{0}-iceog8f4b1-iceog8f4b1.gz' -2026-01-28 14:18:37.098 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.098 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.iceog8f4b1.pdb - 200 37630 application/octet-stream 4.822ms -2026-01-28 14:18:37.104 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.Abstractions.xi5e4z12z9.pdb - null null -2026-01-28 14:18:37.104 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.104 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.104 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.104 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.104 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.107 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.107 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.107 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.107 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.107 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.107 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.107 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.107 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.107 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.107 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.107 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.108 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.108 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.109 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.EventBus.Abstractions.xi5e4z12z9.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\w7l86von3o-{0}-xi5e4z12z9-xi5e4z12z9.gz' -2026-01-28 14:18:37.109 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.109 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.Abstractions.xi5e4z12z9.pdb - 200 20237 application/octet-stream 5.2647ms -2026-01-28 14:18:37.114 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ExceptionHandling.25h2gy8c5p.pdb - null null -2026-01-28 14:18:37.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.114 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.114 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.114 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.114 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.116 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.116 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.116 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.116 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.116 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.116 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.116 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.116 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.117 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.117 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.117 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.117 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.117 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.118 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ExceptionHandling.25h2gy8c5p.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\m6s0vb39gb-{0}-25h2gy8c5p-25h2gy8c5p.gz' -2026-01-28 14:18:37.118 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.118 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ExceptionHandling.25h2gy8c5p.pdb - 200 20157 application/octet-stream 4.6049ms -2026-01-28 14:18:37.123 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Application.Contracts.0urd6kcrgp.pdb - null null -2026-01-28 14:18:37.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.124 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.124 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.124 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.124 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.126 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.126 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.126 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.126 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.126 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.127 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.127 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.127 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.127 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.127 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.127 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.128 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.128 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.128 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Application.Contracts.0urd6kcrgp.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0ru1qvb3x4-{0}-0urd6kcrgp-0urd6kcrgp.gz' -2026-01-28 14:18:37.128 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.129 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Application.Contracts.0urd6kcrgp.pdb - 200 16981 application/octet-stream 5.0663ms -2026-01-28 14:18:37.134 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Domain.Shared.4mozmqu5fv.pdb - null null -2026-01-28 14:18:37.134 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.134 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.134 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.134 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.135 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.138 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.138 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.138 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.138 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.138 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.138 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.138 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.138 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.138 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.138 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.138 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.139 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.139 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.140 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Domain.Shared.4mozmqu5fv.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dnjx07a9gy-{0}-4mozmqu5fv-4mozmqu5fv.gz' -2026-01-28 14:18:37.140 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.140 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Domain.Shared.4mozmqu5fv.pdb - 200 18405 application/octet-stream 6.2843ms -2026-01-28 14:18:37.146 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.HttpApi.Client.3n7n0nm412.pdb - null null -2026-01-28 14:18:37.146 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.146 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.146 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.146 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.146 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.149 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.149 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.149 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.149 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.149 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.149 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.149 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.149 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.149 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.149 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.149 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.150 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.150 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.151 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.HttpApi.Client.3n7n0nm412.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xephdxvmqy-{0}-3n7n0nm412-3n7n0nm412.gz' -2026-01-28 14:18:37.151 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.151 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.HttpApi.Client.3n7n0nm412.pdb - 200 16661 application/octet-stream 5.3807ms -2026-01-28 14:18:37.157 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Features.e0wztgo5kc.pdb - null null -2026-01-28 14:18:37.157 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.157 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.157 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.157 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.157 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.160 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.160 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.160 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.160 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.160 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.160 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.160 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.160 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.160 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.160 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.160 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.161 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.161 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.162 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Features.e0wztgo5kc.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lwwrm2rnuk-{0}-e0wztgo5kc-e0wztgo5kc.gz' -2026-01-28 14:18:37.162 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.163 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Features.e0wztgo5kc.pdb - 200 31093 application/octet-stream 5.7872ms -2026-01-28 14:18:37.169 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.GlobalFeatures.i3mx9avsa1.pdb - null null -2026-01-28 14:18:37.170 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.170 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.170 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.170 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.170 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.173 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.173 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.173 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.173 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.173 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.173 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.173 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.173 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.173 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.173 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.173 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.174 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.174 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.175 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.GlobalFeatures.i3mx9avsa1.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8hrz94lbbq-{0}-i3mx9avsa1-i3mx9avsa1.gz' -2026-01-28 14:18:37.175 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.175 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.GlobalFeatures.i3mx9avsa1.pdb - 200 20401 application/octet-stream 5.8566ms -2026-01-28 14:18:37.180 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Guids.trl9ec6i34.pdb - null null -2026-01-28 14:18:37.180 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.181 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.181 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.181 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.181 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.183 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.183 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.183 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.183 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.183 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.183 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.183 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.184 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.184 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.184 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.184 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.185 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.185 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.186 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Guids.trl9ec6i34.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0qqhgjay94-{0}-trl9ec6i34-trl9ec6i34.gz' -2026-01-28 14:18:37.186 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.186 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Guids.trl9ec6i34.pdb - 200 14061 application/octet-stream 5.688ms -2026-01-28 14:18:37.190 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.e49tj9fcht.pdb - null null -2026-01-28 14:18:37.191 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.191 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.191 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.191 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.191 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.193 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.194 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.194 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.194 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.194 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.194 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.194 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.194 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.194 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.194 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.194 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.195 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.195 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.196 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.e49tj9fcht.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b3mu9af069-{0}-e49tj9fcht-e49tj9fcht.gz' -2026-01-28 14:18:37.196 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.196 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.e49tj9fcht.pdb - 200 31453 application/octet-stream 5.7361ms -2026-01-28 14:18:37.201 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Abstractions.k3c9afe7hi.pdb - null null -2026-01-28 14:18:37.202 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.202 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.202 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.202 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.202 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.205 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.205 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.205 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.205 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.205 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.205 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.205 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.205 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.205 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.205 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.205 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.206 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.206 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.207 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Abstractions.k3c9afe7hi.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j4y3kuv6se-{0}-k3c9afe7hi-k3c9afe7hi.gz' -2026-01-28 14:18:37.207 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.207 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Abstractions.k3c9afe7hi.pdb - 200 13525 application/octet-stream 6.0946ms -2026-01-28 14:18:37.211 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.yru01o8vkp.pdb - null null -2026-01-28 14:18:37.212 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.212 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.212 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.212 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.212 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.214 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.214 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.214 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.214 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.214 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.214 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.214 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.215 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.215 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.215 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.215 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.215 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.216 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.216 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.yru01o8vkp.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ttya30eyt8-{0}-yru01o8vkp-yru01o8vkp.gz' -2026-01-28 14:18:37.216 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.216 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.yru01o8vkp.pdb - 200 38918 application/octet-stream 5.0639ms -2026-01-28 14:18:37.225 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.3tflefedmx.pdb - null null -2026-01-28 14:18:37.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.225 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.225 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.225 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.225 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.228 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.228 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.228 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.228 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.228 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.228 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.228 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.229 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.229 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.229 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.229 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.229 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.229 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.230 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.IdentityModel.3tflefedmx.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\d3rz4s2afx-{0}-3tflefedmx-3tflefedmx.gz' -2026-01-28 14:18:37.230 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.230 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.3tflefedmx.pdb - 200 16433 application/octet-stream 5.4112ms -2026-01-28 14:18:37.238 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Application.Contracts.csmzqgy4d0.pdb - null null -2026-01-28 14:18:37.238 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.239 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.239 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.239 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.239 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.242 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.242 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.242 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.242 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.243 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.243 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.243 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.243 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.243 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.243 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.243 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.244 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.244 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.245 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Application.Contracts.csmzqgy4d0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\h1go2ee35q-{0}-csmzqgy4d0-csmzqgy4d0.gz' -2026-01-28 14:18:37.245 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.245 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Application.Contracts.csmzqgy4d0.pdb - 200 20665 application/octet-stream 6.9486ms -2026-01-28 14:18:37.251 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Domain.Shared.earp2x5g6u.pdb - null null -2026-01-28 14:18:37.251 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.251 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.251 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.251 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.251 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.254 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.254 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.254 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.254 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.254 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.254 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.254 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.254 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.254 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.254 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.254 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.255 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.255 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.256 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Domain.Shared.earp2x5g6u.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wq3qylwiyp-{0}-earp2x5g6u-earp2x5g6u.gz' -2026-01-28 14:18:37.256 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.257 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Domain.Shared.earp2x5g6u.pdb - 200 23785 application/octet-stream 5.9352ms -2026-01-28 14:18:37.262 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.HttpApi.Client.4ey4wjeneg.pdb - null null -2026-01-28 14:18:37.262 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.262 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.262 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.262 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.262 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.265 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.265 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.265 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.265 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.265 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.265 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.265 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.265 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.265 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.265 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.265 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.266 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.266 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.267 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.HttpApi.Client.4ey4wjeneg.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0u48eqlsj4-{0}-4ey4wjeneg-4ey4wjeneg.gz' -2026-01-28 14:18:37.267 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.267 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.HttpApi.Client.4ey4wjeneg.pdb - 200 23337 application/octet-stream 5.2001ms -2026-01-28 14:18:37.272 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.IdentityModel.biic7mtw2y.pdb - null null -2026-01-28 14:18:37.272 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.272 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.272 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.272 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.272 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.275 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.275 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.275 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.275 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.275 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.275 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.275 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.275 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.275 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.275 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.275 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.276 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.276 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.277 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.IdentityModel.biic7mtw2y.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\poi5v0je1c-{0}-biic7mtw2y-biic7mtw2y.gz' -2026-01-28 14:18:37.277 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.277 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.IdentityModel.biic7mtw2y.pdb - 200 20817 application/octet-stream 5.1307ms -2026-01-28 14:18:37.283 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.wxbyyf07mz.pdb - null null -2026-01-28 14:18:37.283 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.284 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.284 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.284 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.284 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.286 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.286 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.286 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.286 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.286 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.286 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.286 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.286 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.286 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.286 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.287 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.287 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.287 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.288 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.wxbyyf07mz.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rrchruuh0t-{0}-wxbyyf07mz-wxbyyf07mz.gz' -2026-01-28 14:18:37.288 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.288 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.wxbyyf07mz.pdb - 200 13757 application/octet-stream 5.2074ms -2026-01-28 14:18:37.293 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.Abstractions.b6z6t2mhzy.pdb - null null -2026-01-28 14:18:37.293 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.293 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.293 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.293 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.293 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.296 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.296 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.296 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.296 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.296 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.296 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.296 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.296 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.296 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.296 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.296 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.297 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.297 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.297 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.Abstractions.b6z6t2mhzy.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\u9w5uxptpu-{0}-b6z6t2mhzy-b6z6t2mhzy.gz' -2026-01-28 14:18:37.297 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.298 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.Abstractions.b6z6t2mhzy.pdb - 200 13249 application/octet-stream 4.9054ms -2026-01-28 14:18:37.302 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.SystemTextJson.rdlvucrzj7.pdb - null null -2026-01-28 14:18:37.302 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.302 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.302 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.302 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.302 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.305 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.305 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.305 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.305 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.305 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.305 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.305 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.306 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.306 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.306 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.306 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.306 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.306 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.307 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.SystemTextJson.rdlvucrzj7.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4rl2glc87e-{0}-rdlvucrzj7-rdlvucrzj7.gz' -2026-01-28 14:18:37.307 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.307 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.SystemTextJson.rdlvucrzj7.pdb - 200 21501 application/octet-stream 5.3176ms -2026-01-28 14:18:37.313 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.ellkzq2obz.pdb - null null -2026-01-28 14:18:37.314 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.314 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.314 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.314 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.314 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.317 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.317 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.317 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.317 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.317 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.317 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.317 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.317 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.317 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.317 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.317 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.318 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.318 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.319 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Localization.ellkzq2obz.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9jz0202bvx-{0}-ellkzq2obz-ellkzq2obz.gz' -2026-01-28 14:18:37.319 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.319 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.ellkzq2obz.pdb - 200 34682 application/octet-stream 5.8259ms -2026-01-28 14:18:37.325 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.Abstractions.e2czzeh6g0.pdb - null null -2026-01-28 14:18:37.325 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.325 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.325 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.325 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.325 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.328 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.328 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.328 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.328 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.328 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.328 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.328 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.328 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.328 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.328 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.328 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.329 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.329 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.330 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Localization.Abstractions.e2czzeh6g0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nql43ug6yv-{0}-e2czzeh6g0-e2czzeh6g0.gz' -2026-01-28 14:18:37.330 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.330 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.Abstractions.e2czzeh6g0.pdb - 200 16505 application/octet-stream 4.896ms -2026-01-28 14:18:37.335 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Mapperly.xzmrwcbuer.pdb - null null -2026-01-28 14:18:37.336 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.336 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.336 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.336 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.336 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.339 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.339 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.339 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.339 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.339 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.339 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.339 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.340 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.340 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.340 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.340 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.340 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.340 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.341 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Mapperly.xzmrwcbuer.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ir90d0l0q4-{0}-xzmrwcbuer-xzmrwcbuer.gz' -2026-01-28 14:18:37.341 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.341 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Mapperly.xzmrwcbuer.pdb - 200 18489 application/octet-stream 5.8117ms -2026-01-28 14:18:37.347 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Minify.jd3swzgz81.pdb - null null -2026-01-28 14:18:37.348 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.348 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.348 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.348 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.348 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.351 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.351 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.351 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.351 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.351 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.352 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.352 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.352 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.352 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.352 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.352 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.353 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.353 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.354 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Minify.jd3swzgz81.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6nicogsytc-{0}-jd3swzgz81-jd3swzgz81.gz' -2026-01-28 14:18:37.354 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.354 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Minify.jd3swzgz81.pdb - 200 14637 application/octet-stream 6.6009ms -2026-01-28 14:18:37.358 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.m645p8frzn.pdb - null null -2026-01-28 14:18:37.359 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.359 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.359 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.359 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.359 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.361 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.361 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.362 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.362 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.362 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.362 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.362 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.362 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.362 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.362 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.362 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.363 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.363 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.364 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MultiTenancy.m645p8frzn.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xypgrhxtpa-{0}-m645p8frzn-m645p8frzn.gz' -2026-01-28 14:18:37.364 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.364 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.m645p8frzn.pdb - 200 21073 application/octet-stream 5.4506ms -2026-01-28 14:18:37.370 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.Abstractions.6usxju90tg.pdb - null null -2026-01-28 14:18:37.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.370 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.370 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.370 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.370 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.373 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.373 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.373 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.373 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.373 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.373 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.373 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.373 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.374 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.374 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.374 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.374 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.374 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.375 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MultiTenancy.Abstractions.6usxju90tg.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bwd6m19o6e-{0}-6usxju90tg-6usxju90tg.gz' -2026-01-28 14:18:37.375 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.375 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.Abstractions.6usxju90tg.pdb - 200 19661 application/octet-stream 5.1071ms -2026-01-28 14:18:37.380 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectExtending.vubnqxtt45.pdb - null null -2026-01-28 14:18:37.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.381 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.381 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.381 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.381 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.384 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.384 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.384 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.384 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.384 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.384 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.384 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.384 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.384 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.384 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.384 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.385 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.385 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.386 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ObjectExtending.vubnqxtt45.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wybocaa0up-{0}-vubnqxtt45-vubnqxtt45.gz' -2026-01-28 14:18:37.386 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.386 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectExtending.vubnqxtt45.pdb - 200 31977 application/octet-stream 5.9176ms -2026-01-28 14:18:37.392 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectMapping.5ggcg7w9e7.pdb - null null -2026-01-28 14:18:37.392 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.392 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.392 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.392 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.392 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.395 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.395 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.395 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.395 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.395 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.395 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.395 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.395 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.395 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.395 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.395 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.395 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.395 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.396 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ObjectMapping.5ggcg7w9e7.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fsnac4k4sd-{0}-5ggcg7w9e7-5ggcg7w9e7.gz' -2026-01-28 14:18:37.396 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.396 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectMapping.5ggcg7w9e7.pdb - 200 17133 application/octet-stream 4.4217ms -2026-01-28 14:18:37.404 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.OpenIddict.Domain.Shared.z584yb9x48.pdb - null null -2026-01-28 14:18:37.405 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.405 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.405 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.405 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.405 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.407 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.407 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.407 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.407 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.407 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.407 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.407 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.408 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.408 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.408 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.408 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.408 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.408 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.409 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.OpenIddict.Domain.Shared.z584yb9x48.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ofhohlcsdd-{0}-z584yb9x48-z584yb9x48.gz' -2026-01-28 14:18:37.409 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.409 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.OpenIddict.Domain.Shared.z584yb9x48.pdb - 200 17397 application/octet-stream 4.899ms -2026-01-28 14:18:37.414 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Application.Contracts.yiquol1hlc.pdb - null null -2026-01-28 14:18:37.415 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.415 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.415 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.415 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.415 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.418 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.418 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.418 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.418 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.418 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.418 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.418 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.418 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.418 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.418 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.418 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.419 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.419 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.419 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Application.Contracts.yiquol1hlc.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0j5tpaf1fb-{0}-yiquol1hlc-yiquol1hlc.gz' -2026-01-28 14:18:37.420 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.420 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Application.Contracts.yiquol1hlc.pdb - 200 18373 application/octet-stream 5.2047ms -2026-01-28 14:18:37.425 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Domain.Shared.vduqctl6j9.pdb - null null -2026-01-28 14:18:37.425 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.425 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.425 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.425 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.425 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.427 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.427 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.427 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.427 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.427 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.428 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.428 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.428 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.428 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.428 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.428 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.428 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.429 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.429 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Domain.Shared.vduqctl6j9.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c9ti4wxngh-{0}-vduqctl6j9-vduqctl6j9.gz' -2026-01-28 14:18:37.429 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.429 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Domain.Shared.vduqctl6j9.pdb - 200 16501 application/octet-stream 4.7132ms -2026-01-28 14:18:37.435 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.HttpApi.Client.3dsrqtlur0.pdb - null null -2026-01-28 14:18:37.435 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.435 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.436 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.436 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.436 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.438 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.438 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.438 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.438 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.438 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.438 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.438 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.438 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.438 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.438 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.438 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.439 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.439 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.440 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.HttpApi.Client.3dsrqtlur0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7d7e24takc-{0}-3dsrqtlur0-3dsrqtlur0.gz' -2026-01-28 14:18:37.440 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.440 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.HttpApi.Client.3dsrqtlur0.pdb - 200 18361 application/octet-stream 4.8249ms -2026-01-28 14:18:37.446 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.RemoteServices.f0xptgiufw.pdb - null null -2026-01-28 14:18:37.446 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.446 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.446 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.446 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.446 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.449 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.449 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.449 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.449 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.449 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.449 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.449 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.449 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.449 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.449 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.449 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.450 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.450 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.450 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.RemoteServices.f0xptgiufw.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uib6a0l2w6-{0}-f0xptgiufw-f0xptgiufw.gz' -2026-01-28 14:18:37.450 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.451 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.RemoteServices.f0xptgiufw.pdb - 200 16053 application/octet-stream 4.9276ms -2026-01-28 14:18:37.455 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Security.zhp0sm48kb.pdb - null null -2026-01-28 14:18:37.455 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.455 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.455 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.455 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.455 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.458 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.458 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.458 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.458 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.458 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.458 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.458 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.458 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.458 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.458 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.458 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.459 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.459 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.459 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Security.zhp0sm48kb.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sx6n9iy4yj-{0}-zhp0sm48kb-zhp0sm48kb.gz' -2026-01-28 14:18:37.460 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.460 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Security.zhp0sm48kb.pdb - 200 29941 application/octet-stream 4.9516ms -2026-01-28 14:18:37.464 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Serialization.iselyci50i.pdb - null null -2026-01-28 14:18:37.465 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.465 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.465 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.465 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.465 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.468 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.468 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.468 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.468 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.468 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.468 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.468 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.469 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.469 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.469 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.469 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.470 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.470 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.471 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Serialization.iselyci50i.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ohz7m9cvuj-{0}-iselyci50i-iselyci50i.gz' -2026-01-28 14:18:37.471 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.471 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Serialization.iselyci50i.pdb - 200 13901 application/octet-stream 6.438ms -2026-01-28 14:18:37.476 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Application.Contracts.oa8ze5tkwx.pdb - null null -2026-01-28 14:18:37.477 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.477 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.477 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.477 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.477 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.479 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.479 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.479 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.479 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.479 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.480 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.480 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.480 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.480 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.480 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.480 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.480 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.481 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.482 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Application.Contracts.oa8ze5tkwx.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n5hx9tj0h8-{0}-oa8ze5tkwx-oa8ze5tkwx.gz' -2026-01-28 14:18:37.482 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.482 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Application.Contracts.oa8ze5tkwx.pdb - 200 17249 application/octet-stream 5.5333ms -2026-01-28 14:18:37.487 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Domain.Shared.rb0zy7dgue.pdb - null null -2026-01-28 14:18:37.487 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.487 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.487 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.487 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.487 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.490 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.490 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.490 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.490 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.490 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.490 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.490 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.491 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.491 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.491 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.491 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.491 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.492 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.492 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Domain.Shared.rb0zy7dgue.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gpxmodrted-{0}-rb0zy7dgue-rb0zy7dgue.gz' -2026-01-28 14:18:37.492 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.493 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Domain.Shared.rb0zy7dgue.pdb - 200 15881 application/octet-stream 5.9015ms -2026-01-28 14:18:37.497 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.HttpApi.Client.219qgzx23p.pdb - null null -2026-01-28 14:18:37.497 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.497 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.497 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.497 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.497 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.501 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.501 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.501 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.501 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.501 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.501 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.501 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.501 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.501 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.501 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.501 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.502 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.502 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.503 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.HttpApi.Client.219qgzx23p.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vwkga7y8v6-{0}-219qgzx23p-219qgzx23p.gz' -2026-01-28 14:18:37.503 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.503 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.HttpApi.Client.219qgzx23p.pdb - 200 17273 application/octet-stream 5.8461ms -2026-01-28 14:18:37.508 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Settings.zg210hgmt5.pdb - null null -2026-01-28 14:18:37.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.509 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.509 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.509 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.509 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.512 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.512 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.512 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.512 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.512 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.512 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.512 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.512 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.512 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.512 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.512 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.513 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.513 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.514 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Settings.zg210hgmt5.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\69ib14dhz4-{0}-zg210hgmt5-zg210hgmt5.gz' -2026-01-28 14:18:37.514 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.514 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Settings.zg210hgmt5.pdb - 200 24709 application/octet-stream 5.4618ms -2026-01-28 14:18:37.519 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Application.Contracts.2kqwaqfq07.pdb - null null -2026-01-28 14:18:37.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.519 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.519 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.520 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.520 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.523 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.523 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.523 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.523 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.523 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.523 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.523 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.523 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.523 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.523 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.523 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.524 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.524 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.525 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Application.Contracts.2kqwaqfq07.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\usk06ilw8g-{0}-2kqwaqfq07-2kqwaqfq07.gz' -2026-01-28 14:18:37.525 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.525 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Application.Contracts.2kqwaqfq07.pdb - 200 16305 application/octet-stream 6.2739ms -2026-01-28 14:18:37.529 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Domain.Shared.8e6fpjlw3z.pdb - null null -2026-01-28 14:18:37.530 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.530 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.530 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.530 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.530 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.533 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.533 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.533 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.533 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.533 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.533 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.533 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.534 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.534 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.534 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.534 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.535 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.535 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.536 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Domain.Shared.8e6fpjlw3z.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\byh2ge6bdr-{0}-8e6fpjlw3z-8e6fpjlw3z.gz' -2026-01-28 14:18:37.536 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.536 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Domain.Shared.8e6fpjlw3z.pdb - 200 15609 application/octet-stream 6.516ms -2026-01-28 14:18:37.541 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.HttpApi.Client.0ep6vejlyv.pdb - null null -2026-01-28 14:18:37.541 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.541 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.541 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.541 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.541 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.544 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.544 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.544 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.544 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.544 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.544 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.544 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.544 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.544 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.544 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.544 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.545 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.545 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.546 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.HttpApi.Client.0ep6vejlyv.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b6ncobn1go-{0}-0ep6vejlyv-0ep6vejlyv.gz' -2026-01-28 14:18:37.546 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.546 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.HttpApi.Client.0ep6vejlyv.pdb - 200 17253 application/octet-stream 5.3045ms -2026-01-28 14:18:37.552 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Threading.ltl7sj60qd.pdb - null null -2026-01-28 14:18:37.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.552 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.552 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.552 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.552 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.554 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.555 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.555 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.555 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.555 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.555 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.555 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.555 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.555 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.555 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.555 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.556 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.556 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.556 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Threading.ltl7sj60qd.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\m4kji2jf2d-{0}-ltl7sj60qd-ltl7sj60qd.gz' -2026-01-28 14:18:37.556 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.557 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Threading.ltl7sj60qd.pdb - 200 22745 application/octet-stream 5.0088ms -2026-01-28 14:18:37.562 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Timing.4ite7giifl.pdb - null null -2026-01-28 14:18:37.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.565 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.565 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.566 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.566 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.566 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.566 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.566 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.566 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.566 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.566 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.566 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.566 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.567 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.567 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Timing.4ite7giifl.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ku2s5mtpx-{0}-4ite7giifl-4ite7giifl.gz' -2026-01-28 14:18:37.568 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.568 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Timing.4ite7giifl.pdb - 200 17233 application/octet-stream 5.9131ms -2026-01-28 14:18:37.575 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.hbvsia4uct.pdb - null null -2026-01-28 14:18:37.575 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.575 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.575 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.575 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.575 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.578 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.578 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.578 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.578 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.578 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.578 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.578 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.578 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.578 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.578 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.578 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.579 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.579 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.580 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.UI.hbvsia4uct.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ojvava7kjz-{0}-hbvsia4uct-hbvsia4uct.gz' -2026-01-28 14:18:37.580 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.580 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.hbvsia4uct.pdb - 200 15269 application/octet-stream 5.2874ms -2026-01-28 14:18:37.585 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.Navigation.xd013kg4jh.pdb - null null -2026-01-28 14:18:37.586 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.586 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.586 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.586 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.586 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.590 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.590 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.590 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.590 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.590 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.590 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.590 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.590 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.590 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.590 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.590 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.591 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.591 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.592 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.UI.Navigation.xd013kg4jh.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\opi85np659-{0}-xd013kg4jh-xd013kg4jh.gz' -2026-01-28 14:18:37.592 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.592 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.Navigation.xd013kg4jh.pdb - 200 25665 application/octet-stream 7.0925ms -2026-01-28 14:18:37.599 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Uow.re76cfcetz.pdb - null null -2026-01-28 14:18:37.599 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.599 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.599 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.599 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.600 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.602 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.602 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.602 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.602 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.602 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.602 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.602 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.603 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.603 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.603 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.603 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.603 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.604 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.604 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Uow.re76cfcetz.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\37xxpsk7fy-{0}-re76cfcetz-re76cfcetz.gz' -2026-01-28 14:18:37.604 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.604 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Uow.re76cfcetz.pdb - 200 26921 application/octet-stream 5.3248ms -2026-01-28 14:18:37.609 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Abstractions.8nynefv6wf.pdb - null null -2026-01-28 14:18:37.609 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.609 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.609 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.609 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.609 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.612 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.612 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.612 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.612 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.612 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.612 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.612 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.612 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.612 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.612 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.612 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.613 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.613 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.614 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Users.Abstractions.8nynefv6wf.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\02tit97twy-{0}-8nynefv6wf-8nynefv6wf.gz' -2026-01-28 14:18:37.614 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.614 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Abstractions.8nynefv6wf.pdb - 200 16949 application/octet-stream 5.4797ms -2026-01-28 14:18:37.620 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Domain.Shared.l4ascx0wfo.pdb - null null -2026-01-28 14:18:37.620 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.620 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.620 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.620 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.620 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.681 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.681 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.681 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.681 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.681 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.681 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.681 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.682 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.682 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.682 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.682 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.683 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.683 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.684 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Users.Domain.Shared.l4ascx0wfo.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\i5q2ei5dis-{0}-l4ascx0wfo-l4ascx0wfo.gz' -2026-01-28 14:18:37.684 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.684 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Domain.Shared.l4ascx0wfo.pdb - 200 13285 application/octet-stream 64.2881ms -2026-01-28 14:18:37.691 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.ksfguea92v.pdb - null null -2026-01-28 14:18:37.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.691 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.691 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.691 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.691 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.694 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.694 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.694 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.694 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.694 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.694 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.694 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.694 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.694 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.694 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.694 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.695 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.695 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.696 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Validation.ksfguea92v.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wypl5pd007-{0}-ksfguea92v-ksfguea92v.gz' -2026-01-28 14:18:37.696 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.696 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.ksfguea92v.pdb - 200 24513 application/octet-stream 5.0377ms -2026-01-28 14:18:37.701 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.Abstractions.zjvjxeb6lj.pdb - null null -2026-01-28 14:18:37.701 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.701 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.701 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.702 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.702 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.704 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.704 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.704 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.704 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.704 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.704 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.704 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.704 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.704 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.704 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.704 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.705 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.705 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.706 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Validation.Abstractions.zjvjxeb6lj.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mb6vj9j06o-{0}-zjvjxeb6lj-zjvjxeb6lj.gz' -2026-01-28 14:18:37.706 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.706 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.Abstractions.zjvjxeb6lj.pdb - 200 14137 application/octet-stream 5.0334ms -2026-01-28 14:18:37.710 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.VirtualFileSystem.kcqfs0t7tk.pdb - null null -2026-01-28 14:18:37.710 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.710 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.710 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.710 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.710 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.713 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.713 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.713 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.713 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.713 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.713 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.713 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.713 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.713 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.713 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.713 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.714 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.714 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.715 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.VirtualFileSystem.kcqfs0t7tk.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9vnkhoiruq-{0}-kcqfs0t7tk-kcqfs0t7tk.gz' -2026-01-28 14:18:37.715 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.715 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.VirtualFileSystem.kcqfs0t7tk.pdb - 200 21449 application/octet-stream 4.9851ms -2026-01-28 14:18:37.720 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.2ctxo9q0pu.pdb - null null -2026-01-28 14:18:37.720 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.720 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.720 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.720 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.720 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.722 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.723 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.723 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.723 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.723 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.723 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.723 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.723 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.723 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.723 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.723 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.723 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.723 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.724 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.2ctxo9q0pu.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\21kkcfw31s-{0}-2ctxo9q0pu-2ctxo9q0pu.gz' -2026-01-28 14:18:37.724 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.724 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.2ctxo9q0pu.pdb - 200 32145 application/octet-stream 4.2922ms -2026-01-28 14:18:37.730 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Autofac.le1wnuzdja.wasm - null null -2026-01-28 14:18:37.730 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.730 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.730 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.730 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.730 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.734 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.734 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.734 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.734 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.734 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.734 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.734 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.734 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.734 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.734 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.734 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.735 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.735 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.738 +03:00 [INF] Sending file. Request path: '_framework/Autofac.le1wnuzdja.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\le2bmj2hd0-{0}-le1wnuzdja-le1wnuzdja.gz' -2026-01-28 14:18:37.738 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.738 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Autofac.le1wnuzdja.wasm - 200 375661 application/wasm 8.5071ms -2026-01-28 14:18:37.757 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Autofac.Extensions.DependencyInjection.slmisa3m0h.wasm - null null -2026-01-28 14:18:37.758 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.758 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.758 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.758 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.758 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.761 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.761 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.761 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.761 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.761 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.761 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.761 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.761 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.761 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.761 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.761 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.762 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.762 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.763 +03:00 [INF] Sending file. Request path: '_framework/Autofac.Extensions.DependencyInjection.slmisa3m0h.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4h1lb8bivh-{0}-slmisa3m0h-slmisa3m0h.gz' -2026-01-28 14:18:37.763 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.763 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Autofac.Extensions.DependencyInjection.slmisa3m0h.wasm - 200 28470 application/wasm 5.4236ms -2026-01-28 14:18:37.768 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Autofac.Extras.DynamicProxy.tlrq82knod.wasm - null null -2026-01-28 14:18:37.769 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.769 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.769 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.769 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.769 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.772 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.772 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.772 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.772 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.772 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.772 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.772 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.772 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.772 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.772 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.772 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.773 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.773 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.774 +03:00 [INF] Sending file. Request path: '_framework/Autofac.Extras.DynamicProxy.tlrq82knod.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5nm56h6008-{0}-tlrq82knod-tlrq82knod.gz' -2026-01-28 14:18:37.774 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.774 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Autofac.Extras.DynamicProxy.tlrq82knod.wasm - 200 20278 application/wasm 6.0833ms -2026-01-28 14:18:37.778 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Castle.Core.dr7ya1fwgr.wasm - null null -2026-01-28 14:18:37.779 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.779 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.779 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.779 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.779 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.781 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.781 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.781 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.781 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.781 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.781 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.781 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.782 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.782 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.782 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.782 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.782 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.783 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.786 +03:00 [INF] Sending file. Request path: '_framework/Castle.Core.dr7ya1fwgr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mehy9ugib8-{0}-dr7ya1fwgr-dr7ya1fwgr.gz' -2026-01-28 14:18:37.786 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.786 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Castle.Core.dr7ya1fwgr.wasm - 200 388461 application/wasm 7.4492ms -2026-01-28 14:18:37.792 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Castle.Core.AsyncInterceptor.phbi0db4mk.wasm - null null -2026-01-28 14:18:37.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.792 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.792 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.792 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.792 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.795 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.795 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.795 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.795 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.795 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.795 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.795 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.795 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.795 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.795 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.795 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.796 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.796 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.797 +03:00 [INF] Sending file. Request path: '_framework/Castle.Core.AsyncInterceptor.phbi0db4mk.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dnds4j2x25-{0}-phbi0db4mk-phbi0db4mk.gz' -2026-01-28 14:18:37.797 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.797 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Castle.Core.AsyncInterceptor.phbi0db4mk.wasm - 200 19254 application/wasm 5.3798ms -2026-01-28 14:18:37.802 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Duende.IdentityModel.w8uizqq8rq.wasm - null null -2026-01-28 14:18:37.802 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.802 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.802 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.802 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.802 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.805 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.805 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.805 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.805 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.805 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.805 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.805 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.805 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.805 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.805 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.805 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.806 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.806 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.808 +03:00 [INF] Sending file. Request path: '_framework/Duende.IdentityModel.w8uizqq8rq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2h3cgpc6ac-{0}-w8uizqq8rq-w8uizqq8rq.gz' -2026-01-28 14:18:37.808 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.808 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Duende.IdentityModel.w8uizqq8rq.wasm - 200 202580 application/wasm 6.2823ms -2026-01-28 14:18:37.813 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/JetBrains.Annotations.30nyqsrum5.wasm - null null -2026-01-28 14:18:37.814 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.814 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.814 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.814 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.814 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.817 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.817 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.817 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.817 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.817 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.817 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.817 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.818 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.818 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.818 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.818 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.819 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.819 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.820 +03:00 [INF] Sending file. Request path: '_framework/JetBrains.Annotations.30nyqsrum5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6sdzj3kgop-{0}-30nyqsrum5-30nyqsrum5.gz' -2026-01-28 14:18:37.820 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.820 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/JetBrains.Annotations.30nyqsrum5.wasm - 200 122181 application/wasm 6.916ms -2026-01-28 14:18:37.825 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Authorization.f7yamg8acn.wasm - null null -2026-01-28 14:18:37.825 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.826 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.826 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.826 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.826 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.828 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.828 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.828 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.828 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.828 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.828 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.828 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.828 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.828 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.828 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.828 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.829 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.829 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.830 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Authorization.f7yamg8acn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\y8t8qzdrbk-{0}-f7yamg8acn-f7yamg8acn.gz' -2026-01-28 14:18:37.830 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.830 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Authorization.f7yamg8acn.wasm - 200 45371 application/wasm 4.8919ms -2026-01-28 14:18:37.835 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.i180xx2qq9.wasm - null null -2026-01-28 14:18:37.835 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.836 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.836 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.836 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.836 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.838 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.838 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.838 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.838 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.838 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.838 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.838 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.838 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.838 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.838 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.838 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.839 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.839 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.841 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.i180xx2qq9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\00mrq6s2ss-{0}-i180xx2qq9-i180xx2qq9.gz' -2026-01-28 14:18:37.841 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.841 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.i180xx2qq9.wasm - 200 388973 application/wasm 6.3333ms -2026-01-28 14:18:37.847 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Authorization.8nosel0t6a.wasm - null null -2026-01-28 14:18:37.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.847 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.847 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.847 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.847 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.849 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.849 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.849 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.849 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.849 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.849 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.849 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.850 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.850 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.850 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.850 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.850 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.851 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.851 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.Authorization.8nosel0t6a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b9vfzkzuzt-{0}-8nosel0t6a-8nosel0t6a.gz' -2026-01-28 14:18:37.851 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.851 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Authorization.8nosel0t6a.wasm - 200 23862 application/wasm 4.808ms -2026-01-28 14:18:37.856 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Forms.au92kshad9.wasm - null null -2026-01-28 14:18:37.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.857 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.857 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.857 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.857 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.860 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.860 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.860 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.860 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.860 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.860 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.860 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.860 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.860 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.860 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.860 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.861 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.861 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.862 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.Forms.au92kshad9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0l9h2m1r4h-{0}-au92kshad9-au92kshad9.gz' -2026-01-28 14:18:37.862 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.862 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Forms.au92kshad9.wasm - 200 37691 application/wasm 5.2765ms -2026-01-28 14:18:37.867 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Web.gl9seasc22.wasm - null null -2026-01-28 14:18:37.867 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.867 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.867 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.867 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.867 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.870 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.870 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.870 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.870 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.870 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.870 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.870 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.871 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.871 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.871 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.871 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.871 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.872 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.873 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.Web.gl9seasc22.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fqoi4if8m2-{0}-gl9seasc22-gl9seasc22.gz' -2026-01-28 14:18:37.873 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.873 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Web.gl9seasc22.wasm - 200 179023 application/wasm 6.7529ms -2026-01-28 14:18:37.879 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.9qaxkpf6y7.wasm - null null -2026-01-28 14:18:37.879 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.879 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.879 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.879 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.879 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.882 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.882 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.882 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.882 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.882 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.882 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.882 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.882 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.882 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.882 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.882 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.883 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.883 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.885 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.WebAssembly.9qaxkpf6y7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4vwfdqnp17-{0}-9qaxkpf6y7-9qaxkpf6y7.gz' -2026-01-28 14:18:37.885 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.885 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.9qaxkpf6y7.wasm - 200 155978 application/wasm 6.3387ms -2026-01-28 14:18:37.889 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.q8d1vzef3m.wasm - null null -2026-01-28 14:18:37.890 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.890 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.890 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.890 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.890 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.892 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.892 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.893 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.893 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.893 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.893 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.893 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.893 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.893 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.893 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.893 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.893 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.894 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.895 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.q8d1vzef3m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\19o2at4dip-{0}-q8d1vzef3m-q8d1vzef3m.gz' -2026-01-28 14:18:37.895 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.895 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.q8d1vzef3m.wasm - 200 96064 application/wasm 5.7323ms -2026-01-28 14:18:37.900 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Metadata.begmnasal1.wasm - null null -2026-01-28 14:18:37.901 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.903 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.903 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.903 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.903 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.903 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.903 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.903 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.903 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.903 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.903 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.903 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.904 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.904 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.904 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Metadata.begmnasal1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\94aawuaijs-{0}-begmnasal1-begmnasal1.gz' -2026-01-28 14:18:37.904 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.905 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Metadata.begmnasal1.wasm - 200 5942 application/wasm 4.4216ms -2026-01-28 14:18:37.908 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.WebUtilities.6cgd80d0to.wasm - null null -2026-01-28 14:18:37.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.909 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.909 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.909 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.909 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.911 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.911 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.912 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.912 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.912 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.912 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.912 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.912 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.912 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.912 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.912 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.912 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.913 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.914 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.WebUtilities.6cgd80d0to.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sk2xioyf5m-{0}-6cgd80d0to-6cgd80d0to.gz' -2026-01-28 14:18:37.914 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.914 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.WebUtilities.6cgd80d0to.wasm - 200 97088 application/wasm 5.7375ms -2026-01-28 14:18:37.920 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Bcl.AsyncInterfaces.a6wsrpgfw5.wasm - null null -2026-01-28 14:18:37.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.921 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.921 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.923 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.923 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.923 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.923 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.923 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.923 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.923 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.923 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.923 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.923 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.923 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.924 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.924 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.925 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Bcl.AsyncInterfaces.a6wsrpgfw5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\efezora84v-{0}-a6wsrpgfw5-a6wsrpgfw5.gz' -2026-01-28 14:18:37.925 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.925 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Bcl.AsyncInterfaces.a6wsrpgfw5.wasm - 200 9526 application/wasm 5.2733ms -2026-01-28 14:18:37.929 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.u1l3a5juxx.wasm - null null -2026-01-28 14:18:37.930 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.933 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.933 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.933 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.933 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.933 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.933 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.933 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.933 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.933 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.933 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.933 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.934 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.934 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.935 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.u1l3a5juxx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wloi09r5kq-{0}-u1l3a5juxx-u1l3a5juxx.gz' -2026-01-28 14:18:37.935 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.935 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.u1l3a5juxx.wasm - 200 56123 application/wasm 5.8949ms -2026-01-28 14:18:37.939 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Abstractions.vvlexwbaez.wasm - null null -2026-01-28 14:18:37.940 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.940 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.940 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.940 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.940 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.943 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.943 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.943 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.943 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.943 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.943 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.943 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.943 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.943 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.943 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.943 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.944 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.944 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.945 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Caching.Abstractions.vvlexwbaez.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b1crvod4be-{0}-vvlexwbaez-vvlexwbaez.gz' -2026-01-28 14:18:37.945 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.945 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Abstractions.vvlexwbaez.wasm - 200 27446 application/wasm 5.6097ms -2026-01-28 14:18:37.951 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Hybrid.u0s8zqcpy7.wasm - null null -2026-01-28 14:18:37.952 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.952 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.952 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.952 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.952 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.954 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.954 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.954 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.954 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.954 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.954 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.954 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.954 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.954 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.954 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.954 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.955 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.955 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.956 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Caching.Hybrid.u0s8zqcpy7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\t7frkttiob-{0}-u0s8zqcpy7-u0s8zqcpy7.gz' -2026-01-28 14:18:37.956 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.956 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Hybrid.u0s8zqcpy7.wasm - 200 85824 application/wasm 5.4938ms -2026-01-28 14:18:37.961 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Memory.6z3ajjz4f1.wasm - null null -2026-01-28 14:18:37.962 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.962 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.962 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.962 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.962 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.965 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.965 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.965 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.965 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.965 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.965 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.965 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.965 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.965 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.965 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.965 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.966 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.966 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.967 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Caching.Memory.6z3ajjz4f1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6gi3ua4ioz-{0}-6z3ajjz4f1-6z3ajjz4f1.gz' -2026-01-28 14:18:37.967 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.967 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Memory.6z3ajjz4f1.wasm - 200 37691 application/wasm 5.9957ms -2026-01-28 14:18:37.973 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.x8wh4xd62i.wasm - null null -2026-01-28 14:18:37.974 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.974 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.974 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.974 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.974 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.977 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.977 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.977 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.977 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.977 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.977 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.977 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.977 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.977 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.977 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.977 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.978 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.978 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.978 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.x8wh4xd62i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\h1kacpcskm-{0}-x8wh4xd62i-x8wh4xd62i.gz' -2026-01-28 14:18:37.978 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.979 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.x8wh4xd62i.wasm - 200 34619 application/wasm 5.4131ms -2026-01-28 14:18:37.986 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Abstractions.sgloa63pwd.wasm - null null -2026-01-28 14:18:37.986 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.986 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.986 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.986 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.986 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:37.990 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.990 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.990 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:37.990 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:37.990 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:37.990 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:37.990 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.990 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:37.990 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:37.990 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:37.990 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:37.990 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:37.991 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.991 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.Abstractions.sgloa63pwd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\zxi0ykhieh-{0}-sgloa63pwd-sgloa63pwd.gz' -2026-01-28 14:18:37.991 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:37.992 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Abstractions.sgloa63pwd.wasm - 200 18230 application/wasm 5.9636ms -2026-01-28 14:18:37.997 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Binder.3jwzw3qxt4.wasm - null null -2026-01-28 14:18:37.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.998 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:37.998 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:37.998 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:37.998 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.000 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.000 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.000 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.000 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.000 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.000 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.000 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.000 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.000 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.001 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.001 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.001 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.001 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.002 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.Binder.3jwzw3qxt4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ko014cnbr7-{0}-3jwzw3qxt4-3jwzw3qxt4.gz' -2026-01-28 14:18:38.002 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.003 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Binder.3jwzw3qxt4.wasm - 200 33083 application/wasm 5.4569ms -2026-01-28 14:18:38.009 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.CommandLine.z1qo7xx5ru.wasm - null null -2026-01-28 14:18:38.009 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.009 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.009 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.009 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.010 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.013 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.013 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.013 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.013 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.013 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.013 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.013 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.013 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.013 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.013 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.013 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.014 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.014 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.014 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.CommandLine.z1qo7xx5ru.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0qcnzm5lmb-{0}-z1qo7xx5ru-z1qo7xx5ru.gz' -2026-01-28 14:18:38.014 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.015 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.CommandLine.z1qo7xx5ru.wasm - 200 15158 application/wasm 5.8215ms -2026-01-28 14:18:38.019 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.EnvironmentVariables.3gcxsk3zbu.wasm - null null -2026-01-28 14:18:38.019 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.019 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.019 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.019 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.019 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.022 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.022 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.022 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.022 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.022 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.022 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.022 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.022 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.022 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.022 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.022 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.023 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.023 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.024 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.EnvironmentVariables.3gcxsk3zbu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\urvjz3sczp-{0}-3gcxsk3zbu-3gcxsk3zbu.gz' -2026-01-28 14:18:38.024 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.024 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.EnvironmentVariables.3gcxsk3zbu.wasm - 200 11574 application/wasm 5.3974ms -2026-01-28 14:18:38.028 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.FileExtensions.phra2kqghi.wasm - null null -2026-01-28 14:18:38.028 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.029 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.029 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.029 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.029 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.032 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.032 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.032 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.032 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.032 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.032 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.032 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.032 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.032 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.032 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.032 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.033 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.033 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.034 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.FileExtensions.phra2kqghi.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6yhtz7i0uq-{0}-phra2kqghi-phra2kqghi.gz' -2026-01-28 14:18:38.034 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.034 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.FileExtensions.phra2kqghi.wasm - 200 18230 application/wasm 5.9664ms -2026-01-28 14:18:38.039 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Json.9udmvturlf.wasm - null null -2026-01-28 14:18:38.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.039 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.039 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.039 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.039 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.042 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.042 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.042 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.042 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.042 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.042 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.042 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.042 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.042 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.042 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.042 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.043 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.043 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.044 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.Json.9udmvturlf.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jn8nx9ltxb-{0}-9udmvturlf-9udmvturlf.gz' -2026-01-28 14:18:38.044 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.044 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Json.9udmvturlf.wasm - 200 17718 application/wasm 5.0624ms -2026-01-28 14:18:38.049 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.UserSecrets.86yue58ssu.wasm - null null -2026-01-28 14:18:38.050 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.050 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.050 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.050 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.050 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.052 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.052 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.052 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.052 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.052 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.052 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.052 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.052 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.052 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.052 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.052 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.053 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.053 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.054 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.UserSecrets.86yue58ssu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wlq0vssna7-{0}-86yue58ssu-86yue58ssu.gz' -2026-01-28 14:18:38.054 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.054 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.UserSecrets.86yue58ssu.wasm - 200 16182 application/wasm 4.9862ms -2026-01-28 14:18:38.058 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.92ulj88j6e.wasm - null null -2026-01-28 14:18:38.059 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.059 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.062 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.062 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.062 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.062 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.062 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.062 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.062 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.062 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.062 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.062 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.062 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.063 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.063 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.064 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.DependencyInjection.92ulj88j6e.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ap6jjl5cdc-{0}-92ulj88j6e-92ulj88j6e.gz' -2026-01-28 14:18:38.064 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.064 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.92ulj88j6e.wasm - 200 85312 application/wasm 6.114ms -2026-01-28 14:18:38.069 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.qzg75988t9.wasm - null null -2026-01-28 14:18:38.069 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.069 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.069 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.069 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.069 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.072 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.072 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.072 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.072 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.072 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.072 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.072 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.072 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.072 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.072 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.072 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.073 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.073 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.074 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.DependencyInjection.Abstractions.qzg75988t9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2yinc5vl42-{0}-qzg75988t9-qzg75988t9.gz' -2026-01-28 14:18:38.074 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.074 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.qzg75988t9.wasm - 200 55611 application/wasm 5.1532ms -2026-01-28 14:18:38.079 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.tgzcelqpkb.wasm - null null -2026-01-28 14:18:38.079 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.079 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.079 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.079 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.079 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.082 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.082 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.082 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.082 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.082 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.082 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.082 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.082 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.082 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.082 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.082 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.083 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.083 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.084 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Diagnostics.tgzcelqpkb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\q77258df46-{0}-tgzcelqpkb-tgzcelqpkb.gz' -2026-01-28 14:18:38.084 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.084 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.tgzcelqpkb.wasm - 200 25910 application/wasm 5.1647ms -2026-01-28 14:18:38.090 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.Abstractions.hq61ozpvxa.wasm - null null -2026-01-28 14:18:38.091 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.091 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.091 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.091 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.091 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.093 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.093 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.093 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.093 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.093 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.093 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.093 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.094 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.094 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.094 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.094 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.094 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.095 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.095 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Diagnostics.Abstractions.hq61ozpvxa.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\hlwf1zkx1t-{0}-hq61ozpvxa-hq61ozpvxa.gz' -2026-01-28 14:18:38.095 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.095 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.Abstractions.hq61ozpvxa.wasm - 200 20790 application/wasm 5.2472ms -2026-01-28 14:18:38.100 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Abstractions.wbhloeatw3.wasm - null null -2026-01-28 14:18:38.101 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.101 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.101 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.101 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.101 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.103 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.103 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.103 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.103 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.103 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.103 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.103 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.103 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.103 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.103 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.103 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.104 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.104 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.105 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Abstractions.wbhloeatw3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\hwi4k0i86u-{0}-wbhloeatw3-wbhloeatw3.gz' -2026-01-28 14:18:38.105 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.105 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Abstractions.wbhloeatw3.wasm - 200 13110 application/wasm 5.0036ms -2026-01-28 14:18:38.108 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Composite.z8bwpsdnc0.wasm - null null -2026-01-28 14:18:38.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.109 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.109 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.109 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.109 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.111 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.111 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.111 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.111 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.111 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.111 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.111 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.111 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.111 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.111 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.111 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.112 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.112 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.112 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Composite.z8bwpsdnc0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9or5ity2wj-{0}-z8bwpsdnc0-z8bwpsdnc0.gz' -2026-01-28 14:18:38.112 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.113 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Composite.z8bwpsdnc0.wasm - 200 8502 application/wasm 4.1749ms -2026-01-28 14:18:38.116 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Embedded.ptqvg1m34t.wasm - null null -2026-01-28 14:18:38.117 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.120 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.120 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.120 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.120 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.120 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.120 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.120 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.120 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.120 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.120 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.120 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.121 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.122 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.123 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Embedded.ptqvg1m34t.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gud3t43je0-{0}-ptqvg1m34t-ptqvg1m34t.gz' -2026-01-28 14:18:38.123 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.123 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Embedded.ptqvg1m34t.wasm - 200 23350 application/wasm 6.2486ms -2026-01-28 14:18:38.130 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Physical.y5k56zvg10.wasm - null null -2026-01-28 14:18:38.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.131 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.131 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.131 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.131 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.133 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.133 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.133 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.133 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.133 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.133 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.133 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.133 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.133 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.133 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.133 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.134 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.134 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.135 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Physical.y5k56zvg10.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\02df65jx0j-{0}-y5k56zvg10-y5k56zvg10.gz' -2026-01-28 14:18:38.135 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.135 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Physical.y5k56zvg10.wasm - 200 35131 application/wasm 5.1318ms -2026-01-28 14:18:38.140 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileSystemGlobbing.4cqycihgg0.wasm - null null -2026-01-28 14:18:38.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.141 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.141 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.141 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.141 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.143 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.143 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.143 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.143 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.143 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.143 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.143 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.144 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.144 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.144 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.144 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.144 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.145 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.146 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileSystemGlobbing.4cqycihgg0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4328gy858z-{0}-4cqycihgg0-4cqycihgg0.gz' -2026-01-28 14:18:38.146 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.146 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileSystemGlobbing.4cqycihgg0.wasm - 200 37691 application/wasm 5.9059ms -2026-01-28 14:18:38.151 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Hosting.Abstractions.5v78u2d057.wasm - null null -2026-01-28 14:18:38.151 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.151 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.151 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.151 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.151 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.153 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.153 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.153 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.154 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.154 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.154 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.154 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.154 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.154 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.154 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.154 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.154 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.154 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.155 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Hosting.Abstractions.5v78u2d057.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0bjpxbow7h-{0}-5v78u2d057-5v78u2d057.gz' -2026-01-28 14:18:38.155 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.155 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Hosting.Abstractions.5v78u2d057.wasm - 200 43835 application/wasm 4.7474ms -2026-01-28 14:18:38.160 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Http.apre2arxjd.wasm - null null -2026-01-28 14:18:38.160 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.161 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.161 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.161 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.161 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.163 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.163 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.163 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.163 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.163 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.163 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.163 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.163 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.163 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.163 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.163 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.164 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.164 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.166 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Http.apre2arxjd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ocorhjn9ks-{0}-apre2arxjd-apre2arxjd.gz' -2026-01-28 14:18:38.166 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.166 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Http.apre2arxjd.wasm - 200 82752 application/wasm 6.008ms -2026-01-28 14:18:38.171 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.mml9tf1r1w.wasm - null null -2026-01-28 14:18:38.171 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.171 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.171 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.171 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.171 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.174 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.174 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.174 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.174 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.174 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.174 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.174 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.174 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.174 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.174 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.174 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.175 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.175 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.176 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Localization.mml9tf1r1w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uqdbs11skp-{0}-mml9tf1r1w-mml9tf1r1w.gz' -2026-01-28 14:18:38.176 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.176 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.mml9tf1r1w.wasm - 200 21302 application/wasm 5.6434ms -2026-01-28 14:18:38.186 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.Abstractions.80p7fyumuw.wasm - null null -2026-01-28 14:18:38.186 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.186 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.186 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.186 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.186 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.190 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.190 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.190 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.190 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.190 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.190 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.190 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.190 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.190 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.190 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.190 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.191 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.192 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.193 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Localization.Abstractions.80p7fyumuw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j8jaks8ba9-{0}-80p7fyumuw-80p7fyumuw.gz' -2026-01-28 14:18:38.193 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.193 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.Abstractions.80p7fyumuw.wasm - 200 9014 application/wasm 7.3383ms -2026-01-28 14:18:38.197 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.05o184w673.wasm - null null -2026-01-28 14:18:38.198 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.198 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.198 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.198 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.198 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.201 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.201 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.201 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.201 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.201 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.201 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.201 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.202 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.202 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.202 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.202 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.202 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.203 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.204 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Logging.05o184w673.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1cbwctdp50-{0}-05o184w673-05o184w673.gz' -2026-01-28 14:18:38.204 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.204 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.05o184w673.wasm - 200 41275 application/wasm 6.4691ms -2026-01-28 14:18:38.210 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.Abstractions.hwa38jh90v.wasm - null null -2026-01-28 14:18:38.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.211 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.211 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.211 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.211 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.213 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.213 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.213 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.213 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.213 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.213 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.213 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.214 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.214 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.214 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.214 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.215 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.215 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.216 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Logging.Abstractions.hwa38jh90v.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\zatd8kwe6z-{0}-hwa38jh90v-hwa38jh90v.gz' -2026-01-28 14:18:38.216 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.216 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.Abstractions.hwa38jh90v.wasm - 200 56635 application/wasm 5.8381ms -2026-01-28 14:18:38.221 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.zsk78mkyl2.wasm - null null -2026-01-28 14:18:38.222 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.222 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.222 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.222 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.222 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.225 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.225 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.225 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.225 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.225 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.225 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.225 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.225 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.225 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.225 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.225 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.226 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.226 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.227 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Options.zsk78mkyl2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nx5gv127wz-{0}-zsk78mkyl2-zsk78mkyl2.gz' -2026-01-28 14:18:38.227 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.227 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.zsk78mkyl2.wasm - 200 55099 application/wasm 6.1234ms -2026-01-28 14:18:38.234 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.ConfigurationExtensions.qltknulxmy.wasm - null null -2026-01-28 14:18:38.235 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.235 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.235 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.235 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.235 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.238 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.238 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.238 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.238 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.239 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.239 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.239 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.239 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.239 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.239 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.239 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.240 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.240 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.241 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Options.ConfigurationExtensions.qltknulxmy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\eycsz92dw7-{0}-qltknulxmy-qltknulxmy.gz' -2026-01-28 14:18:38.241 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.241 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.ConfigurationExtensions.qltknulxmy.wasm - 200 11574 application/wasm 6.8148ms -2026-01-28 14:18:38.247 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Primitives.51b5spqlwz.wasm - null null -2026-01-28 14:18:38.247 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.247 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.247 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.247 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.247 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.249 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.249 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.249 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.249 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.249 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.249 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.249 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.250 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.250 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.250 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.250 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.250 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.251 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.252 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Primitives.51b5spqlwz.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dtxltxy254-{0}-51b5spqlwz-51b5spqlwz.gz' -2026-01-28 14:18:38.252 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.252 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Primitives.51b5spqlwz.wasm - 200 34619 application/wasm 4.9415ms -2026-01-28 14:18:38.259 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Validation.vibclmvzbq.wasm - null null -2026-01-28 14:18:38.259 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.259 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.259 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.259 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.259 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.262 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.262 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.262 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.262 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.262 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.262 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.262 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.262 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.262 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.262 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.262 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.263 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.263 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.264 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Validation.vibclmvzbq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wxjaiwsnh4-{0}-vibclmvzbq-vibclmvzbq.gz' -2026-01-28 14:18:38.264 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.264 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Validation.vibclmvzbq.wasm - 200 33083 application/wasm 5.786ms -2026-01-28 14:18:38.270 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Abstractions.fm59ec96sb.wasm - null null -2026-01-28 14:18:38.270 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.271 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.271 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.271 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.271 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.274 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.274 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.274 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.274 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.274 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.274 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.274 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.274 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.274 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.274 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.274 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.275 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.275 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.276 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.Abstractions.fm59ec96sb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pw25ps676d-{0}-fm59ec96sb-fm59ec96sb.gz' -2026-01-28 14:18:38.276 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.276 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Abstractions.fm59ec96sb.wasm - 200 9014 application/wasm 6.3724ms -2026-01-28 14:18:38.281 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.JsonWebTokens.d706uu8nnf.wasm - null null -2026-01-28 14:18:38.282 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.282 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.282 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.282 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.282 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.285 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.285 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.285 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.285 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.285 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.285 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.285 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.285 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.285 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.285 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.285 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.286 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.286 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.288 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.JsonWebTokens.d706uu8nnf.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0ly9bxx2uc-{0}-d706uu8nnf-d706uu8nnf.gz' -2026-01-28 14:18:38.288 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.288 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.JsonWebTokens.d706uu8nnf.wasm - 200 161610 application/wasm 7.0864ms -2026-01-28 14:18:38.293 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Logging.lzotatrep2.wasm - null null -2026-01-28 14:18:38.294 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.294 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.294 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.294 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.294 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.297 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.297 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.297 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.297 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.297 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.297 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.297 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.297 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.297 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.297 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.297 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.298 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.298 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.299 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.Logging.lzotatrep2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\az540fuh9f-{0}-lzotatrep2-lzotatrep2.gz' -2026-01-28 14:18:38.299 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.299 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Logging.lzotatrep2.wasm - 200 26422 application/wasm 6.046ms -2026-01-28 14:18:38.305 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Tokens.zeqz59uvkx.wasm - null null -2026-01-28 14:18:38.306 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.306 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.306 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.306 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.306 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.309 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.309 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.309 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.309 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.309 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.309 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.309 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.309 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.309 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.309 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.309 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.310 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.310 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.313 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.Tokens.zeqz59uvkx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pe5jdgvqrx-{0}-zeqz59uvkx-zeqz59uvkx.gz' -2026-01-28 14:18:38.313 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.313 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Tokens.zeqz59uvkx.wasm - 200 374125 application/wasm 8.0291ms -2026-01-28 14:18:38.319 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.kksrzpvoig.wasm - null null -2026-01-28 14:18:38.320 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.322 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.322 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.322 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.322 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.322 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.322 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.322 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.322 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.322 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.322 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.322 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.323 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.323 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.324 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.JSInterop.kksrzpvoig.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fulott20a4-{0}-kksrzpvoig-kksrzpvoig.gz' -2026-01-28 14:18:38.324 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.324 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.kksrzpvoig.wasm - 200 64827 application/wasm 4.9534ms -2026-01-28 14:18:38.331 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.WebAssembly.9udcqny0aq.wasm - null null -2026-01-28 14:18:38.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.332 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.332 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.332 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.332 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.335 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.335 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.335 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.335 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.335 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.335 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.335 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.335 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.335 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.335 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.335 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.336 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.336 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.337 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.JSInterop.WebAssembly.9udcqny0aq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9m4wklcqem-{0}-9udcqny0aq-9udcqny0aq.gz' -2026-01-28 14:18:38.337 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.337 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.WebAssembly.9udcqny0aq.wasm - 200 14646 application/wasm 6.3428ms -2026-01-28 14:18:38.342 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Net.Http.Headers.dqwvlhacs5.wasm - null null -2026-01-28 14:18:38.342 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.342 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.342 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.342 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.342 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.345 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.345 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.345 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.345 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.345 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.345 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.345 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.346 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.346 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.346 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.346 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.346 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.347 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.348 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Net.Http.Headers.dqwvlhacs5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\awoyestlxb-{0}-dqwvlhacs5-dqwvlhacs5.gz' -2026-01-28 14:18:38.348 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.348 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Net.Http.Headers.dqwvlhacs5.wasm - 200 75072 application/wasm 6.5558ms -2026-01-28 14:18:38.355 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MudBlazor.0eq8xpu5ec.wasm - null null -2026-01-28 14:18:38.355 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.355 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.356 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.356 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.356 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.358 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.358 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.359 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.359 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.359 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.359 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.359 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.359 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.359 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.359 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.359 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.359 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.360 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.440 +03:00 [INF] Sending file. Request path: '_framework/MudBlazor.0eq8xpu5ec.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c8dbqtqx23-{0}-0eq8xpu5ec-0eq8xpu5ec.gz' -2026-01-28 14:18:38.441 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.441 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MudBlazor.0eq8xpu5ec.wasm - 200 9246396 application/wasm 86.3922ms -2026-01-28 14:18:38.463 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Context.y5n2fi0oo0.wasm - null null -2026-01-28 14:18:38.464 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.464 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.464 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.464 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.464 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.467 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.467 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.467 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.467 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.467 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.467 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.467 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.467 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.467 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.467 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.467 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.467 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.468 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.468 +03:00 [INF] Sending file. Request path: '_framework/Nito.AsyncEx.Context.y5n2fi0oo0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6cfa8ozy3y-{0}-y5n2fi0oo0-y5n2fi0oo0.gz' -2026-01-28 14:18:38.468 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.468 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Context.y5n2fi0oo0.wasm - 200 13622 application/wasm 5.0718ms -2026-01-28 14:18:38.474 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Tasks.pmw3wnkbvb.wasm - null null -2026-01-28 14:18:38.475 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.475 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.475 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.475 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.475 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.478 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.478 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.478 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.478 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.478 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.478 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.478 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.478 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.478 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.478 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.478 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.478 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.479 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.479 +03:00 [INF] Sending file. Request path: '_framework/Nito.AsyncEx.Tasks.pmw3wnkbvb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pw3yczwgxh-{0}-pmw3wnkbvb-pmw3wnkbvb.gz' -2026-01-28 14:18:38.479 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.479 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Tasks.pmw3wnkbvb.wasm - 200 35643 application/wasm 5.3108ms -2026-01-28 14:18:38.485 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Nito.Disposables.86nxvj1yiv.wasm - null null -2026-01-28 14:18:38.486 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.486 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.486 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.486 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.486 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.488 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.488 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.488 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.488 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.488 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.488 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.488 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.488 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.488 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.488 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.488 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.489 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.489 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.490 +03:00 [INF] Sending file. Request path: '_framework/Nito.Disposables.86nxvj1yiv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4m6819m7ll-{0}-86nxvj1yiv-86nxvj1yiv.gz' -2026-01-28 14:18:38.490 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.490 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Nito.Disposables.86nxvj1yiv.wasm - 200 22326 application/wasm 5.2545ms -2026-01-28 14:18:38.497 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/NUglify.p1yxori32v.wasm - null null -2026-01-28 14:18:38.498 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.498 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.498 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.498 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.498 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.501 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.501 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.501 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.501 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.501 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.501 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.501 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.501 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.501 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.501 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.501 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.502 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.502 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.507 +03:00 [INF] Sending file. Request path: '_framework/NUglify.p1yxori32v.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2fi9048uqb-{0}-p1yxori32v-p1yxori32v.gz' -2026-01-28 14:18:38.508 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.508 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/NUglify.p1yxori32v.wasm - 200 637333 application/wasm 10.4349ms -2026-01-28 14:18:38.517 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/OpenIddict.Abstractions.xc5u4bcwuv.wasm - null null -2026-01-28 14:18:38.517 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.518 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.518 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.518 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.518 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.520 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.520 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.520 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.520 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.520 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.520 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.520 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.521 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.521 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.521 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.521 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.522 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.522 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.525 +03:00 [INF] Sending file. Request path: '_framework/OpenIddict.Abstractions.xc5u4bcwuv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\46s7kaf9kj-{0}-xc5u4bcwuv-xc5u4bcwuv.gz' -2026-01-28 14:18:38.525 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.525 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/OpenIddict.Abstractions.xc5u4bcwuv.wasm - 200 380269 application/wasm 8.5198ms -2026-01-28 14:18:38.531 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Riok.Mapperly.Abstractions.bgo5wowxjs.wasm - null null -2026-01-28 14:18:38.532 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.532 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.539 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.539 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.539 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.539 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.539 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.539 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.539 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.540 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.541 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.541 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.541 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.542 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.542 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.543 +03:00 [INF] Sending file. Request path: '_framework/Riok.Mapperly.Abstractions.bgo5wowxjs.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3d5qji182j-{0}-bgo5wowxjs-bgo5wowxjs.gz' -2026-01-28 14:18:38.543 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.543 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Riok.Mapperly.Abstractions.bgo5wowxjs.wasm - 200 33083 application/wasm 12.1795ms -2026-01-28 14:18:38.549 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.CodeDom.fbxkfrockh.wasm - null null -2026-01-28 14:18:38.550 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.550 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.550 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.550 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.550 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.552 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.552 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.552 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.552 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.552 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.552 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.552 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.552 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.552 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.552 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.552 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.553 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.553 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.555 +03:00 [INF] Sending file. Request path: '_framework/System.CodeDom.fbxkfrockh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j53ve7gv1w-{0}-fbxkfrockh-fbxkfrockh.gz' -2026-01-28 14:18:38.555 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.555 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.CodeDom.fbxkfrockh.wasm - 200 174415 application/wasm 6.0706ms -2026-01-28 14:18:38.561 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.EventLog.x6zrz89c6o.wasm - null null -2026-01-28 14:18:38.562 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.562 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.564 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.564 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.565 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.565 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.565 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.565 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.565 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.565 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.565 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.565 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.565 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.565 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.566 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.567 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.EventLog.x6zrz89c6o.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j2puov35am-{0}-x6zrz89c6o-x6zrz89c6o.gz' -2026-01-28 14:18:38.567 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.567 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.EventLog.x6zrz89c6o.wasm - 200 41787 application/wasm 5.6181ms -2026-01-28 14:18:38.571 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IdentityModel.Tokens.Jwt.5tt1rwyygx.wasm - null null -2026-01-28 14:18:38.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.572 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.573 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.575 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.576 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.576 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.576 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.576 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.576 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.576 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.576 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.576 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.576 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.576 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.577 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.577 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.578 +03:00 [INF] Sending file. Request path: '_framework/System.IdentityModel.Tokens.Jwt.5tt1rwyygx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tr0pha0myb-{0}-5tt1rwyygx-5tt1rwyygx.gz' -2026-01-28 14:18:38.578 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.578 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IdentityModel.Tokens.Jwt.5tt1rwyygx.wasm - 200 81216 application/wasm 6.6579ms -2026-01-28 14:18:38.584 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.Dynamic.Core.2czhr4esfi.wasm - null null -2026-01-28 14:18:38.585 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.585 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.585 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.585 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.585 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.588 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.588 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.588 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.588 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.588 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.588 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.588 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.588 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.588 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.588 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.588 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.589 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.589 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.591 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.Dynamic.Core.2czhr4esfi.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\i8w7eyc5en-{0}-2czhr4esfi-2czhr4esfi.gz' -2026-01-28 14:18:38.591 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.592 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.Dynamic.Core.2czhr4esfi.wasm - 200 240985 application/wasm 7.3509ms -2026-01-28 14:18:38.597 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Management.ot1u48wl1s.wasm - null null -2026-01-28 14:18:38.598 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.598 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.598 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.598 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.598 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.606 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.606 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.606 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.606 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.606 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.606 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.606 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.606 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.606 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.606 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.606 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.607 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.607 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.608 +03:00 [INF] Sending file. Request path: '_framework/System.Management.ot1u48wl1s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\evjyfukwb1-{0}-ot1u48wl1s-ot1u48wl1s.gz' -2026-01-28 14:18:38.608 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.608 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Management.ot1u48wl1s.wasm - 200 63803 application/wasm 11.0484ms -2026-01-28 14:18:38.614 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/TimeZoneConverter.halbc9brmz.wasm - null null -2026-01-28 14:18:38.615 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.618 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.618 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.618 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.618 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.618 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.618 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.618 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.618 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.618 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.618 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.618 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.619 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.619 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.620 +03:00 [INF] Sending file. Request path: '_framework/TimeZoneConverter.halbc9brmz.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xqev0b9yez-{0}-halbc9brmz-halbc9brmz.gz' -2026-01-28 14:18:38.620 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.620 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/TimeZoneConverter.halbc9brmz.wasm - 200 63803 application/wasm 6.0453ms -2026-01-28 14:18:38.625 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.CSharp.aars8n89vy.wasm - null null -2026-01-28 14:18:38.626 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.626 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.626 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.626 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.626 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.628 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.628 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.628 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.628 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.628 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.628 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.628 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.629 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.629 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.629 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.629 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.629 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.630 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.632 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.CSharp.aars8n89vy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\esvbxkosdi-{0}-aars8n89vy-aars8n89vy.gz' -2026-01-28 14:18:38.632 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.632 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.CSharp.aars8n89vy.wasm - 200 301411 application/wasm 6.9108ms -2026-01-28 14:18:38.639 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.Core.upxd87cdr1.wasm - null null -2026-01-28 14:18:38.640 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.640 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.640 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.640 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.640 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.642 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.642 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.642 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.642 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.642 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.642 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.642 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.643 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.643 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.643 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.643 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.643 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.643 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.647 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.VisualBasic.Core.upxd87cdr1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jc5kei53j8-{0}-upxd87cdr1-upxd87cdr1.gz' -2026-01-28 14:18:38.647 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.647 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.Core.upxd87cdr1.wasm - 200 418674 application/wasm 7.6209ms -2026-01-28 14:18:38.652 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.lo3va0ewdb.wasm - null null -2026-01-28 14:18:38.653 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.653 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.653 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.653 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.653 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.656 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.656 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.656 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.656 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.656 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.656 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.656 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.656 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.656 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.656 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.656 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.657 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.657 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.658 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.VisualBasic.lo3va0ewdb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\57p19o16fi-{0}-lo3va0ewdb-lo3va0ewdb.gz' -2026-01-28 14:18:38.658 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.658 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.lo3va0ewdb.wasm - 200 6966 application/wasm 6.0937ms -2026-01-28 14:18:38.663 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Primitives.xf0i7ifc2c.wasm - null null -2026-01-28 14:18:38.663 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.664 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.664 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.664 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.664 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.666 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.666 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.666 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.666 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.666 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.666 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.666 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.667 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.667 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.667 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.667 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.667 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.668 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.668 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Win32.Primitives.xf0i7ifc2c.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\p8pizku5xb-{0}-xf0i7ifc2c-xf0i7ifc2c.gz' -2026-01-28 14:18:38.668 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.669 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Primitives.xf0i7ifc2c.wasm - 200 5430 application/wasm 5.6295ms -2026-01-28 14:18:38.674 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Registry.egcs66c38p.wasm - null null -2026-01-28 14:18:38.674 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.674 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.675 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.675 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.675 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.677 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.677 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.677 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.677 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.677 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.677 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.677 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.677 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.677 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.677 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.677 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.678 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.678 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.679 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Win32.Registry.egcs66c38p.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ouubhvk51-{0}-egcs66c38p-egcs66c38p.gz' -2026-01-28 14:18:38.679 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.679 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Registry.egcs66c38p.wasm - 200 22838 application/wasm 5.028ms -2026-01-28 14:18:38.684 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.AppContext.229uy454et.wasm - null null -2026-01-28 14:18:38.685 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.685 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.685 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.685 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.685 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.687 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.687 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.687 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.687 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.687 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.687 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.687 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.688 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.688 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.688 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.688 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.688 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.689 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.689 +03:00 [INF] Sending file. Request path: '_framework/System.AppContext.229uy454et.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vtyu92lgvy-{0}-229uy454et-229uy454et.gz' -2026-01-28 14:18:38.689 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.690 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.AppContext.229uy454et.wasm - 200 4918 application/wasm 5.5386ms -2026-01-28 14:18:38.695 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Buffers.ffy4vk49sl.wasm - null null -2026-01-28 14:18:38.695 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.695 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.696 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.696 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.696 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.698 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.698 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.698 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.698 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.698 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.698 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.699 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.699 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.699 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.699 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.699 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.700 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.700 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.701 +03:00 [INF] Sending file. Request path: '_framework/System.Buffers.ffy4vk49sl.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\abrvn071f9-{0}-ffy4vk49sl-ffy4vk49sl.gz' -2026-01-28 14:18:38.701 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.701 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Buffers.ffy4vk49sl.wasm - 200 4918 application/wasm 5.9779ms -2026-01-28 14:18:38.705 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.Concurrent.vwjty21qm0.wasm - null null -2026-01-28 14:18:38.706 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.706 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.706 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.706 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.706 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.708 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.708 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.708 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.708 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.708 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.708 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.708 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.709 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.709 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.709 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.709 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.709 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.709 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.710 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.Concurrent.vwjty21qm0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5kmfc755lz-{0}-vwjty21qm0-vwjty21qm0.gz' -2026-01-28 14:18:38.711 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.711 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.Concurrent.vwjty21qm0.wasm - 200 78656 application/wasm 5.2231ms -2026-01-28 14:18:38.715 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.Immutable.62ow9webvq.wasm - null null -2026-01-28 14:18:38.716 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.716 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.716 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.716 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.716 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.718 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.718 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.718 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.718 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.718 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.718 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.718 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.718 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.718 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.718 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.718 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.719 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.719 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.721 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.Immutable.62ow9webvq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\y8eoflnwlp-{0}-62ow9webvq-62ow9webvq.gz' -2026-01-28 14:18:38.721 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.721 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.Immutable.62ow9webvq.wasm - 200 240985 application/wasm 6.3558ms -2026-01-28 14:18:38.726 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.NonGeneric.8znze2bng9.wasm - null null -2026-01-28 14:18:38.727 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.727 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.727 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.727 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.727 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.729 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.729 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.729 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.730 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.730 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.730 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.730 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.730 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.730 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.730 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.730 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.731 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.731 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.732 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.NonGeneric.8znze2bng9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\iq26svu8f5-{0}-8znze2bng9-8znze2bng9.gz' -2026-01-28 14:18:38.732 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.732 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.NonGeneric.8znze2bng9.wasm - 200 37691 application/wasm 5.8551ms -2026-01-28 14:18:38.737 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.Specialized.xek5hgzu5v.wasm - null null -2026-01-28 14:18:38.738 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.738 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.738 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.738 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.738 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.740 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.740 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.741 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.741 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.741 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.741 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.741 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.741 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.741 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.741 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.741 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.742 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.742 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.743 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.Specialized.xek5hgzu5v.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4cpzjuj3r0-{0}-xek5hgzu5v-xek5hgzu5v.gz' -2026-01-28 14:18:38.743 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.743 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.Specialized.xek5hgzu5v.wasm - 200 37691 application/wasm 5.7537ms -2026-01-28 14:18:38.747 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.0nghqyig8i.wasm - null null -2026-01-28 14:18:38.748 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.748 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.748 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.748 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.748 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.751 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.751 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.751 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.751 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.751 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.751 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.751 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.751 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.751 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.751 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.751 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.752 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.752 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.753 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.0nghqyig8i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rssb0afnfp-{0}-0nghqyig8i-0nghqyig8i.gz' -2026-01-28 14:18:38.753 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.753 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.0nghqyig8i.wasm - 200 102725 application/wasm 6.0673ms -2026-01-28 14:18:38.760 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Annotations.x5puxnf36m.wasm - null null -2026-01-28 14:18:38.761 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.761 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.761 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.761 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.761 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.764 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.764 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.764 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.764 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.764 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.764 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.764 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.764 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.764 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.764 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.764 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.765 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.765 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.767 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.Annotations.x5puxnf36m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sxzb8xtw7k-{0}-x5puxnf36m-x5puxnf36m.gz' -2026-01-28 14:18:38.767 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.767 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Annotations.x5puxnf36m.wasm - 200 92480 application/wasm 6.873ms -2026-01-28 14:18:38.772 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.DataAnnotations.w951woxztj.wasm - null null -2026-01-28 14:18:38.773 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.773 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.773 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.773 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.773 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.776 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.776 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.776 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.776 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.776 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.776 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.776 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.777 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.777 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.777 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.777 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.777 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.777 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.778 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.DataAnnotations.w951woxztj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\koqxcel3zt-{0}-w951woxztj-w951woxztj.gz' -2026-01-28 14:18:38.778 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.778 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.DataAnnotations.w951woxztj.wasm - 200 6454 application/wasm 5.8492ms -2026-01-28 14:18:38.783 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.EventBasedAsync.xxfp6nuzvv.wasm - null null -2026-01-28 14:18:38.784 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.784 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.784 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.784 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.784 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.787 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.787 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.787 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.787 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.787 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.787 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.787 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.787 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.787 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.787 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.787 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.788 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.788 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.789 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.EventBasedAsync.xxfp6nuzvv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vq3ormnt3h-{0}-xxfp6nuzvv-xxfp6nuzvv.gz' -2026-01-28 14:18:38.789 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.789 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.EventBasedAsync.xxfp6nuzvv.wasm - 200 16182 application/wasm 5.9778ms -2026-01-28 14:18:38.794 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Primitives.lfp6xvb2nc.wasm - null null -2026-01-28 14:18:38.794 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.794 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.794 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.794 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.794 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.797 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.797 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.797 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.797 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.797 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.797 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.797 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.797 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.797 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.797 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.797 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.798 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.798 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.799 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.Primitives.lfp6xvb2nc.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\f7c6808jvl-{0}-lfp6xvb2nc-lfp6xvb2nc.gz' -2026-01-28 14:18:38.799 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.799 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Primitives.lfp6xvb2nc.wasm - 200 32054 application/wasm 5.6189ms -2026-01-28 14:18:38.807 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.TypeConverter.b6pminnty5.wasm - null null -2026-01-28 14:18:38.808 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.808 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.808 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.808 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.808 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.811 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.811 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.811 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.811 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.811 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.811 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.811 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.811 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.811 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.811 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.811 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.812 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.812 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.815 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.TypeConverter.b6pminnty5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lj5t7hnftt-{0}-b6pminnty5-b6pminnty5.gz' -2026-01-28 14:18:38.815 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.816 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.TypeConverter.b6pminnty5.wasm - 200 306531 application/wasm 8.4902ms -2026-01-28 14:18:38.838 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.1kxs5658en.wasm - null null -2026-01-28 14:18:38.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.839 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.839 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.839 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.839 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.842 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.842 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.842 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.842 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.842 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.842 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.842 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.843 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.843 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.843 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.843 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.844 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.844 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.845 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.1kxs5658en.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3bfqm2cg1o-{0}-1kxs5658en-1kxs5658en.gz' -2026-01-28 14:18:38.845 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.845 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.1kxs5658en.wasm - 200 5942 application/wasm 7.424ms -2026-01-28 14:18:38.852 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Configuration.dfuzh9rwie.wasm - null null -2026-01-28 14:18:38.853 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.853 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.853 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.853 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.853 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.857 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.857 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.857 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.858 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.858 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.858 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.858 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.858 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.858 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.858 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.858 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.859 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.859 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.860 +03:00 [INF] Sending file. Request path: '_framework/System.Configuration.dfuzh9rwie.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xe6xuwrov9-{0}-dfuzh9rwie-dfuzh9rwie.gz' -2026-01-28 14:18:38.860 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.860 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Configuration.dfuzh9rwie.wasm - 200 9014 application/wasm 7.9401ms -2026-01-28 14:18:38.866 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Console.5bpbf67g8o.wasm - null null -2026-01-28 14:18:38.867 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.867 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.867 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.867 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.867 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.871 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.871 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.871 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.871 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.871 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.871 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.871 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.871 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.871 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.871 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.871 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.873 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.873 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.874 +03:00 [INF] Sending file. Request path: '_framework/System.Console.5bpbf67g8o.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6mvz9phqs1-{0}-5bpbf67g8o-5bpbf67g8o.gz' -2026-01-28 14:18:38.874 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.874 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Console.5bpbf67g8o.wasm - 200 43835 application/wasm 7.9281ms -2026-01-28 14:18:38.882 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Core.zxsh7ohdyg.wasm - null null -2026-01-28 14:18:38.883 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.884 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.884 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.884 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.884 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.887 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.887 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.887 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.887 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.887 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.887 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.887 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.887 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.887 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.887 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.887 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.888 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.888 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.889 +03:00 [INF] Sending file. Request path: '_framework/System.Core.zxsh7ohdyg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\cubawh6yyf-{0}-zxsh7ohdyg-zxsh7ohdyg.gz' -2026-01-28 14:18:38.889 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.889 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Core.zxsh7ohdyg.wasm - 200 13110 application/wasm 7.6651ms -2026-01-28 14:18:38.895 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Data.Common.f0gomia98j.wasm - null null -2026-01-28 14:18:38.896 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.896 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.897 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.897 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.898 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.905 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.905 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.905 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.905 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.905 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.905 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.905 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.905 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.905 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.905 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.905 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.907 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.907 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.914 +03:00 [INF] Sending file. Request path: '_framework/System.Data.Common.f0gomia98j.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1c47smzjbl-{0}-f0gomia98j-f0gomia98j.gz' -2026-01-28 14:18:38.914 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.914 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Data.Common.f0gomia98j.wasm - 200 1008076 application/wasm 19.4161ms -2026-01-28 14:18:38.924 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Data.DataSetExtensions.3k3coynn1w.wasm - null null -2026-01-28 14:18:38.924 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.925 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.925 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.925 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.925 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.928 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.928 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.928 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.928 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.928 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.928 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.928 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.928 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.928 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.928 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.928 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.929 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.929 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.930 +03:00 [INF] Sending file. Request path: '_framework/System.Data.DataSetExtensions.3k3coynn1w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ud5iprd0cp-{0}-3k3coynn1w-3k3coynn1w.gz' -2026-01-28 14:18:38.930 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.930 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Data.DataSetExtensions.3k3coynn1w.wasm - 200 5430 application/wasm 6.4496ms -2026-01-28 14:18:38.939 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Data.d1s9ppg3o7.wasm - null null -2026-01-28 14:18:38.940 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.940 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.940 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.940 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.940 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.944 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.944 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.944 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.944 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.944 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.944 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.944 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.944 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.944 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.944 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.944 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.945 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.946 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.946 +03:00 [INF] Sending file. Request path: '_framework/System.Data.d1s9ppg3o7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\z59k6pwvr9-{0}-d1s9ppg3o7-d1s9ppg3o7.gz' -2026-01-28 14:18:38.946 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.947 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Data.d1s9ppg3o7.wasm - 200 15158 application/wasm 7.8162ms -2026-01-28 14:18:38.952 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Contracts.yj802auekg.wasm - null null -2026-01-28 14:18:38.953 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.953 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.953 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.953 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.953 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.956 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.956 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.956 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.956 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.956 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.956 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.956 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.956 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.956 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.956 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.956 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.957 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.957 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.957 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Contracts.yj802auekg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\895yo00sin-{0}-yj802auekg-yj802auekg.gz' -2026-01-28 14:18:38.957 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.957 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Contracts.yj802auekg.wasm - 200 5942 application/wasm 5.1351ms -2026-01-28 14:18:38.961 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Debug.d3luf33vju.wasm - null null -2026-01-28 14:18:38.962 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.962 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.962 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.962 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.962 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.965 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.965 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.965 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.965 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.965 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.965 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.965 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.965 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.965 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.965 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.965 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.966 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.966 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.966 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Debug.d3luf33vju.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\eplp8tl5qp-{0}-d3luf33vju-d3luf33vju.gz' -2026-01-28 14:18:38.966 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.967 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Debug.d3luf33vju.wasm - 200 5430 application/wasm 5.244ms -2026-01-28 14:18:38.971 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.DiagnosticSource.4iwxfpqf71.wasm - null null -2026-01-28 14:18:38.971 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.971 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.971 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.971 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.971 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.975 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.975 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.975 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.975 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.975 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.975 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.975 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.975 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.975 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.975 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.975 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.976 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.976 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.978 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.DiagnosticSource.4iwxfpqf71.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1hb9b6viqf-{0}-4iwxfpqf71-4iwxfpqf71.gz' -2026-01-28 14:18:38.978 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.978 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.DiagnosticSource.4iwxfpqf71.wasm - 200 192335 application/wasm 7.4756ms -2026-01-28 14:18:38.984 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.FileVersionInfo.pqffbmgf59.wasm - null null -2026-01-28 14:18:38.985 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.985 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:38.985 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:38.985 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:38.985 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:38.989 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.989 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.989 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:38.989 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:38.989 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:38.989 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:38.989 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.989 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:38.989 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:38.989 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:38.989 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:38.992 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:38.992 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.993 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.FileVersionInfo.pqffbmgf59.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s56fv99ax6-{0}-pqffbmgf59-pqffbmgf59.gz' -2026-01-28 14:18:38.993 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:38.993 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.FileVersionInfo.pqffbmgf59.wasm - 200 12598 application/wasm 9.183ms -2026-01-28 14:18:39.003 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Process.hgedtugxkh.wasm - null null -2026-01-28 14:18:39.004 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.004 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.004 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.004 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.004 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.008 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.008 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.008 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.008 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.008 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.008 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.008 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.009 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.009 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.009 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.009 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.010 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.010 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.011 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Process.hgedtugxkh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ulvoxvx0qx-{0}-hgedtugxkh-hgedtugxkh.gz' -2026-01-28 14:18:39.011 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.011 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Process.hgedtugxkh.wasm - 200 46395 application/wasm 7.6071ms -2026-01-28 14:18:39.016 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.StackTrace.apl6dmc0ay.wasm - null null -2026-01-28 14:18:39.017 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.017 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.017 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.017 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.017 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.019 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.019 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.019 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.019 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.019 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.019 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.019 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.019 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.019 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.019 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.019 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.020 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.020 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.021 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.StackTrace.apl6dmc0ay.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b4bxks5sgj-{0}-apl6dmc0ay-apl6dmc0ay.gz' -2026-01-28 14:18:39.021 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.021 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.StackTrace.apl6dmc0ay.wasm - 200 15670 application/wasm 5.1108ms -2026-01-28 14:18:39.025 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.TextWriterTraceListener.p621ruagc5.wasm - null null -2026-01-28 14:18:39.026 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.026 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.026 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.026 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.026 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.028 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.028 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.028 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.028 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.028 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.028 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.028 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.028 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.028 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.028 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.028 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.029 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.029 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.030 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.TextWriterTraceListener.p621ruagc5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0rz7u0vbo5-{0}-p621ruagc5-p621ruagc5.gz' -2026-01-28 14:18:39.030 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.030 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.TextWriterTraceListener.p621ruagc5.wasm - 200 21302 application/wasm 5.2324ms -2026-01-28 14:18:39.036 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Tools.f5hnfusd9n.wasm - null null -2026-01-28 14:18:39.037 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.037 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.037 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.037 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.037 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.040 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.040 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.040 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.040 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.040 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.040 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.040 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.040 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.040 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.040 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.040 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.041 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.042 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.042 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Tools.f5hnfusd9n.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rtkunlcxi7-{0}-f5hnfusd9n-f5hnfusd9n.gz' -2026-01-28 14:18:39.042 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.042 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Tools.f5hnfusd9n.wasm - 200 4918 application/wasm 6.5739ms -2026-01-28 14:18:39.046 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.TraceSource.z6jsaoha6p.wasm - null null -2026-01-28 14:18:39.047 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.047 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.047 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.047 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.047 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.049 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.049 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.050 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.050 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.050 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.050 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.050 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.050 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.050 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.050 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.050 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.051 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.051 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.052 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.TraceSource.z6jsaoha6p.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3okia77zo6-{0}-z6jsaoha6p-z6jsaoha6p.gz' -2026-01-28 14:18:39.052 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.052 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.TraceSource.z6jsaoha6p.wasm - 200 48443 application/wasm 5.9084ms -2026-01-28 14:18:39.058 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Tracing.d1w6x6c56c.wasm - null null -2026-01-28 14:18:39.058 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.061 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.061 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.061 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.061 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.061 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.061 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.061 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.061 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.061 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.061 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.061 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.061 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.062 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.062 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Tracing.d1w6x6c56c.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bl5rt2o9qk-{0}-d1w6x6c56c-d1w6x6c56c.gz' -2026-01-28 14:18:39.062 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.062 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Tracing.d1w6x6c56c.wasm - 200 5942 application/wasm 4.8073ms -2026-01-28 14:18:39.067 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Drawing.Primitives.l0kpbmmg5r.wasm - null null -2026-01-28 14:18:39.067 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.068 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.068 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.068 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.068 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.071 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.071 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.071 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.071 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.071 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.071 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.071 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.071 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.071 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.071 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.071 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.072 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.072 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.073 +03:00 [INF] Sending file. Request path: '_framework/System.Drawing.Primitives.l0kpbmmg5r.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mnh24cyvjl-{0}-l0kpbmmg5r-l0kpbmmg5r.gz' -2026-01-28 14:18:39.073 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.073 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Drawing.Primitives.l0kpbmmg5r.wasm - 200 54587 application/wasm 6.4519ms -2026-01-28 14:18:39.078 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Drawing.ur4stg427u.wasm - null null -2026-01-28 14:18:39.078 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.078 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.078 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.078 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.078 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.081 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.081 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.081 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.081 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.081 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.081 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.081 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.082 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.082 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.082 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.082 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.082 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.083 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.083 +03:00 [INF] Sending file. Request path: '_framework/System.Drawing.ur4stg427u.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tcko64rf2o-{0}-ur4stg427u-ur4stg427u.gz' -2026-01-28 14:18:39.083 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.084 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Drawing.ur4stg427u.wasm - 200 10038 application/wasm 5.8544ms -2026-01-28 14:18:39.088 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Dynamic.Runtime.hhm1961hd1.wasm - null null -2026-01-28 14:18:39.089 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.089 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.089 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.089 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.089 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.092 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.092 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.092 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.092 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.092 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.092 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.092 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.092 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.092 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.092 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.092 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.093 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.093 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.093 +03:00 [INF] Sending file. Request path: '_framework/System.Dynamic.Runtime.hhm1961hd1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bmbd8giz1p-{0}-hhm1961hd1-hhm1961hd1.gz' -2026-01-28 14:18:39.093 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.094 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Dynamic.Runtime.hhm1961hd1.wasm - 200 5942 application/wasm 5.8645ms -2026-01-28 14:18:39.099 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Formats.Asn1.9b1kh77dim.wasm - null null -2026-01-28 14:18:39.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.100 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.100 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.100 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.103 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.103 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.103 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.103 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.103 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.103 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.103 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.103 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.103 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.103 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.103 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.104 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.104 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.106 +03:00 [INF] Sending file. Request path: '_framework/System.Formats.Asn1.9b1kh77dim.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3nsgkkymfm-{0}-9b1kh77dim-9b1kh77dim.gz' -2026-01-28 14:18:39.106 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.106 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Formats.Asn1.9b1kh77dim.wasm - 200 86848 application/wasm 7.2375ms -2026-01-28 14:18:39.110 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Formats.Tar.pwu9oiomot.wasm - null null -2026-01-28 14:18:39.111 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.111 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.111 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.111 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.111 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.114 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.114 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.114 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.114 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.114 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.114 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.114 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.114 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.114 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.114 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.114 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.115 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.115 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.116 +03:00 [INF] Sending file. Request path: '_framework/System.Formats.Tar.pwu9oiomot.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\hazqfqk5pt-{0}-pwu9oiomot-pwu9oiomot.gz' -2026-01-28 14:18:39.116 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.116 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Formats.Tar.pwu9oiomot.wasm - 200 28470 application/wasm 5.5046ms -2026-01-28 14:18:39.122 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Globalization.Calendars.w6686c3eg8.wasm - null null -2026-01-28 14:18:39.122 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.122 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.125 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.125 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.125 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.125 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.125 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.125 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.125 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.125 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.125 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.125 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.125 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.126 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.126 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.126 +03:00 [INF] Sending file. Request path: '_framework/System.Globalization.Calendars.w6686c3eg8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\095aowv2ry-{0}-w6686c3eg8-w6686c3eg8.gz' -2026-01-28 14:18:39.126 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.127 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Globalization.Calendars.w6686c3eg8.wasm - 200 5430 application/wasm 4.9576ms -2026-01-28 14:18:39.132 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Globalization.Extensions.koczvzp0tt.wasm - null null -2026-01-28 14:18:39.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.133 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.133 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.133 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.133 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.135 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.135 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.135 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.135 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.135 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.135 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.135 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.135 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.136 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.136 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.136 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.136 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.136 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.137 +03:00 [INF] Sending file. Request path: '_framework/System.Globalization.Extensions.koczvzp0tt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dl0jfhz19c-{0}-koczvzp0tt-koczvzp0tt.gz' -2026-01-28 14:18:39.137 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.137 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Globalization.Extensions.koczvzp0tt.wasm - 200 4918 application/wasm 5.3415ms -2026-01-28 14:18:39.142 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Globalization.k8m97q3m8s.wasm - null null -2026-01-28 14:18:39.142 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.142 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.142 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.143 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.143 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.145 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.145 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.145 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.145 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.145 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.145 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.146 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.146 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.146 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.146 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.146 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.146 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.146 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.147 +03:00 [INF] Sending file. Request path: '_framework/System.Globalization.k8m97q3m8s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8q1hdhcajb-{0}-k8m97q3m8s-k8m97q3m8s.gz' -2026-01-28 14:18:39.147 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.147 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Globalization.k8m97q3m8s.wasm - 200 5430 application/wasm 5.475ms -2026-01-28 14:18:39.153 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.Brotli.66hvl0dk85.wasm - null null -2026-01-28 14:18:39.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.154 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.154 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.154 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.154 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.156 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.156 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.156 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.156 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.156 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.156 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.156 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.156 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.156 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.156 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.156 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.157 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.157 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.158 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Compression.Brotli.66hvl0dk85.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\klv0zda5b4-{0}-66hvl0dk85-66hvl0dk85.gz' -2026-01-28 14:18:39.158 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.158 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.Brotli.66hvl0dk85.wasm - 200 18230 application/wasm 5.1926ms -2026-01-28 14:18:39.163 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.FileSystem.jhbp0nl2b8.wasm - null null -2026-01-28 14:18:39.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.164 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.164 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.164 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.164 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.167 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.167 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.167 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.167 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.167 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.167 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.167 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.167 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.167 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.167 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.167 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.168 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.168 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.169 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Compression.FileSystem.jhbp0nl2b8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3qa8sgt8n1-{0}-jhbp0nl2b8-jhbp0nl2b8.gz' -2026-01-28 14:18:39.169 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.169 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.FileSystem.jhbp0nl2b8.wasm - 200 4918 application/wasm 5.435ms -2026-01-28 14:18:39.173 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.ZipFile.nap78ewmdw.wasm - null null -2026-01-28 14:18:39.174 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.174 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.174 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.174 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.174 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.177 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.177 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.177 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.177 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.177 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.177 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.177 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.177 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.177 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.177 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.177 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.178 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.178 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.179 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Compression.ZipFile.nap78ewmdw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s0uvr55768-{0}-nap78ewmdw-nap78ewmdw.gz' -2026-01-28 14:18:39.179 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.179 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.ZipFile.nap78ewmdw.wasm - 200 43323 application/wasm 5.9734ms -2026-01-28 14:18:39.185 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.wjdy7ns833.wasm - null null -2026-01-28 14:18:39.186 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.186 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.186 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.186 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.186 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.189 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.189 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.189 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.189 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.189 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.189 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.189 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.190 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.190 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.190 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.190 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.191 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.192 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.194 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Compression.wjdy7ns833.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b9wmrmes1g-{0}-wjdy7ns833-wjdy7ns833.gz' -2026-01-28 14:18:39.194 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.194 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.wjdy7ns833.wasm - 200 157514 application/wasm 8.8196ms -2026-01-28 14:18:39.200 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.AccessControl.eod3jwbqn7.wasm - null null -2026-01-28 14:18:39.200 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.201 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.201 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.201 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.201 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.204 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.204 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.204 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.204 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.204 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.204 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.204 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.204 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.204 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.204 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.204 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.205 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.205 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.206 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.AccessControl.eod3jwbqn7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dxkig4l83f-{0}-eod3jwbqn7-eod3jwbqn7.gz' -2026-01-28 14:18:39.206 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.206 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.AccessControl.eod3jwbqn7.wasm - 200 21814 application/wasm 6.6994ms -2026-01-28 14:18:39.214 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.DriveInfo.driq9z3dvq.wasm - null null -2026-01-28 14:18:39.215 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.215 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.215 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.215 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.215 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.218 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.218 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.218 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.218 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.218 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.218 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.218 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.218 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.218 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.218 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.218 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.219 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.219 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.220 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.DriveInfo.driq9z3dvq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\53tiabgbqz-{0}-driq9z3dvq-driq9z3dvq.gz' -2026-01-28 14:18:39.220 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.220 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.DriveInfo.driq9z3dvq.wasm - 200 13622 application/wasm 5.6694ms -2026-01-28 14:18:39.225 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.Primitives.81fwc35czq.wasm - null null -2026-01-28 14:18:39.226 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.226 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.226 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.226 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.226 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.228 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.228 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.228 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.228 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.228 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.228 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.228 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.228 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.228 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.228 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.228 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.229 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.229 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.230 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.Primitives.81fwc35czq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3hdbxu1ccm-{0}-81fwc35czq-81fwc35czq.gz' -2026-01-28 14:18:39.230 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.230 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.Primitives.81fwc35czq.wasm - 200 4918 application/wasm 4.7942ms -2026-01-28 14:18:39.235 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.Watcher.adgwo4kuza.wasm - null null -2026-01-28 14:18:39.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.236 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.236 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.236 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.236 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.239 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.239 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.239 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.239 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.239 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.239 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.239 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.239 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.239 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.239 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.239 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.241 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.241 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.242 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.Watcher.adgwo4kuza.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0nk9uqd91z-{0}-adgwo4kuza-adgwo4kuza.gz' -2026-01-28 14:18:39.242 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.242 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.Watcher.adgwo4kuza.wasm - 200 22838 application/wasm 6.481ms -2026-01-28 14:18:39.246 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.bwu3sqaj6h.wasm - null null -2026-01-28 14:18:39.247 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.247 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.247 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.247 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.247 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.250 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.250 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.250 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.250 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.250 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.250 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.250 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.250 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.250 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.250 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.250 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.251 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.251 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.252 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.bwu3sqaj6h.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0oeun214in-{0}-bwu3sqaj6h-bwu3sqaj6h.gz' -2026-01-28 14:18:39.252 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.252 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.bwu3sqaj6h.wasm - 200 5430 application/wasm 5.5324ms -2026-01-28 14:18:39.257 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.IsolatedStorage.h5a2uwu0ao.wasm - null null -2026-01-28 14:18:39.257 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.258 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.258 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.258 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.258 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.260 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.260 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.260 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.260 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.260 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.260 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.260 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.261 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.261 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.261 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.261 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.261 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.262 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.262 +03:00 [INF] Sending file. Request path: '_framework/System.IO.IsolatedStorage.h5a2uwu0ao.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wxrt5vpq1k-{0}-h5a2uwu0ao-h5a2uwu0ao.gz' -2026-01-28 14:18:39.262 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.262 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.IsolatedStorage.h5a2uwu0ao.wasm - 200 24886 application/wasm 5.7264ms -2026-01-28 14:18:39.268 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.MemoryMappedFiles.7rigkgafok.wasm - null null -2026-01-28 14:18:39.269 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.269 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.269 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.269 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.269 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.272 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.272 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.272 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.272 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.272 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.272 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.272 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.272 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.272 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.272 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.272 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.273 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.273 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.274 +03:00 [INF] Sending file. Request path: '_framework/System.IO.MemoryMappedFiles.7rigkgafok.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vyic7lxnxv-{0}-7rigkgafok-7rigkgafok.gz' -2026-01-28 14:18:39.274 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.274 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.MemoryMappedFiles.7rigkgafok.wasm - 200 39739 application/wasm 5.8741ms -2026-01-28 14:18:39.279 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipelines.pq56wwa14f.wasm - null null -2026-01-28 14:18:39.279 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.279 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.279 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.279 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.279 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.281 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.281 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.281 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.281 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.281 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.281 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.281 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.281 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.281 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.282 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.282 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.282 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.282 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.283 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Pipelines.pq56wwa14f.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\a08rh4wqum-{0}-pq56wwa14f-pq56wwa14f.gz' -2026-01-28 14:18:39.283 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.284 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipelines.pq56wwa14f.wasm - 200 67904 application/wasm 5.1142ms -2026-01-28 14:18:39.289 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipes.AccessControl.orawgey7bd.wasm - null null -2026-01-28 14:18:39.289 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.290 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.290 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.290 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.290 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.293 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.293 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.293 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.293 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.293 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.293 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.293 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.293 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.293 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.293 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.293 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.293 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.294 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.294 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Pipes.AccessControl.orawgey7bd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\l16mq4yf9p-{0}-orawgey7bd-orawgey7bd.gz' -2026-01-28 14:18:39.294 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.295 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipes.AccessControl.orawgey7bd.wasm - 200 13110 application/wasm 6.0615ms -2026-01-28 14:18:39.300 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipes.qv5hx9ne5m.wasm - null null -2026-01-28 14:18:39.300 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.301 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.301 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.301 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.301 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.303 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.303 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.303 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.303 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.303 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.303 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.303 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.303 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.303 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.303 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.303 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.304 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.304 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.305 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Pipes.qv5hx9ne5m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\r2irkbzfn5-{0}-qv5hx9ne5m-qv5hx9ne5m.gz' -2026-01-28 14:18:39.305 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.305 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipes.qv5hx9ne5m.wasm - 200 32054 application/wasm 5.5555ms -2026-01-28 14:18:39.310 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.UnmanagedMemoryStream.zjpuh62vtt.wasm - null null -2026-01-28 14:18:39.311 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.311 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.311 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.311 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.311 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.313 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.313 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.313 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.314 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.314 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.314 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.314 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.314 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.314 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.314 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.314 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.315 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.315 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.315 +03:00 [INF] Sending file. Request path: '_framework/System.IO.UnmanagedMemoryStream.zjpuh62vtt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\u2mfjvv6a6-{0}-zjpuh62vtt-zjpuh62vtt.gz' -2026-01-28 14:18:39.315 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.316 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.UnmanagedMemoryStream.zjpuh62vtt.wasm - 200 5430 application/wasm 5.1451ms -2026-01-28 14:18:39.320 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.kdm5se4z4i.wasm - null null -2026-01-28 14:18:39.320 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.323 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.323 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.323 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.323 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.323 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.323 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.323 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.323 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.323 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.323 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.323 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.323 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.324 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.324 +03:00 [INF] Sending file. Request path: '_framework/System.IO.kdm5se4z4i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tx0zr2bfyn-{0}-kdm5se4z4i-kdm5se4z4i.gz' -2026-01-28 14:18:39.324 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.324 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.kdm5se4z4i.wasm - 200 5430 application/wasm 4.5296ms -2026-01-28 14:18:39.328 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.AsyncEnumerable.24q069vvmu.wasm - null null -2026-01-28 14:18:39.329 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.329 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.329 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.329 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.329 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.331 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.331 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.331 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.331 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.331 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.331 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.331 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.332 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.332 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.332 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.332 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.332 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.332 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.336 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.AsyncEnumerable.24q069vvmu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c7lzsfjd6q-{0}-24q069vvmu-24q069vvmu.gz' -2026-01-28 14:18:39.336 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.336 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.AsyncEnumerable.24q069vvmu.wasm - 200 446327 application/wasm 8.3178ms -2026-01-28 14:18:39.342 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.Expressions.5vac4cfeo2.wasm - null null -2026-01-28 14:18:39.343 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.343 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.343 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.343 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.343 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.346 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.346 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.346 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.346 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.346 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.346 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.346 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.346 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.346 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.346 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.346 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.346 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.347 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.351 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.Expressions.5vac4cfeo2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ofq1bjb4ny-{0}-5vac4cfeo2-5vac4cfeo2.gz' -2026-01-28 14:18:39.351 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.351 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.Expressions.5vac4cfeo2.wasm - 200 565131 application/wasm 8.8596ms -2026-01-28 14:18:39.357 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.Parallel.wec9zwybs3.wasm - null null -2026-01-28 14:18:39.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.358 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.358 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.358 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.358 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.360 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.360 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.360 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.360 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.360 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.360 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.360 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.361 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.361 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.361 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.361 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.361 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.361 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.363 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.Parallel.wec9zwybs3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gqwqnnwtf4-{0}-wec9zwybs3-wec9zwybs3.gz' -2026-01-28 14:18:39.363 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.363 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.Parallel.wec9zwybs3.wasm - 200 212820 application/wasm 5.9848ms -2026-01-28 14:18:39.369 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.Queryable.aacsqokaru.wasm - null null -2026-01-28 14:18:39.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.370 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.370 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.370 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.370 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.373 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.373 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.373 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.373 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.373 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.373 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.373 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.374 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.374 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.374 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.374 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.375 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.375 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.376 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.Queryable.aacsqokaru.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6oa4hfxdqf-{0}-aacsqokaru-aacsqokaru.gz' -2026-01-28 14:18:39.376 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.376 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.Queryable.aacsqokaru.wasm - 200 68416 application/wasm 7.5094ms -2026-01-28 14:18:39.381 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.xsk9czcoz7.wasm - null null -2026-01-28 14:18:39.382 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.382 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.382 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.382 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.382 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.386 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.386 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.386 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.386 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.386 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.386 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.386 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.386 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.386 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.386 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.386 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.387 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.387 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.390 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.xsk9czcoz7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xukhwpcysr-{0}-xsk9czcoz7-xsk9czcoz7.gz' -2026-01-28 14:18:39.390 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.390 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.xsk9czcoz7.wasm - 200 190799 application/wasm 8.9187ms -2026-01-28 14:18:39.396 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Memory.av3iy8oqe6.wasm - null null -2026-01-28 14:18:39.396 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.396 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.396 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.396 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.396 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.399 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.399 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.399 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.399 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.399 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.399 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.399 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.399 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.400 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.400 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.400 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.400 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.401 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.402 +03:00 [INF] Sending file. Request path: '_framework/System.Memory.av3iy8oqe6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\20k8bcs2ry-{0}-av3iy8oqe6-av3iy8oqe6.gz' -2026-01-28 14:18:39.402 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.402 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Memory.av3iy8oqe6.wasm - 200 45371 application/wasm 6.3033ms -2026-01-28 14:18:39.408 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Http.Json.f5ti54ia1a.wasm - null null -2026-01-28 14:18:39.409 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.409 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.409 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.409 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.409 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.413 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.413 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.413 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.413 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.413 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.413 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.413 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.413 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.413 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.413 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.413 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.414 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.414 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.415 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Http.Json.f5ti54ia1a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\hdhp2fv8el-{0}-f5ti54ia1a-f5ti54ia1a.gz' -2026-01-28 14:18:39.415 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.415 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Http.Json.f5ti54ia1a.wasm - 200 45883 application/wasm 7.5298ms -2026-01-28 14:18:39.420 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Http.xnexopyo77.wasm - null null -2026-01-28 14:18:39.421 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.421 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.421 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.421 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.421 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.424 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.424 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.424 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.424 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.424 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.424 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.424 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.424 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.424 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.424 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.424 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.425 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.425 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.428 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Http.xnexopyo77.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5zhsh7htpt-{0}-xnexopyo77-xnexopyo77.gz' -2026-01-28 14:18:39.428 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.428 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Http.xnexopyo77.wasm - 200 286046 application/wasm 7.5623ms -2026-01-28 14:18:39.433 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.HttpListener.qea3lr0ivv.wasm - null null -2026-01-28 14:18:39.434 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.434 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.434 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.434 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.434 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.437 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.437 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.437 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.437 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.437 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.437 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.437 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.437 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.437 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.437 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.437 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.438 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.439 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.440 +03:00 [INF] Sending file. Request path: '_framework/System.Net.HttpListener.qea3lr0ivv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xstee2l2o3-{0}-qea3lr0ivv-qea3lr0ivv.gz' -2026-01-28 14:18:39.440 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.440 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.HttpListener.qea3lr0ivv.wasm - 200 45883 application/wasm 6.625ms -2026-01-28 14:18:39.445 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Mail.kabvwy0nwb.wasm - null null -2026-01-28 14:18:39.445 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.446 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.446 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.446 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.446 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.448 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.448 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.448 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.448 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.448 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.448 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.448 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.448 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.448 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.448 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.448 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.449 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.449 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.451 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Mail.kabvwy0nwb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\brj66r630l-{0}-kabvwy0nwb-kabvwy0nwb.gz' -2026-01-28 14:18:39.451 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.451 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Mail.kabvwy0nwb.wasm - 200 95040 application/wasm 5.8984ms -2026-01-28 14:18:39.457 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.NameResolution.r77xqyi48e.wasm - null null -2026-01-28 14:18:39.458 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.458 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.458 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.458 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.458 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.462 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.462 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.462 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.462 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.462 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.462 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.462 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.463 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.463 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.463 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.463 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.464 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.464 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.465 +03:00 [INF] Sending file. Request path: '_framework/System.Net.NameResolution.r77xqyi48e.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0muzq1nn1l-{0}-r77xqyi48e-r77xqyi48e.gz' -2026-01-28 14:18:39.465 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.465 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.NameResolution.r77xqyi48e.wasm - 200 14134 application/wasm 8.1259ms -2026-01-28 14:18:39.470 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.NetworkInformation.4y8ae4b47g.wasm - null null -2026-01-28 14:18:39.470 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.470 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.471 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.471 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.471 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.474 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.474 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.474 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.474 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.474 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.474 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.474 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.475 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.475 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.475 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.475 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.476 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.476 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.476 +03:00 [INF] Sending file. Request path: '_framework/System.Net.NetworkInformation.4y8ae4b47g.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\t7lf75pu6w-{0}-4y8ae4b47g-4y8ae4b47g.gz' -2026-01-28 14:18:39.476 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.477 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.NetworkInformation.4y8ae4b47g.wasm - 200 32054 application/wasm 6.9572ms -2026-01-28 14:18:39.484 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Ping.fb39s7nqmu.wasm - null null -2026-01-28 14:18:39.484 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.484 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.484 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.484 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.484 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.487 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.487 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.487 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.487 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.487 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.487 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.487 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.487 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.487 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.487 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.487 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.488 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.488 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.489 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Ping.fb39s7nqmu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1qhthfilvz-{0}-fb39s7nqmu-fb39s7nqmu.gz' -2026-01-28 14:18:39.489 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.489 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Ping.fb39s7nqmu.wasm - 200 17718 application/wasm 5.8718ms -2026-01-28 14:18:39.494 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Primitives.2oo4pve6tx.wasm - null null -2026-01-28 14:18:39.495 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.495 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.495 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.495 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.495 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.497 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.498 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.498 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.498 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.498 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.498 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.498 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.498 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.498 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.498 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.498 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.499 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.499 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.501 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Primitives.2oo4pve6tx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xxez8u380e-{0}-2oo4pve6tx-2oo4pve6tx.gz' -2026-01-28 14:18:39.501 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.501 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Primitives.2oo4pve6tx.wasm - 200 97088 application/wasm 6.8487ms -2026-01-28 14:18:39.507 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Quic.wedsu6m1ok.wasm - null null -2026-01-28 14:18:39.507 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.507 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.508 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.508 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.508 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.510 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.510 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.510 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.510 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.510 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.510 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.510 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.511 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.511 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.511 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.511 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.511 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.511 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.512 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Quic.wedsu6m1ok.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mavmo5ad6x-{0}-wedsu6m1ok-wedsu6m1ok.gz' -2026-01-28 14:18:39.512 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.512 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Quic.wedsu6m1ok.wasm - 200 28982 application/wasm 5.709ms -2026-01-28 14:18:39.518 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Requests.dd8um1v0v4.wasm - null null -2026-01-28 14:18:39.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.519 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.519 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.519 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.519 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.523 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.523 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.523 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.523 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.523 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.523 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.523 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.523 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.523 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.523 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.523 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.524 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.524 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.525 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Requests.dd8um1v0v4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\g8osyueis5-{0}-dd8um1v0v4-dd8um1v0v4.gz' -2026-01-28 14:18:39.525 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.525 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Requests.dd8um1v0v4.wasm - 200 55611 application/wasm 6.8209ms -2026-01-28 14:18:39.531 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Security.j01yc12epg.wasm - null null -2026-01-28 14:18:39.532 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.532 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.532 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.532 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.532 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.536 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.536 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.536 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.536 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.536 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.536 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.536 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.536 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.536 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.536 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.536 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.537 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.537 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.539 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Security.j01yc12epg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vd1ks16ws6-{0}-j01yc12epg-j01yc12epg.gz' -2026-01-28 14:18:39.539 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.539 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Security.j01yc12epg.wasm - 200 104261 application/wasm 8.1532ms -2026-01-28 14:18:39.544 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.ServerSentEvents.n20pwunwwa.wasm - null null -2026-01-28 14:18:39.544 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.544 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.544 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.544 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.544 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.547 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.547 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.547 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.547 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.547 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.547 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.547 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.548 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.548 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.548 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.548 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.548 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.549 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.550 +03:00 [INF] Sending file. Request path: '_framework/System.Net.ServerSentEvents.n20pwunwwa.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rp6twqxirl-{0}-n20pwunwwa-n20pwunwwa.gz' -2026-01-28 14:18:39.550 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.550 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.ServerSentEvents.n20pwunwwa.wasm - 200 30518 application/wasm 6.223ms -2026-01-28 14:18:39.556 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.ServicePoint.6qgdmrxct2.wasm - null null -2026-01-28 14:18:39.556 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.557 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.557 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.557 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.557 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.559 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.559 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.559 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.559 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.559 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.559 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.559 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.559 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.559 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.559 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.559 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.560 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.560 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.561 +03:00 [INF] Sending file. Request path: '_framework/System.Net.ServicePoint.6qgdmrxct2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v7t97n1u19-{0}-6qgdmrxct2-6qgdmrxct2.gz' -2026-01-28 14:18:39.561 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.561 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.ServicePoint.6qgdmrxct2.wasm - 200 4918 application/wasm 5.1171ms -2026-01-28 14:18:39.565 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Sockets.0jj55xk9rv.wasm - null null -2026-01-28 14:18:39.565 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.565 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.565 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.566 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.566 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.568 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.568 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.568 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.568 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.568 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.568 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.568 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.568 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.568 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.568 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.568 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.569 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.569 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.570 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Sockets.0jj55xk9rv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\i4k589b7bn-{0}-0jj55xk9rv-0jj55xk9rv.gz' -2026-01-28 14:18:39.570 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.570 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Sockets.0jj55xk9rv.wasm - 200 64315 application/wasm 4.9122ms -2026-01-28 14:18:39.575 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebClient.3wc74qco9q.wasm - null null -2026-01-28 14:18:39.576 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.576 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.576 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.576 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.576 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.578 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.579 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.579 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.579 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.579 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.579 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.579 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.579 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.579 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.579 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.579 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.580 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.580 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.581 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebClient.3wc74qco9q.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9mnjsb8x3q-{0}-3wc74qco9q-3wc74qco9q.gz' -2026-01-28 14:18:39.581 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.581 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebClient.3wc74qco9q.wasm - 200 45883 application/wasm 5.7119ms -2026-01-28 14:18:39.586 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebHeaderCollection.4ybcvi6krs.wasm - null null -2026-01-28 14:18:39.587 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.587 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.587 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.587 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.587 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.590 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.590 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.590 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.590 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.590 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.590 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.590 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.591 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.591 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.591 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.591 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.592 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.592 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.593 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebHeaderCollection.4ybcvi6krs.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\apet8won7e-{0}-4ybcvi6krs-4ybcvi6krs.gz' -2026-01-28 14:18:39.593 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.593 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebHeaderCollection.4ybcvi6krs.wasm - 200 22838 application/wasm 6.786ms -2026-01-28 14:18:39.600 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebProxy.zxvs9bwlaq.wasm - null null -2026-01-28 14:18:39.600 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.600 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.601 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.601 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.601 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.603 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.603 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.604 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.604 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.604 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.604 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.604 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.604 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.604 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.604 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.604 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.604 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.605 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.605 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebProxy.zxvs9bwlaq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n8e7iy8bgt-{0}-zxvs9bwlaq-zxvs9bwlaq.gz' -2026-01-28 14:18:39.605 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.606 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebProxy.zxvs9bwlaq.wasm - 200 11574 application/wasm 5.7366ms -2026-01-28 14:18:39.618 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebSockets.Client.n57nf3z1br.wasm - null null -2026-01-28 14:18:39.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.619 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.619 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.619 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.619 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.621 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.621 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.621 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.621 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.621 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.621 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.621 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.621 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.621 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.621 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.621 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.622 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.622 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.623 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebSockets.Client.n57nf3z1br.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rnseevpeje-{0}-n57nf3z1br-n57nf3z1br.gz' -2026-01-28 14:18:39.623 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.623 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebSockets.Client.n57nf3z1br.wasm - 200 42299 application/wasm 4.7678ms -2026-01-28 14:18:39.628 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebSockets.i3475fl55i.wasm - null null -2026-01-28 14:18:39.629 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.629 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.629 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.629 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.629 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.632 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.632 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.632 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.632 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.632 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.632 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.632 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.632 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.632 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.632 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.632 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.633 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.633 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.635 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebSockets.i3475fl55i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fixxlx5x95-{0}-i3475fl55i-i3475fl55i.gz' -2026-01-28 14:18:39.635 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.635 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebSockets.i3475fl55i.wasm - 200 98629 application/wasm 6.6834ms -2026-01-28 14:18:39.640 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.2jb9y9tls4.wasm - null null -2026-01-28 14:18:39.640 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.641 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.641 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.641 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.641 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.644 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.644 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.644 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.644 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.644 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.644 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.644 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.644 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.644 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.644 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.644 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.645 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.645 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.646 +03:00 [INF] Sending file. Request path: '_framework/System.Net.2jb9y9tls4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sdhyils1a8-{0}-2jb9y9tls4-2jb9y9tls4.gz' -2026-01-28 14:18:39.646 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.646 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.2jb9y9tls4.wasm - 200 6966 application/wasm 6.244ms -2026-01-28 14:18:39.650 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Numerics.Vectors.tjoypuu8wa.wasm - null null -2026-01-28 14:18:39.650 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.651 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.651 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.651 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.651 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.653 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.653 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.653 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.653 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.653 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.653 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.653 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.653 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.653 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.653 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.653 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.654 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.654 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.655 +03:00 [INF] Sending file. Request path: '_framework/System.Numerics.Vectors.tjoypuu8wa.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\52qfucpyv5-{0}-tjoypuu8wa-tjoypuu8wa.gz' -2026-01-28 14:18:39.655 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.655 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Numerics.Vectors.tjoypuu8wa.wasm - 200 5430 application/wasm 4.9201ms -2026-01-28 14:18:39.659 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Numerics.zb6snwiiqo.wasm - null null -2026-01-28 14:18:39.660 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.660 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.660 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.660 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.660 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.662 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.662 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.662 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.662 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.662 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.662 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.662 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.662 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.662 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.662 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.662 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.663 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.663 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.664 +03:00 [INF] Sending file. Request path: '_framework/System.Numerics.zb6snwiiqo.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3mhjbwzot4-{0}-zb6snwiiqo-zb6snwiiqo.gz' -2026-01-28 14:18:39.664 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.664 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Numerics.zb6snwiiqo.wasm - 200 4918 application/wasm 4.8555ms -2026-01-28 14:18:39.668 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ObjectModel.qra8ipv6cl.wasm - null null -2026-01-28 14:18:39.668 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.668 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.668 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.668 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.668 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.671 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.671 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.671 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.671 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.671 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.671 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.671 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.671 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.671 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.671 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.671 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.672 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.672 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.673 +03:00 [INF] Sending file. Request path: '_framework/System.ObjectModel.qra8ipv6cl.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\69h7jimh8b-{0}-qra8ipv6cl-qra8ipv6cl.gz' -2026-01-28 14:18:39.673 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.673 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ObjectModel.qra8ipv6cl.wasm - 200 31030 application/wasm 5.3509ms -2026-01-28 14:18:39.678 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.DataContractSerialization.cdaesawoob.wasm - null null -2026-01-28 14:18:39.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.682 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.682 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.682 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.682 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.682 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.682 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.682 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.682 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.682 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.682 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.682 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.683 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.683 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.689 +03:00 [INF] Sending file. Request path: '_framework/System.Private.DataContractSerialization.cdaesawoob.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xukodscfdt-{0}-cdaesawoob-cdaesawoob.gz' -2026-01-28 14:18:39.689 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.689 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.DataContractSerialization.cdaesawoob.wasm - 200 849331 application/wasm 11.4815ms -2026-01-28 14:18:39.698 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.Uri.d7c7uu4en8.wasm - null null -2026-01-28 14:18:39.699 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.699 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.699 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.699 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.699 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.701 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.701 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.701 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.701 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.701 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.701 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.701 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.702 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.702 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.702 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.702 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.702 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.702 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.704 +03:00 [INF] Sending file. Request path: '_framework/System.Private.Uri.d7c7uu4en8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ru8d7hu3hx-{0}-d7c7uu4en8-d7c7uu4en8.gz' -2026-01-28 14:18:39.704 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.704 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.Uri.d7c7uu4en8.wasm - 200 95040 application/wasm 5.3954ms -2026-01-28 14:18:39.710 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.Xml.Linq.yklun9npsh.wasm - null null -2026-01-28 14:18:39.710 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.711 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.711 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.711 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.711 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.714 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.714 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.714 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.714 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.714 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.714 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.714 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.714 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.715 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.715 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.715 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.715 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.716 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.718 +03:00 [INF] Sending file. Request path: '_framework/System.Private.Xml.Linq.yklun9npsh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wby45u92ah-{0}-yklun9npsh-yklun9npsh.gz' -2026-01-28 14:18:39.718 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.718 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.Xml.Linq.yklun9npsh.wasm - 200 143690 application/wasm 8.3731ms -2026-01-28 14:18:39.727 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.Xml.8fl2owujec.wasm - null null -2026-01-28 14:18:39.728 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.728 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.728 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.728 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.728 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.730 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.730 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.730 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.730 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.730 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.730 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.730 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.731 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.731 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.731 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.731 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.732 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.732 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.767 +03:00 [INF] Sending file. Request path: '_framework/System.Private.Xml.8fl2owujec.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4tw2sl7qh6-{0}-8fl2owujec-8fl2owujec.gz' -2026-01-28 14:18:39.767 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.768 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.Xml.8fl2owujec.wasm - 200 3096336 application/wasm 40.1876ms -2026-01-28 14:18:39.782 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.DispatchProxy.dur3huf884.wasm - null null -2026-01-28 14:18:39.782 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.783 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.783 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.783 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.783 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.785 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.786 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.786 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.786 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.786 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.786 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.786 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.786 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.786 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.786 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.786 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.786 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.787 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.788 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.DispatchProxy.dur3huf884.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1vtfgkdvnc-{0}-dur3huf884-dur3huf884.gz' -2026-01-28 14:18:39.788 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.788 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.DispatchProxy.dur3huf884.wasm - 200 27958 application/wasm 5.9931ms -2026-01-28 14:18:39.793 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.ILGeneration.pei97jn90w.wasm - null null -2026-01-28 14:18:39.794 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.794 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.794 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.794 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.794 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.797 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.797 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.797 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.797 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.797 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.797 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.797 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.797 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.797 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.797 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.797 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.798 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.798 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.799 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Emit.ILGeneration.pei97jn90w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v1gyf0d1ub-{0}-pei97jn90w-pei97jn90w.gz' -2026-01-28 14:18:39.799 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.799 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.ILGeneration.pei97jn90w.wasm - 200 5430 application/wasm 6.1518ms -2026-01-28 14:18:39.804 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.Lightweight.ywsyqlj9p1.wasm - null null -2026-01-28 14:18:39.805 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.805 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.805 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.805 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.805 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.809 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.809 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.809 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.809 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.809 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.809 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.809 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.809 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.809 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.809 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.809 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.810 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.810 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.811 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Emit.Lightweight.ywsyqlj9p1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fhnd5yeiv1-{0}-ywsyqlj9p1-ywsyqlj9p1.gz' -2026-01-28 14:18:39.811 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.811 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.Lightweight.ywsyqlj9p1.wasm - 200 5430 application/wasm 7.3926ms -2026-01-28 14:18:39.817 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.tumhikm19o.wasm - null null -2026-01-28 14:18:39.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.817 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.817 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.817 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.817 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.821 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.821 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.821 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.821 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.821 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.821 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.821 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.821 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.821 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.821 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.821 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.823 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.823 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.825 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Emit.tumhikm19o.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vgtdlzmyp9-{0}-tumhikm19o-tumhikm19o.gz' -2026-01-28 14:18:39.825 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.825 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.tumhikm19o.wasm - 200 122693 application/wasm 8.1703ms -2026-01-28 14:18:39.830 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Extensions.z98cfn5ig8.wasm - null null -2026-01-28 14:18:39.831 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.831 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.832 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.832 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.832 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.835 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.835 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.835 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.835 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.835 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.835 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.835 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.836 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.836 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.836 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.836 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.837 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.837 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.838 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Extensions.z98cfn5ig8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5188hd084t-{0}-z98cfn5ig8-z98cfn5ig8.gz' -2026-01-28 14:18:39.838 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.838 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Extensions.z98cfn5ig8.wasm - 200 4918 application/wasm 7.6889ms -2026-01-28 14:18:39.842 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Metadata.j4t1n1ywxj.wasm - null null -2026-01-28 14:18:39.843 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.843 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.843 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.843 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.843 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.845 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.845 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.845 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.845 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.845 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.845 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.845 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.846 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.846 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.846 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.846 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.846 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.846 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.850 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Metadata.j4t1n1ywxj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ih2v39fwix-{0}-j4t1n1ywxj-j4t1n1ywxj.gz' -2026-01-28 14:18:39.850 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.850 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Metadata.j4t1n1ywxj.wasm - 200 493441 application/wasm 7.8317ms -2026-01-28 14:18:39.856 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Primitives.p4ntci6hk7.wasm - null null -2026-01-28 14:18:39.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.856 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.856 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.856 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.856 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.860 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.860 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.860 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.860 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.860 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.860 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.860 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.860 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.860 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.860 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.860 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.861 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.861 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.862 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Primitives.p4ntci6hk7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\z9kjf4ns5o-{0}-p4ntci6hk7-p4ntci6hk7.gz' -2026-01-28 14:18:39.862 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.862 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Primitives.p4ntci6hk7.wasm - 200 5430 application/wasm 6.1869ms -2026-01-28 14:18:39.866 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.TypeExtensions.puzzlnwex2.wasm - null null -2026-01-28 14:18:39.867 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.867 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.867 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.867 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.867 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.870 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.870 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.870 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.870 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.870 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.870 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.870 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.870 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.870 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.870 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.870 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.871 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.871 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.872 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.TypeExtensions.puzzlnwex2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7ukk8euu3c-{0}-puzzlnwex2-puzzlnwex2.gz' -2026-01-28 14:18:39.872 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.872 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.TypeExtensions.puzzlnwex2.wasm - 200 14134 application/wasm 5.6426ms -2026-01-28 14:18:39.877 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.lt32pnnkzd.wasm - null null -2026-01-28 14:18:39.878 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.878 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.878 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.878 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.878 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.880 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.880 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.880 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.880 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.880 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.880 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.880 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.880 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.880 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.880 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.880 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.882 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.882 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.883 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.lt32pnnkzd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5zfqu7bsm3-{0}-lt32pnnkzd-lt32pnnkzd.gz' -2026-01-28 14:18:39.883 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.883 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.lt32pnnkzd.wasm - 200 5942 application/wasm 5.805ms -2026-01-28 14:18:39.887 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Resources.Reader.c8jfsntxbn.wasm - null null -2026-01-28 14:18:39.888 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.888 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.888 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.888 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.888 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.891 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.891 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.891 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.891 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.891 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.891 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.891 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.892 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.892 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.892 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.892 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.893 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.893 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.893 +03:00 [INF] Sending file. Request path: '_framework/System.Resources.Reader.c8jfsntxbn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5fcb3hbz6f-{0}-c8jfsntxbn-c8jfsntxbn.gz' -2026-01-28 14:18:39.894 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.894 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Resources.Reader.c8jfsntxbn.wasm - 200 4918 application/wasm 6.3744ms -2026-01-28 14:18:39.898 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Resources.ResourceManager.q30psrnl7u.wasm - null null -2026-01-28 14:18:39.898 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.898 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.898 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.898 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.898 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.902 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.902 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.902 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.902 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.902 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.902 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.902 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.903 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.903 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.903 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.903 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.903 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.904 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.904 +03:00 [INF] Sending file. Request path: '_framework/System.Resources.ResourceManager.q30psrnl7u.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\k3xfrex2pp-{0}-q30psrnl7u-q30psrnl7u.gz' -2026-01-28 14:18:39.904 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.904 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Resources.ResourceManager.q30psrnl7u.wasm - 200 5430 application/wasm 6.8613ms -2026-01-28 14:18:39.909 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Resources.Writer.wvyn0j1lcg.wasm - null null -2026-01-28 14:18:39.909 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.910 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.913 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.913 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.913 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.913 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.913 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.913 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.913 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.913 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.913 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.913 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.913 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.914 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.914 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.914 +03:00 [INF] Sending file. Request path: '_framework/System.Resources.Writer.wvyn0j1lcg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wsg9isam35-{0}-wvyn0j1lcg-wvyn0j1lcg.gz' -2026-01-28 14:18:39.914 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.915 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Resources.Writer.wvyn0j1lcg.wasm - 200 16694 application/wasm 5.7673ms -2026-01-28 14:18:39.919 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.CompilerServices.Unsafe.djrvtrz9tb.wasm - null null -2026-01-28 14:18:39.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.924 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.924 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.924 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.924 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.924 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.924 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.924 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.924 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.924 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.925 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.925 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.925 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.926 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.926 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.CompilerServices.Unsafe.djrvtrz9tb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\smsvmq9glf-{0}-djrvtrz9tb-djrvtrz9tb.gz' -2026-01-28 14:18:39.926 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.927 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.CompilerServices.Unsafe.djrvtrz9tb.wasm - 200 4918 application/wasm 7.1704ms -2026-01-28 14:18:39.935 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.CompilerServices.VisualC.luekj4crl6.wasm - null null -2026-01-28 14:18:39.935 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.935 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.936 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.936 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.936 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.939 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.939 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.939 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.939 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.939 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.939 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.939 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.939 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.939 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.939 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.939 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.940 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.941 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.941 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.CompilerServices.VisualC.luekj4crl6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\w5clnjen17-{0}-luekj4crl6-luekj4crl6.gz' -2026-01-28 14:18:39.941 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.942 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.CompilerServices.VisualC.luekj4crl6.wasm - 200 6966 application/wasm 6.7247ms -2026-01-28 14:18:39.945 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Extensions.d5mymlulmr.wasm - null null -2026-01-28 14:18:39.946 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.946 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.946 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.946 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.946 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.949 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.949 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.949 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.949 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.949 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.949 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.949 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.950 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.950 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.950 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.950 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.951 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.951 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.952 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Extensions.d5mymlulmr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n6jkmkc1vw-{0}-d5mymlulmr-d5mymlulmr.gz' -2026-01-28 14:18:39.952 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.952 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Extensions.d5mymlulmr.wasm - 200 7478 application/wasm 6.5409ms -2026-01-28 14:18:39.956 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Handles.ih3cmfwxzd.wasm - null null -2026-01-28 14:18:39.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.957 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.957 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.957 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.957 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.960 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.960 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.960 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.960 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.961 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.961 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.961 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.961 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.961 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.961 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.961 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.962 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.962 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.963 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Handles.ih3cmfwxzd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2b53wjzpk1-{0}-ih3cmfwxzd-ih3cmfwxzd.gz' -2026-01-28 14:18:39.963 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.963 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Handles.ih3cmfwxzd.wasm - 200 5430 application/wasm 7.0138ms -2026-01-28 14:18:39.967 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.RuntimeInformation.nvwt5l6jkw.wasm - null null -2026-01-28 14:18:39.968 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.968 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.968 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.968 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.968 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.971 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.971 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.971 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.971 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.971 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.971 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.971 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.972 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.972 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.972 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.972 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.973 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.973 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.974 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.InteropServices.RuntimeInformation.nvwt5l6jkw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5rxlvv130r-{0}-nvwt5l6jkw-nvwt5l6jkw.gz' -2026-01-28 14:18:39.974 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.974 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.RuntimeInformation.nvwt5l6jkw.wasm - 200 4918 application/wasm 6.529ms -2026-01-28 14:18:39.977 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.0us88a4qml.wasm - null null -2026-01-28 14:18:39.978 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.978 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.978 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.978 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.978 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.981 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.981 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.981 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.981 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.981 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.981 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.981 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.982 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.982 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.982 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.982 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.983 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.983 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.984 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.InteropServices.0us88a4qml.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\t1e5pdefro-{0}-0us88a4qml-0us88a4qml.gz' -2026-01-28 14:18:39.984 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.984 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.0us88a4qml.wasm - 200 54587 application/wasm 6.974ms -2026-01-28 14:18:39.989 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Intrinsics.bd7qf7pr2d.wasm - null null -2026-01-28 14:18:39.989 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.990 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:39.990 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:39.990 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:39.990 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:39.994 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.994 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.994 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:39.994 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:39.994 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:39.994 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:39.994 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.994 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:39.994 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:39.994 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:39.994 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:39.996 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:39.996 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.996 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Intrinsics.bd7qf7pr2d.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\q8hyt22w7t-{0}-bd7qf7pr2d-bd7qf7pr2d.gz' -2026-01-28 14:18:39.996 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:39.997 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Intrinsics.bd7qf7pr2d.wasm - 200 6966 application/wasm 7.786ms -2026-01-28 14:18:40.003 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Loader.opo019ewpt.wasm - null null -2026-01-28 14:18:40.004 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.004 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.004 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.004 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.004 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.007 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.007 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.007 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.007 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.007 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.007 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.007 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.008 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.008 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.008 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.008 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.008 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.009 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.009 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Loader.opo019ewpt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lulkrkawwl-{0}-opo019ewpt-opo019ewpt.gz' -2026-01-28 14:18:40.009 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.010 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Loader.opo019ewpt.wasm - 200 5430 application/wasm 6.4316ms -2026-01-28 14:18:40.014 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Numerics.opgppvbdi6.wasm - null null -2026-01-28 14:18:40.014 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.014 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.014 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.014 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.014 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.018 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.018 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.018 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.018 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.018 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.018 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.018 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.019 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.019 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.019 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.019 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.020 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.020 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.022 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Numerics.opgppvbdi6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\15lzitxs0t-{0}-opgppvbdi6-opgppvbdi6.gz' -2026-01-28 14:18:40.022 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.022 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Numerics.opgppvbdi6.wasm - 200 134986 application/wasm 8.6434ms -2026-01-28 14:18:40.027 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Formatters.seonqd55ks.wasm - null null -2026-01-28 14:18:40.028 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.028 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.028 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.028 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.028 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.031 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.031 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.031 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.031 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.031 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.031 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.031 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.031 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.031 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.031 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.031 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.032 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.032 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.033 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.Formatters.seonqd55ks.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n0v9yl0jh6-{0}-seonqd55ks-seonqd55ks.gz' -2026-01-28 14:18:40.033 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.033 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Formatters.seonqd55ks.wasm - 200 55611 application/wasm 6.0821ms -2026-01-28 14:18:40.038 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Json.zn0mp7kdmp.wasm - null null -2026-01-28 14:18:40.039 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.039 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.039 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.039 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.039 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.042 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.042 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.042 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.042 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.042 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.042 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.042 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.042 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.042 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.042 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.042 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.043 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.043 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.044 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.Json.zn0mp7kdmp.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wh4w9dsljz-{0}-zn0mp7kdmp-zn0mp7kdmp.gz' -2026-01-28 14:18:40.044 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.044 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Json.zn0mp7kdmp.wasm - 200 5430 application/wasm 6.0327ms -2026-01-28 14:18:40.048 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Primitives.yueinvlj2j.wasm - null null -2026-01-28 14:18:40.048 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.049 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.049 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.049 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.049 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.053 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.053 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.053 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.053 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.053 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.053 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.053 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.053 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.053 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.053 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.053 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.054 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.055 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.055 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.Primitives.yueinvlj2j.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n1gdasegta-{0}-yueinvlj2j-yueinvlj2j.gz' -2026-01-28 14:18:40.056 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.056 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Primitives.yueinvlj2j.wasm - 200 13110 application/wasm 7.8724ms -2026-01-28 14:18:40.060 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Xml.v8gymdawqg.wasm - null null -2026-01-28 14:18:40.061 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.061 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.061 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.061 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.061 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.064 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.064 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.064 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.064 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.064 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.064 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.064 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.064 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.064 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.064 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.064 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.065 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.065 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.066 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.Xml.v8gymdawqg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j0zo8hxl7f-{0}-v8gymdawqg-v8gymdawqg.gz' -2026-01-28 14:18:40.066 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.066 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Xml.v8gymdawqg.wasm - 200 6454 application/wasm 6.4218ms -2026-01-28 14:18:40.071 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.gs7sg0u955.wasm - null null -2026-01-28 14:18:40.072 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.072 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.072 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.072 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.072 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.076 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.076 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.077 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.077 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.077 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.077 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.077 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.077 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.077 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.077 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.077 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.078 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.078 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.079 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.gs7sg0u955.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c9urnolypd-{0}-gs7sg0u955-gs7sg0u955.gz' -2026-01-28 14:18:40.079 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.079 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.gs7sg0u955.wasm - 200 6966 application/wasm 7.8221ms -2026-01-28 14:18:40.085 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.6bp69qbwkj.wasm - null null -2026-01-28 14:18:40.086 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.086 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.086 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.087 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.087 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.091 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.091 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.091 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.091 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.091 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.091 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.091 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.092 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.092 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.092 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.092 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.093 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.093 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.094 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.6bp69qbwkj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\35jd1dce24-{0}-6bp69qbwkj-6bp69qbwkj.gz' -2026-01-28 14:18:40.094 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.094 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.6bp69qbwkj.wasm - 200 34619 application/wasm 8.6922ms -2026-01-28 14:18:40.100 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.AccessControl.6rjkcrpkiw.wasm - null null -2026-01-28 14:18:40.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.100 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.100 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.100 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.100 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.103 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.103 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.103 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.104 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.104 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.104 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.104 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.104 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.104 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.104 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.104 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.105 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.105 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.106 +03:00 [INF] Sending file. Request path: '_framework/System.Security.AccessControl.6rjkcrpkiw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ad9pnuyu1n-{0}-6rjkcrpkiw-6rjkcrpkiw.gz' -2026-01-28 14:18:40.106 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.106 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.AccessControl.6rjkcrpkiw.wasm - 200 47931 application/wasm 6.4654ms -2026-01-28 14:18:40.111 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Claims.hk3ae85l96.wasm - null null -2026-01-28 14:18:40.113 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.113 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.113 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.113 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.113 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.118 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.118 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.118 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.118 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.118 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.118 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.118 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.118 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.118 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.118 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.118 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.119 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.120 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.121 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Claims.hk3ae85l96.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vbfh1norfg-{0}-hk3ae85l96-hk3ae85l96.gz' -2026-01-28 14:18:40.121 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.121 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Claims.hk3ae85l96.wasm - 200 44859 application/wasm 9.3757ms -2026-01-28 14:18:40.135 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Algorithms.whyyu092ah.wasm - null null -2026-01-28 14:18:40.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.136 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.136 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.136 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.136 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.139 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.139 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.139 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.139 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.139 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.139 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.139 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.139 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.139 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.139 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.139 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.140 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.140 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.141 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Algorithms.whyyu092ah.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lts4eaytip-{0}-whyyu092ah-whyyu092ah.gz' -2026-01-28 14:18:40.141 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.141 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Algorithms.whyyu092ah.wasm - 200 6966 application/wasm 6.0576ms -2026-01-28 14:18:40.145 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Cng.m6se2pcpu2.wasm - null null -2026-01-28 14:18:40.146 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.146 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.146 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.146 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.146 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.149 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.149 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.149 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.149 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.149 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.149 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.149 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.150 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.150 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.150 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.150 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.151 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.151 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.152 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Cng.m6se2pcpu2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fe4hdxl6xd-{0}-m6se2pcpu2-m6se2pcpu2.gz' -2026-01-28 14:18:40.152 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.152 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Cng.m6se2pcpu2.wasm - 200 5942 application/wasm 6.5357ms -2026-01-28 14:18:40.157 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Csp.hhoaoktf3s.wasm - null null -2026-01-28 14:18:40.157 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.158 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.158 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.158 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.158 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.161 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.161 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.161 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.161 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.161 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.161 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.161 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.162 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.162 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.162 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.162 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.163 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.163 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.164 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Csp.hhoaoktf3s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\e6c5growx5-{0}-hhoaoktf3s-hhoaoktf3s.gz' -2026-01-28 14:18:40.164 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.164 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Csp.hhoaoktf3s.wasm - 200 5942 application/wasm 6.9708ms -2026-01-28 14:18:40.169 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Encoding.52vboi33gw.wasm - null null -2026-01-28 14:18:40.169 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.169 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.170 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.170 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.170 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.173 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.173 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.173 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.173 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.173 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.173 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.173 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.173 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.173 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.173 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.173 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.174 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.175 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.175 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Encoding.52vboi33gw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9nnkgpt0mz-{0}-52vboi33gw-52vboi33gw.gz' -2026-01-28 14:18:40.175 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.176 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Encoding.52vboi33gw.wasm - 200 5430 application/wasm 6.9594ms -2026-01-28 14:18:40.180 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.OpenSsl.ml0tyz68i8.wasm - null null -2026-01-28 14:18:40.181 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.181 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.181 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.181 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.181 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.184 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.185 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.185 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.185 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.185 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.185 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.185 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.185 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.185 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.185 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.185 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.186 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.186 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.187 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.OpenSsl.ml0tyz68i8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ggd18ngby9-{0}-ml0tyz68i8-ml0tyz68i8.gz' -2026-01-28 14:18:40.187 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.187 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.OpenSsl.ml0tyz68i8.wasm - 200 5430 application/wasm 6.6438ms -2026-01-28 14:18:40.191 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Primitives.1dlu2dh7y8.wasm - null null -2026-01-28 14:18:40.192 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.198 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.198 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.198 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.198 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.198 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.198 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.198 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.198 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.198 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.198 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.198 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.200 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.201 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.202 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Primitives.1dlu2dh7y8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ibvt59z0m8-{0}-1dlu2dh7y8-1dlu2dh7y8.gz' -2026-01-28 14:18:40.202 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.202 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Primitives.1dlu2dh7y8.wasm - 200 5430 application/wasm 10.2843ms -2026-01-28 14:18:40.207 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.X509Certificates.6uh0qispd4.wasm - null null -2026-01-28 14:18:40.207 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.207 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.208 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.208 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.208 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.211 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.211 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.211 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.211 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.211 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.211 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.211 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.211 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.211 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.211 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.211 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.212 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.212 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.213 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.X509Certificates.6uh0qispd4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kv01n2x7di-{0}-6uh0qispd4-6uh0qispd4.gz' -2026-01-28 14:18:40.213 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.213 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.X509Certificates.6uh0qispd4.wasm - 200 6454 application/wasm 6.5676ms -2026-01-28 14:18:40.218 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.mbts90zzn6.wasm - null null -2026-01-28 14:18:40.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.218 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.218 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.218 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.218 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.222 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.222 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.222 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.222 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.222 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.222 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.222 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.223 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.223 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.223 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.223 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.224 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.224 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.231 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.mbts90zzn6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\najz3idkx9-{0}-mbts90zzn6-mbts90zzn6.gz' -2026-01-28 14:18:40.231 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.232 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.mbts90zzn6.wasm - 200 642453 application/wasm 14.0091ms -2026-01-28 14:18:40.241 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Principal.Windows.rp57epmxji.wasm - null null -2026-01-28 14:18:40.242 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.242 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.242 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.242 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.242 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.246 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.246 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.246 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.246 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.246 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.246 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.246 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.247 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.247 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.247 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.247 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.248 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.248 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.254 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Principal.Windows.rp57epmxji.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6c4gn33xif-{0}-rp57epmxji-rp57epmxji.gz' -2026-01-28 14:18:40.254 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.254 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Principal.Windows.rp57epmxji.wasm - 200 27446 application/wasm 12.693ms -2026-01-28 14:18:40.261 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Principal.0lplkfn42e.wasm - null null -2026-01-28 14:18:40.262 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.262 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.262 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.262 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.262 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.267 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.267 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.267 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.267 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.267 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.267 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.267 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.267 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.267 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.267 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.267 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.268 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.268 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.269 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Principal.0lplkfn42e.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bapixjfy1p-{0}-0lplkfn42e-0lplkfn42e.gz' -2026-01-28 14:18:40.269 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.269 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Principal.0lplkfn42e.wasm - 200 4918 application/wasm 8.7554ms -2026-01-28 14:18:40.274 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.SecureString.dhwpww24h2.wasm - null null -2026-01-28 14:18:40.275 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.275 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.275 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.275 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.275 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.278 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.278 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.278 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.278 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.278 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.278 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.278 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.278 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.278 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.278 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.278 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.279 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.279 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.279 +03:00 [INF] Sending file. Request path: '_framework/System.Security.SecureString.dhwpww24h2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\z7kpj97i3q-{0}-dhwpww24h2-dhwpww24h2.gz' -2026-01-28 14:18:40.279 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.279 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.SecureString.dhwpww24h2.wasm - 200 5430 application/wasm 4.8802ms -2026-01-28 14:18:40.285 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.l9hsxb0sdk.wasm - null null -2026-01-28 14:18:40.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.286 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.286 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.286 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.286 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.288 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.289 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.289 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.289 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.289 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.289 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.289 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.289 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.289 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.289 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.289 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.289 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.290 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.290 +03:00 [INF] Sending file. Request path: '_framework/System.Security.l9hsxb0sdk.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4w9pau8lca-{0}-l9hsxb0sdk-l9hsxb0sdk.gz' -2026-01-28 14:18:40.290 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.290 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.l9hsxb0sdk.wasm - 200 7990 application/wasm 5.2921ms -2026-01-28 14:18:40.295 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ServiceModel.Web.zcvkay2idv.wasm - null null -2026-01-28 14:18:40.295 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.295 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.295 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.295 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.295 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.297 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.297 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.297 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.297 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.297 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.297 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.297 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.297 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.297 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.297 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.297 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.298 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.298 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.299 +03:00 [INF] Sending file. Request path: '_framework/System.ServiceModel.Web.zcvkay2idv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wy542848av-{0}-zcvkay2idv-zcvkay2idv.gz' -2026-01-28 14:18:40.299 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.299 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ServiceModel.Web.zcvkay2idv.wasm - 200 6454 application/wasm 4.1405ms -2026-01-28 14:18:40.304 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ServiceProcess.x10kdcthsy.wasm - null null -2026-01-28 14:18:40.305 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.305 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.305 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.305 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.305 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.307 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.307 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.307 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.307 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.307 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.307 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.307 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.307 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.307 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.307 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.307 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.308 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.308 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.309 +03:00 [INF] Sending file. Request path: '_framework/System.ServiceProcess.x10kdcthsy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2yoiew09ss-{0}-x10kdcthsy-x10kdcthsy.gz' -2026-01-28 14:18:40.309 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.309 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ServiceProcess.x10kdcthsy.wasm - 200 5430 application/wasm 4.7158ms -2026-01-28 14:18:40.313 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.CodePages.36p8aommvy.wasm - null null -2026-01-28 14:18:40.313 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.313 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.313 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.313 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.313 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.316 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.316 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.316 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.316 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.316 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.316 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.316 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.316 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.316 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.316 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.316 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.317 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.317 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.321 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Encoding.CodePages.36p8aommvy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lrsfp7sbdw-{0}-36p8aommvy-36p8aommvy.gz' -2026-01-28 14:18:40.321 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.321 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.CodePages.36p8aommvy.wasm - 200 732580 application/wasm 8.814ms -2026-01-28 14:18:40.328 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.Extensions.7s9z475qvj.wasm - null null -2026-01-28 14:18:40.328 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.328 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.328 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.328 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.328 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.331 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.331 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.331 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.331 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.331 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.331 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.331 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.331 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.331 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.331 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.331 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.332 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.332 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.333 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Encoding.Extensions.7s9z475qvj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ij3a13vyp7-{0}-7s9z475qvj-7s9z475qvj.gz' -2026-01-28 14:18:40.333 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.333 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.Extensions.7s9z475qvj.wasm - 200 5430 application/wasm 5.606ms -2026-01-28 14:18:40.337 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.ldc2rqh80i.wasm - null null -2026-01-28 14:18:40.337 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.337 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.337 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.337 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.337 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.340 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.340 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.340 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.340 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.340 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.340 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.340 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.340 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.340 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.340 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.340 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.341 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.341 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.342 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Encoding.ldc2rqh80i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\w1z5z4lpop-{0}-ldc2rqh80i-ldc2rqh80i.gz' -2026-01-28 14:18:40.342 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.342 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.ldc2rqh80i.wasm - 200 5430 application/wasm 5.074ms -2026-01-28 14:18:40.345 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Encodings.Web.8dol48h5sw.wasm - null null -2026-01-28 14:18:40.346 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.346 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.346 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.346 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.346 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.348 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.348 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.348 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.348 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.348 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.348 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.348 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.348 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.348 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.348 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.348 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.348 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.349 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.349 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Encodings.Web.8dol48h5sw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b5ft8vnha4-{0}-8dol48h5sw-8dol48h5sw.gz' -2026-01-28 14:18:40.350 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.350 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Encodings.Web.8dol48h5sw.wasm - 200 55611 application/wasm 4.486ms -2026-01-28 14:18:40.354 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Json.3vc5r851ef.wasm - null null -2026-01-28 14:18:40.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.354 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.354 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.354 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.354 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.357 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.357 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.357 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.357 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.357 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.357 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.357 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.357 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.357 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.357 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.357 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.358 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.358 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.362 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Json.3vc5r851ef.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\is1y7e0ewf-{0}-3vc5r851ef-3vc5r851ef.gz' -2026-01-28 14:18:40.362 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.362 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Json.3vc5r851ef.wasm - 200 638869 application/wasm 8.221ms -2026-01-28 14:18:40.368 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.RegularExpressions.fa55zq7noc.wasm - null null -2026-01-28 14:18:40.369 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.369 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.369 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.369 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.369 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.371 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.372 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.372 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.372 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.372 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.372 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.372 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.372 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.372 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.372 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.372 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.372 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.373 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.376 +03:00 [INF] Sending file. Request path: '_framework/System.Text.RegularExpressions.fa55zq7noc.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b5e2kemd87-{0}-fa55zq7noc-fa55zq7noc.gz' -2026-01-28 14:18:40.376 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.376 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.RegularExpressions.fa55zq7noc.wasm - 200 374637 application/wasm 7.2865ms -2026-01-28 14:18:40.382 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.AccessControl.0jx6t23d4a.wasm - null null -2026-01-28 14:18:40.383 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.383 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.383 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.383 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.383 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.385 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.385 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.385 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.385 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.385 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.385 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.385 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.385 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.385 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.385 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.385 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.386 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.386 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.387 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.AccessControl.0jx6t23d4a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7hxeyq70th-{0}-0jx6t23d4a-0jx6t23d4a.gz' -2026-01-28 14:18:40.387 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.387 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.AccessControl.0jx6t23d4a.wasm - 200 23350 application/wasm 5.2992ms -2026-01-28 14:18:40.393 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Channels.5yls0a3tlo.wasm - null null -2026-01-28 14:18:40.393 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.393 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.393 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.393 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.393 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.396 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.396 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.396 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.396 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.396 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.396 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.396 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.397 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.397 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.397 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.397 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.398 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.398 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.399 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Channels.5yls0a3tlo.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\yfc45zghwv-{0}-5yls0a3tlo-5yls0a3tlo.gz' -2026-01-28 14:18:40.399 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.399 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Channels.5yls0a3tlo.wasm - 200 56123 application/wasm 6.4196ms -2026-01-28 14:18:40.406 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Overlapped.7fzdvfjpcj.wasm - null null -2026-01-28 14:18:40.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.407 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.407 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.407 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.407 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.410 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.410 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.410 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.410 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.410 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.410 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.410 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.410 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.410 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.410 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.410 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.411 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.411 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.412 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Overlapped.7fzdvfjpcj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1nn32vjcux-{0}-7fzdvfjpcj-7fzdvfjpcj.gz' -2026-01-28 14:18:40.412 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.412 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Overlapped.7fzdvfjpcj.wasm - 200 5430 application/wasm 5.8794ms -2026-01-28 14:18:40.417 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Dataflow.b1bop2hs5a.wasm - null null -2026-01-28 14:18:40.418 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.418 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.418 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.418 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.418 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.420 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.420 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.420 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.420 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.420 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.420 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.420 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.421 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.421 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.421 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.421 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.421 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.421 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.423 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Tasks.Dataflow.b1bop2hs5a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bygxarg1od-{0}-b1bop2hs5a-b1bop2hs5a.gz' -2026-01-28 14:18:40.423 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.423 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Dataflow.b1bop2hs5a.wasm - 200 175439 application/wasm 5.8118ms -2026-01-28 14:18:40.430 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Extensions.w1aib1cdwa.wasm - null null -2026-01-28 14:18:40.430 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.430 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.430 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.430 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.430 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.433 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.433 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.433 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.433 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.433 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.433 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.433 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.433 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.433 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.433 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.433 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.434 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.434 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.435 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Tasks.Extensions.w1aib1cdwa.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wzcconrhmx-{0}-w1aib1cdwa-w1aib1cdwa.gz' -2026-01-28 14:18:40.435 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.435 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Extensions.w1aib1cdwa.wasm - 200 5430 application/wasm 5.4854ms -2026-01-28 14:18:40.441 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Parallel.k09pj8k6wz.wasm - null null -2026-01-28 14:18:40.441 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.441 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.442 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.442 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.442 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.444 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.444 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.445 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.445 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.445 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.445 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.445 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.445 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.445 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.445 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.445 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.445 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.446 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.447 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Tasks.Parallel.k09pj8k6wz.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\eo71wakl9t-{0}-k09pj8k6wz-k09pj8k6wz.gz' -2026-01-28 14:18:40.447 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.447 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Parallel.k09pj8k6wz.wasm - 200 51003 application/wasm 6.076ms -2026-01-28 14:18:40.453 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.ixxtp5uj8k.wasm - null null -2026-01-28 14:18:40.454 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.454 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.454 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.454 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.454 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.457 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.457 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.457 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.457 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.457 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.457 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.457 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.458 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.458 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.458 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.458 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.459 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.459 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.460 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Tasks.ixxtp5uj8k.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dmqlrfwu1b-{0}-ixxtp5uj8k-ixxtp5uj8k.gz' -2026-01-28 14:18:40.460 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.460 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.ixxtp5uj8k.wasm - 200 6454 application/wasm 6.8499ms -2026-01-28 14:18:40.465 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Thread.oikmdgabjt.wasm - null null -2026-01-28 14:18:40.465 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.465 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.465 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.465 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.465 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.468 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.468 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.468 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.468 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.469 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.469 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.469 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.469 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.469 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.469 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.469 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.470 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.470 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.470 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Thread.oikmdgabjt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v09yqluov3-{0}-oikmdgabjt-oikmdgabjt.gz' -2026-01-28 14:18:40.470 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.470 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Thread.oikmdgabjt.wasm - 200 5430 application/wasm 5.8465ms -2026-01-28 14:18:40.475 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.ThreadPool.szctd5y8bn.wasm - null null -2026-01-28 14:18:40.476 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.476 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.476 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.476 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.476 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.478 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.478 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.478 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.478 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.478 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.479 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.479 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.479 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.479 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.479 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.479 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.479 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.480 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.480 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.ThreadPool.szctd5y8bn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jfyqp856kd-{0}-szctd5y8bn-szctd5y8bn.gz' -2026-01-28 14:18:40.480 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.480 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.ThreadPool.szctd5y8bn.wasm - 200 5430 application/wasm 5.1471ms -2026-01-28 14:18:40.485 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Timer.k8rrsskw5o.wasm - null null -2026-01-28 14:18:40.486 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.486 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.486 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.486 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.486 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.489 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.489 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.489 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.489 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.489 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.489 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.489 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.489 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.489 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.489 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.489 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.490 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.490 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.491 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Timer.k8rrsskw5o.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kw1ofqxbky-{0}-k8rrsskw5o-k8rrsskw5o.gz' -2026-01-28 14:18:40.491 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.491 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Timer.k8rrsskw5o.wasm - 200 4918 application/wasm 6.0428ms -2026-01-28 14:18:40.496 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.s2hrn953g9.wasm - null null -2026-01-28 14:18:40.497 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.497 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.497 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.497 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.497 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.500 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.500 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.500 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.500 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.500 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.500 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.500 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.500 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.500 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.500 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.500 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.501 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.501 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.502 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.s2hrn953g9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6obifrcy4d-{0}-s2hrn953g9-s2hrn953g9.gz' -2026-01-28 14:18:40.502 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.502 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.s2hrn953g9.wasm - 200 34619 application/wasm 6.2585ms -2026-01-28 14:18:40.509 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Transactions.Local.nufsb5pyrr.wasm - null null -2026-01-28 14:18:40.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.509 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.509 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.509 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.509 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.512 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.512 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.512 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.512 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.512 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.512 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.512 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.512 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.512 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.512 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.512 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.513 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.513 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.515 +03:00 [INF] Sending file. Request path: '_framework/System.Transactions.Local.nufsb5pyrr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vnl4qu3in7-{0}-nufsb5pyrr-nufsb5pyrr.gz' -2026-01-28 14:18:40.515 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.515 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Transactions.Local.nufsb5pyrr.wasm - 200 165711 application/wasm 6.5246ms -2026-01-28 14:18:40.520 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Transactions.3ezo8twol7.wasm - null null -2026-01-28 14:18:40.521 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.521 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.521 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.521 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.521 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.523 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.523 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.523 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.523 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.523 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.523 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.523 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.523 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.523 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.523 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.523 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.524 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.524 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.525 +03:00 [INF] Sending file. Request path: '_framework/System.Transactions.3ezo8twol7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v8zohqruou-{0}-3ezo8twol7-3ezo8twol7.gz' -2026-01-28 14:18:40.525 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.525 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Transactions.3ezo8twol7.wasm - 200 6454 application/wasm 4.5754ms -2026-01-28 14:18:40.529 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ValueTuple.lle7yi2fzv.wasm - null null -2026-01-28 14:18:40.529 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.529 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.529 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.529 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.529 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.532 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.532 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.532 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.532 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.532 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.532 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.532 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.532 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.532 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.532 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.532 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.533 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.534 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.534 +03:00 [INF] Sending file. Request path: '_framework/System.ValueTuple.lle7yi2fzv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\io39vdvq9n-{0}-lle7yi2fzv-lle7yi2fzv.gz' -2026-01-28 14:18:40.534 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.535 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ValueTuple.lle7yi2fzv.wasm - 200 5430 application/wasm 6.0389ms -2026-01-28 14:18:40.539 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Web.HttpUtility.u5rdfpwou6.wasm - null null -2026-01-28 14:18:40.540 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.540 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.540 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.540 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.540 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.542 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.542 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.542 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.542 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.542 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.542 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.542 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.543 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.543 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.543 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.543 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.543 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.544 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.544 +03:00 [INF] Sending file. Request path: '_framework/System.Web.HttpUtility.u5rdfpwou6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rn4buhtgqs-{0}-u5rdfpwou6-u5rdfpwou6.gz' -2026-01-28 14:18:40.544 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.544 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Web.HttpUtility.u5rdfpwou6.wasm - 200 19766 application/wasm 5.4033ms -2026-01-28 14:18:40.549 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Web.wygikf6la5.wasm - null null -2026-01-28 14:18:40.550 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.550 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.550 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.550 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.550 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.553 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.553 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.553 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.553 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.553 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.553 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.553 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.553 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.553 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.553 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.553 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.553 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.554 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.554 +03:00 [INF] Sending file. Request path: '_framework/System.Web.wygikf6la5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ru9f3t39bb-{0}-wygikf6la5-wygikf6la5.gz' -2026-01-28 14:18:40.554 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.554 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Web.wygikf6la5.wasm - 200 4918 application/wasm 5.0733ms -2026-01-28 14:18:40.560 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Windows.axtn86mzz6.wasm - null null -2026-01-28 14:18:40.560 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.560 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.560 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.560 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.560 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.563 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.563 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.563 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.563 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.563 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.563 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.563 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.564 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.564 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.564 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.564 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.565 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.565 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.565 +03:00 [INF] Sending file. Request path: '_framework/System.Windows.axtn86mzz6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1my90r3byi-{0}-axtn86mzz6-axtn86mzz6.gz' -2026-01-28 14:18:40.566 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.566 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Windows.axtn86mzz6.wasm - 200 5430 application/wasm 6.1425ms -2026-01-28 14:18:40.570 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.Linq.j4b5ce3025.wasm - null null -2026-01-28 14:18:40.571 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.571 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.571 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.571 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.571 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.574 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.574 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.574 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.574 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.574 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.574 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.574 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.574 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.574 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.574 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.574 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.575 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.575 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.576 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.Linq.j4b5ce3025.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2m6czvvsuo-{0}-j4b5ce3025-j4b5ce3025.gz' -2026-01-28 14:18:40.576 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.576 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.Linq.j4b5ce3025.wasm - 200 5430 application/wasm 6.3543ms -2026-01-28 14:18:40.580 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.ReaderWriter.60z52rxro3.wasm - null null -2026-01-28 14:18:40.581 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.581 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.581 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.581 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.581 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.585 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.585 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.585 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.585 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.585 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.585 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.585 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.585 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.585 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.585 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.585 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.586 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.586 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.586 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.ReaderWriter.60z52rxro3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rg4isli5jp-{0}-60z52rxro3-60z52rxro3.gz' -2026-01-28 14:18:40.586 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.587 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.ReaderWriter.60z52rxro3.wasm - 200 11574 application/wasm 6.35ms -2026-01-28 14:18:40.592 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.Serialization.pm5yw3aolk.wasm - null null -2026-01-28 14:18:40.592 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.593 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.593 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.593 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.593 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.595 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.595 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.595 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.595 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.595 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.595 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.595 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.595 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.595 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.595 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.595 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.596 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.596 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.597 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.Serialization.pm5yw3aolk.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\o41cy5pfaz-{0}-pm5yw3aolk-pm5yw3aolk.gz' -2026-01-28 14:18:40.597 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.597 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.Serialization.pm5yw3aolk.wasm - 200 5942 application/wasm 5.0998ms -2026-01-28 14:18:40.602 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XDocument.b4xtw4lbmx.wasm - null null -2026-01-28 14:18:40.603 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.603 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.603 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.603 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.603 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.606 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.606 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.606 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.606 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.606 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.606 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.606 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.606 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.606 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.606 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.606 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.607 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.607 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.608 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XDocument.b4xtw4lbmx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\veh6k128ug-{0}-b4xtw4lbmx-b4xtw4lbmx.gz' -2026-01-28 14:18:40.608 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.608 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XDocument.b4xtw4lbmx.wasm - 200 5430 application/wasm 5.7798ms -2026-01-28 14:18:40.612 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XPath.XDocument.p6s7bmw3ej.wasm - null null -2026-01-28 14:18:40.612 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.612 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.613 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.613 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.613 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.615 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.615 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.615 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.615 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.615 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.615 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.615 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.615 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.616 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.616 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.616 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.616 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.616 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.617 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XPath.XDocument.p6s7bmw3ej.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dp2x1o3mj5-{0}-p6s7bmw3ej-p6s7bmw3ej.gz' -2026-01-28 14:18:40.617 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.617 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XPath.XDocument.p6s7bmw3ej.wasm - 200 5430 application/wasm 5.5771ms -2026-01-28 14:18:40.622 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XPath.egozus3d9z.wasm - null null -2026-01-28 14:18:40.623 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.623 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.623 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.623 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.623 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.626 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.626 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.626 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.626 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.626 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.626 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.626 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.626 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.626 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.626 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.626 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.626 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.627 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.627 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XPath.egozus3d9z.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6kx3a3nw65-{0}-egozus3d9z-egozus3d9z.gz' -2026-01-28 14:18:40.627 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.628 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XPath.egozus3d9z.wasm - 200 5430 application/wasm 5.3863ms -2026-01-28 14:18:40.633 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XmlDocument.771pf23z5h.wasm - null null -2026-01-28 14:18:40.634 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.634 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.634 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.634 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.634 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.637 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.637 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.637 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.637 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.637 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.637 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.637 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.637 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.637 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.637 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.637 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.638 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.638 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.639 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XmlDocument.771pf23z5h.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mit9lp1cls-{0}-771pf23z5h-771pf23z5h.gz' -2026-01-28 14:18:40.639 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.639 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XmlDocument.771pf23z5h.wasm - 200 5430 application/wasm 6.489ms -2026-01-28 14:18:40.644 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XmlSerializer.h0uogtkh03.wasm - null null -2026-01-28 14:18:40.645 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.645 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.645 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.645 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.645 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.648 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.648 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.648 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.648 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.648 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.648 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.648 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.648 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.648 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.648 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.648 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.649 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.649 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.650 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XmlSerializer.h0uogtkh03.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6ubynsl46b-{0}-h0uogtkh03-h0uogtkh03.gz' -2026-01-28 14:18:40.650 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.650 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XmlSerializer.h0uogtkh03.wasm - 200 7478 application/wasm 6.0825ms -2026-01-28 14:18:40.656 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.95nan2l20b.wasm - null null -2026-01-28 14:18:40.656 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.656 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.657 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.657 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.657 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.659 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.659 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.659 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.659 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.659 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.659 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.659 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.660 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.660 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.660 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.660 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.660 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.661 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.662 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.95nan2l20b.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pcooe0k5kk-{0}-95nan2l20b-95nan2l20b.gz' -2026-01-28 14:18:40.662 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.662 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.95nan2l20b.wasm - 200 13110 application/wasm 6.1318ms -2026-01-28 14:18:40.667 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.au65xu8d95.wasm - null null -2026-01-28 14:18:40.668 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.668 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.668 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.668 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.668 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.671 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.671 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.671 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.671 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.671 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.671 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.671 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.671 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.671 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.671 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.671 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.672 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.672 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.673 +03:00 [INF] Sending file. Request path: '_framework/System.au65xu8d95.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\um28rmltyb-{0}-au65xu8d95-au65xu8d95.gz' -2026-01-28 14:18:40.673 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.673 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.au65xu8d95.wasm - 200 39739 application/wasm 5.9855ms -2026-01-28 14:18:40.679 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/WindowsBase.mi3hkxthj8.wasm - null null -2026-01-28 14:18:40.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.680 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.680 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.680 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.680 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.682 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.682 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.682 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.682 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.682 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.682 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.682 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.682 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.682 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.683 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.683 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.683 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.684 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.684 +03:00 [INF] Sending file. Request path: '_framework/WindowsBase.mi3hkxthj8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8syd5uq41h-{0}-mi3hkxthj8-mi3hkxthj8.gz' -2026-01-28 14:18:40.684 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.685 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/WindowsBase.mi3hkxthj8.wasm - 200 5942 application/wasm 5.53ms -2026-01-28 14:18:40.690 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/mscorlib.uifnjyorgo.wasm - null null -2026-01-28 14:18:40.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.691 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.691 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.691 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.691 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.693 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.693 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.693 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.693 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.693 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.693 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.693 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.693 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.693 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.694 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.694 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.694 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.694 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.695 +03:00 [INF] Sending file. Request path: '_framework/mscorlib.uifnjyorgo.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xpihquz2r5-{0}-uifnjyorgo-uifnjyorgo.gz' -2026-01-28 14:18:40.695 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.696 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/mscorlib.uifnjyorgo.wasm - 200 49467 application/wasm 5.1685ms -2026-01-28 14:18:40.701 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/netstandard.qvqeanc7qr.wasm - null null -2026-01-28 14:18:40.702 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.702 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.702 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.702 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.702 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.705 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.705 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.705 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.705 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.705 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.705 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.705 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.705 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.705 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.705 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.705 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.706 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.706 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.708 +03:00 [INF] Sending file. Request path: '_framework/netstandard.qvqeanc7qr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ciukkw19kg-{0}-qvqeanc7qr-qvqeanc7qr.gz' -2026-01-28 14:18:40.708 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.708 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/netstandard.qvqeanc7qr.wasm - 200 90432 application/wasm 6.5537ms -2026-01-28 14:18:40.714 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Application.Contracts.uq8ziq260z.wasm - null null -2026-01-28 14:18:40.714 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.714 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.714 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.715 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.715 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.718 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.718 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.718 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.718 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.718 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.718 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.718 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.718 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.718 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.718 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.718 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.719 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.719 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.720 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Application.Contracts.uq8ziq260z.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0lm5ebgqof-{0}-uq8ziq260z-uq8ziq260z.gz' -2026-01-28 14:18:40.720 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.720 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Application.Contracts.uq8ziq260z.wasm - 200 8502 application/wasm 6.778ms -2026-01-28 14:18:40.736 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Domain.Shared.a1r7gug13a.wasm - null null -2026-01-28 14:18:40.737 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.737 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.737 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.737 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.737 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.742 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.742 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.742 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.742 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.742 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.742 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.742 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.742 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.742 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.742 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.742 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.743 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.743 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.744 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Domain.Shared.a1r7gug13a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\qwx72m6fc1-{0}-a1r7gug13a-a1r7gug13a.gz' -2026-01-28 14:18:40.744 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.745 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Domain.Shared.a1r7gug13a.wasm - 200 23350 application/wasm 8.2683ms -2026-01-28 14:18:40.751 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.HttpApi.Client.3wngu4nxgr.wasm - null null -2026-01-28 14:18:40.752 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.752 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.752 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.752 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.752 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.755 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.755 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.755 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.755 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.755 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.755 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.756 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.756 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.756 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.756 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.756 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.757 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.757 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.758 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.HttpApi.Client.3wngu4nxgr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\scloparoeu-{0}-3wngu4nxgr-3wngu4nxgr.gz' -2026-01-28 14:18:40.758 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.758 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.HttpApi.Client.3wngu4nxgr.wasm - 200 7990 application/wasm 6.7086ms -2026-01-28 14:18:40.763 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.Application.Contracts.k8182bqsqt.wasm - null null -2026-01-28 14:18:40.764 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.764 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.764 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.764 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.764 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.768 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.768 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.768 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.768 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.768 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.768 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.768 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.768 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.768 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.768 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.768 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.769 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.769 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.772 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Account.Application.Contracts.k8182bqsqt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lj6k2ntok7-{0}-k8182bqsqt-k8182bqsqt.gz' -2026-01-28 14:18:40.772 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.772 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.Application.Contracts.k8182bqsqt.wasm - 200 182095 application/wasm 9.098ms -2026-01-28 14:18:40.786 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.HttpApi.Client.tyjyiionpp.wasm - null null -2026-01-28 14:18:40.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.786 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.786 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.786 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.786 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.789 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.789 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.789 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.789 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.789 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.789 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.789 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.789 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.789 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.789 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.789 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.790 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.790 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.791 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Account.HttpApi.Client.tyjyiionpp.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\am5qy7si0d-{0}-tyjyiionpp-tyjyiionpp.gz' -2026-01-28 14:18:40.791 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.791 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.HttpApi.Client.tyjyiionpp.wasm - 200 36667 application/wasm 5.2377ms -2026-01-28 14:18:40.796 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.w8xtoi4w2w.wasm - null null -2026-01-28 14:18:40.797 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.797 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.797 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.797 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.797 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.799 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.799 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.799 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.799 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.799 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.799 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.799 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.799 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.799 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.799 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.799 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.800 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.801 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.801 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.w8xtoi4w2w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7rtjnlhdr6-{0}-w8xtoi4w2w-w8xtoi4w2w.gz' -2026-01-28 14:18:40.801 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.802 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.w8xtoi4w2w.wasm - 200 23350 application/wasm 5.6094ms -2026-01-28 14:18:40.807 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.tfobi4ljh9.wasm - null null -2026-01-28 14:18:40.808 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.808 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.808 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.808 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.808 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.811 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.811 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.811 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.811 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.811 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.811 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.811 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.812 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.812 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.812 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.812 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.813 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.813 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.814 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.tfobi4ljh9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dtw2jvq9ko-{0}-tfobi4ljh9-tfobi4ljh9.gz' -2026-01-28 14:18:40.814 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.815 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.tfobi4ljh9.wasm - 200 49979 application/wasm 7.1768ms -2026-01-28 14:18:40.822 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.v2vsbafrsu.wasm - null null -2026-01-28 14:18:40.823 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.823 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.823 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.823 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.823 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.826 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.826 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.827 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.827 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.827 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.827 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.827 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.827 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.827 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.827 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.827 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.828 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.828 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.829 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.v2vsbafrsu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\314s0gg35t-{0}-v2vsbafrsu-v2vsbafrsu.gz' -2026-01-28 14:18:40.829 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.829 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.v2vsbafrsu.wasm - 200 31030 application/wasm 6.8095ms -2026-01-28 14:18:40.903 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.g96eihnnrd.wasm - null null -2026-01-28 14:18:40.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.903 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.903 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.903 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.903 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.906 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.906 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.906 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.906 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.906 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.906 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.906 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.906 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.906 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.906 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.906 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.907 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.907 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.908 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.g96eihnnrd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xik7tubv32-{0}-g96eihnnrd-g96eihnnrd.gz' -2026-01-28 14:18:40.908 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.908 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.g96eihnnrd.wasm - 200 57659 application/wasm 5.5285ms -2026-01-28 14:18:40.917 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.ysnekz4aln.wasm - null null -2026-01-28 14:18:40.917 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.918 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.918 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.918 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.918 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.920 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.920 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.920 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.920 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.920 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.920 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.920 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.920 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.920 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.920 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.920 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.921 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.921 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.922 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.ysnekz4aln.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\29y4ttn7p6-{0}-ysnekz4aln-ysnekz4aln.gz' -2026-01-28 14:18:40.922 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.922 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.ysnekz4aln.wasm - 200 56635 application/wasm 5.5827ms -2026-01-28 14:18:40.927 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.9bxiazim84.wasm - null null -2026-01-28 14:18:40.928 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.928 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.928 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.928 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.928 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.930 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.930 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.930 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.930 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.930 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.930 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.930 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.931 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.931 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.931 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.931 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.931 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.931 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.932 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.9bxiazim84.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0h6kud88pg-{0}-9bxiazim84-9bxiazim84.gz' -2026-01-28 14:18:40.932 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.932 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.9bxiazim84.wasm - 200 6966 application/wasm 5.1818ms -2026-01-28 14:18:40.937 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.tlnm5w6vzv.wasm - null null -2026-01-28 14:18:40.938 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.938 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.938 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.938 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.938 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.940 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.940 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.940 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.940 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.940 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.940 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.940 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.941 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.941 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.941 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.941 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.941 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.942 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.942 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.tlnm5w6vzv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\79f9hg2kci-{0}-tlnm5w6vzv-tlnm5w6vzv.gz' -2026-01-28 14:18:40.942 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.942 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.tlnm5w6vzv.wasm - 200 29494 application/wasm 5.4177ms -2026-01-28 14:18:40.947 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.vwbrjkm58i.wasm - null null -2026-01-28 14:18:40.947 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.948 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.948 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.948 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.948 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.950 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.950 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.950 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.950 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.950 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.950 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.950 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.950 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.950 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.950 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.950 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.952 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.952 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.953 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.vwbrjkm58i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v23sh1qt8y-{0}-vwbrjkm58i-vwbrjkm58i.gz' -2026-01-28 14:18:40.953 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.953 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.vwbrjkm58i.wasm - 200 9526 application/wasm 5.8319ms -2026-01-28 14:18:40.957 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.w3letp91lq.wasm - null null -2026-01-28 14:18:40.957 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.958 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.958 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.958 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.958 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.959 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.959 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.959 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.959 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.959 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.959 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.960 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.960 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.960 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.960 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.960 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.960 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.960 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.961 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.w3letp91lq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5xzpephnhm-{0}-w3letp91lq-w3letp91lq.gz' -2026-01-28 14:18:40.961 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.961 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.w3letp91lq.wasm - 200 9526 application/wasm 4.0209ms -2026-01-28 14:18:40.965 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.3jjfqno7lg.wasm - null null -2026-01-28 14:18:40.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.968 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.968 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.968 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.968 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.968 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.968 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.968 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.968 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.968 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.968 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.968 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.969 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.969 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.970 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.3jjfqno7lg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wywr70k095-{0}-3jjfqno7lg-3jjfqno7lg.gz' -2026-01-28 14:18:40.970 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.970 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.3jjfqno7lg.wasm - 200 53051 application/wasm 5.9613ms -2026-01-28 14:18:40.976 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Contracts.syr4dyw7am.wasm - null null -2026-01-28 14:18:40.976 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.976 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.977 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.977 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.977 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.978 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.978 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.978 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.978 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.978 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.978 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.978 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.979 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.979 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.979 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.979 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.979 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.979 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.980 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.Contracts.syr4dyw7am.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ch1l6yg9xg-{0}-syr4dyw7am-syr4dyw7am.gz' -2026-01-28 14:18:40.980 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.980 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Contracts.syr4dyw7am.wasm - 200 32054 application/wasm 4.0872ms -2026-01-28 14:18:40.986 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.bu7idw18jp.wasm - null null -2026-01-28 14:18:40.986 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.986 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.986 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.986 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.986 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.989 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.989 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.989 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.989 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.989 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.989 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.989 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.989 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.989 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.989 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.989 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.990 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.990 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.991 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.bu7idw18jp.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6qc21ahd0h-{0}-bu7idw18jp-bu7idw18jp.gz' -2026-01-28 14:18:40.991 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:40.991 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.bu7idw18jp.wasm - 200 24886 application/wasm 5.5444ms -2026-01-28 14:18:40.995 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.Contracts.ao19uqfxk1.wasm - null null -2026-01-28 14:18:40.996 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.996 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:40.996 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:40.996 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:40.996 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:40.998 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.998 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.998 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:40.998 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:40.998 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:40.998 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:40.998 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.998 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:40.998 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:40.998 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:40.998 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:40.999 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:40.999 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.000 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Auditing.Contracts.ao19uqfxk1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gvrtk0uenw-{0}-ao19uqfxk1-ao19uqfxk1.gz' -2026-01-28 14:18:41.000 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.000 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.Contracts.ao19uqfxk1.wasm - 200 6454 application/wasm 4.4946ms -2026-01-28 14:18:41.004 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.96yxua01gc.wasm - null null -2026-01-28 14:18:41.005 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.006 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.006 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.006 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.006 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.008 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.008 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.008 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.008 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.008 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.008 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.008 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.008 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.008 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.008 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.008 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.009 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.009 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.010 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Auditing.96yxua01gc.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0bpurwxf4x-{0}-96yxua01gc-96yxua01gc.gz' -2026-01-28 14:18:41.010 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.010 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.96yxua01gc.wasm - 200 51003 application/wasm 5.6378ms -2026-01-28 14:18:41.016 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AuditLogging.Domain.Shared.dftqdjnknx.wasm - null null -2026-01-28 14:18:41.018 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.018 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.018 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.018 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.018 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.021 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.021 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.021 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.021 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.021 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.021 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.021 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.022 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.022 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.022 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.022 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.023 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.023 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.025 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AuditLogging.Domain.Shared.dftqdjnknx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\een9hz6ik5-{0}-dftqdjnknx-dftqdjnknx.gz' -2026-01-28 14:18:41.025 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.025 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AuditLogging.Domain.Shared.dftqdjnknx.wasm - 200 158026 application/wasm 8.9639ms -2026-01-28 14:18:41.036 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.Abstractions.afyzjlgpmi.wasm - null null -2026-01-28 14:18:41.037 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.037 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.037 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.037 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.037 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.039 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.039 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.039 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.039 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.039 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.039 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.039 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.040 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.040 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.040 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.040 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.040 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.041 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.042 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Authorization.Abstractions.afyzjlgpmi.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mzg3hwxb9z-{0}-afyzjlgpmi-afyzjlgpmi.gz' -2026-01-28 14:18:41.042 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.042 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.Abstractions.afyzjlgpmi.wasm - 200 36155 application/wasm 6.1967ms -2026-01-28 14:18:41.046 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.af69ln5ic4.wasm - null null -2026-01-28 14:18:41.047 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.047 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.047 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.047 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.047 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.049 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.049 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.049 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.049 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.049 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.049 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.049 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.049 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.049 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.049 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.049 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.050 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.050 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.052 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Authorization.af69ln5ic4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kmfgdovl74-{0}-af69ln5ic4-af69ln5ic4.gz' -2026-01-28 14:18:41.052 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.052 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.af69ln5ic4.wasm - 200 134986 application/wasm 5.6198ms -2026-01-28 14:18:41.057 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.757dvxj4ke.wasm - null null -2026-01-28 14:18:41.057 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.057 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.057 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.057 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.057 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.059 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.060 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.060 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.060 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.060 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.060 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.060 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.060 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.060 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.060 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.060 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.060 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.061 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.061 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Autofac.757dvxj4ke.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dnh2928fpn-{0}-757dvxj4ke-757dvxj4ke.gz' -2026-01-28 14:18:41.061 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.061 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.757dvxj4ke.wasm - 200 20790 application/wasm 4.6799ms -2026-01-28 14:18:41.066 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.WebAssembly.67r46affwj.wasm - null null -2026-01-28 14:18:41.066 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.066 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.066 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.066 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.066 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.068 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.068 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.068 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.068 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.068 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.068 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.068 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.068 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.068 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.068 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.068 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.069 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.069 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.070 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Autofac.WebAssembly.67r46affwj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fy88n7o3re-{0}-67r46affwj-67r46affwj.gz' -2026-01-28 14:18:41.070 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.070 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.WebAssembly.67r46affwj.wasm - 200 6454 application/wasm 4.1973ms -2026-01-28 14:18:41.074 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundJobs.Domain.Shared.1ndljj9fe1.wasm - null null -2026-01-28 14:18:41.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.074 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.074 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.074 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.074 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.076 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.076 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.076 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.076 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.076 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.076 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.076 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.077 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.077 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.077 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.077 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.077 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.077 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.078 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BackgroundJobs.Domain.Shared.1ndljj9fe1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\it8pbr6hs7-{0}-1ndljj9fe1-1ndljj9fe1.gz' -2026-01-28 14:18:41.078 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.078 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundJobs.Domain.Shared.1ndljj9fe1.wasm - 200 5430 application/wasm 4.2509ms -2026-01-28 14:18:41.082 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundWorkers.2p6fuqijf3.wasm - null null -2026-01-28 14:18:41.082 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.082 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.082 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.083 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.083 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.085 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.085 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.085 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.085 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.085 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.085 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.085 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.085 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.085 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.085 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.085 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.086 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.086 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.087 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BackgroundWorkers.2p6fuqijf3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tnta0aqntp-{0}-2p6fuqijf3-2p6fuqijf3.gz' -2026-01-28 14:18:41.087 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.087 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundWorkers.2p6fuqijf3.wasm - 200 25398 application/wasm 5.1205ms -2026-01-28 14:18:41.091 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Caching.815cqd6cda.wasm - null null -2026-01-28 14:18:41.092 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.092 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.092 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.092 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.092 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.094 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.094 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.095 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.095 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.095 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.095 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.095 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.095 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.095 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.095 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.095 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.095 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.096 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.097 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Caching.815cqd6cda.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5pr3wxuvo5-{0}-815cqd6cda-815cqd6cda.gz' -2026-01-28 14:18:41.097 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.097 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Caching.815cqd6cda.wasm - 200 85824 application/wasm 5.6723ms -2026-01-28 14:18:41.102 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Castle.Core.h40m7fuufn.wasm - null null -2026-01-28 14:18:41.102 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.102 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.102 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.102 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.102 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.105 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.105 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.105 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.105 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.105 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.105 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.105 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.105 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.105 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.105 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.105 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.105 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.106 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.106 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Castle.Core.h40m7fuufn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\f5a40y0td5-{0}-h40m7fuufn-h40m7fuufn.gz' -2026-01-28 14:18:41.106 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.106 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Castle.Core.h40m7fuufn.wasm - 200 11574 application/wasm 4.8385ms -2026-01-28 14:18:41.110 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Core.4xaaeuhx7w.wasm - null null -2026-01-28 14:18:41.110 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.110 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.110 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.110 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.110 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.113 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.113 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.113 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.113 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.113 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.113 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.113 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.113 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.113 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.113 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.113 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.113 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.113 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.115 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Core.4xaaeuhx7w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\klnckblff1-{0}-4xaaeuhx7w-4xaaeuhx7w.gz' -2026-01-28 14:18:41.115 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.115 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Core.4xaaeuhx7w.wasm - 200 311139 application/wasm 5.6208ms -2026-01-28 14:18:41.120 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Data.xk5nl74k60.wasm - null null -2026-01-28 14:18:41.120 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.120 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.120 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.120 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.120 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.123 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.123 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.123 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.123 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.123 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.123 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.123 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.123 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.123 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.123 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.123 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.124 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.124 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.125 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Data.xk5nl74k60.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\g2etzqh2n8-{0}-xk5nl74k60-xk5nl74k60.gz' -2026-01-28 14:18:41.125 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.125 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Data.xk5nl74k60.wasm - 200 23862 application/wasm 4.9084ms -2026-01-28 14:18:41.129 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Ddd.Application.Contracts.1kpejy4fde.wasm - null null -2026-01-28 14:18:41.129 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.129 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.132 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.132 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.132 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.132 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.132 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.132 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.132 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.132 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.132 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.132 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.132 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.133 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.133 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.133 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Ddd.Application.Contracts.1kpejy4fde.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bq3ub7csyu-{0}-1kpejy4fde-1kpejy4fde.gz' -2026-01-28 14:18:41.133 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.134 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Ddd.Application.Contracts.1kpejy4fde.wasm - 200 37691 application/wasm 4.9174ms -2026-01-28 14:18:41.138 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.DistributedLocking.Abstractions.q8g86pl4ti.wasm - null null -2026-01-28 14:18:41.138 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.138 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.139 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.139 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.139 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.141 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.141 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.141 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.141 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.141 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.141 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.141 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.141 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.141 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.141 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.141 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.142 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.142 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.142 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.DistributedLocking.Abstractions.q8g86pl4ti.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\qe2ghijxui-{0}-q8g86pl4ti-q8g86pl4ti.gz' -2026-01-28 14:18:41.142 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.143 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.DistributedLocking.Abstractions.q8g86pl4ti.wasm - 200 7990 application/wasm 4.9557ms -2026-01-28 14:18:41.146 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.Abstractions.lbrqgul2g3.wasm - null null -2026-01-28 14:18:41.146 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.146 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.146 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.146 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.146 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.148 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.148 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.148 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.148 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.148 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.148 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.148 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.148 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.149 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.149 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.149 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.149 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.149 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.150 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.EventBus.Abstractions.lbrqgul2g3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\30q391t77y-{0}-lbrqgul2g3-lbrqgul2g3.gz' -2026-01-28 14:18:41.150 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.150 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.Abstractions.lbrqgul2g3.wasm - 200 20278 application/wasm 4.49ms -2026-01-28 14:18:41.154 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.4naok44xvm.wasm - null null -2026-01-28 14:18:41.155 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.155 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.155 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.155 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.155 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.157 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.157 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.157 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.157 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.157 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.157 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.157 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.157 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.157 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.157 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.157 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.158 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.158 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.159 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.EventBus.4naok44xvm.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xdn8i8epqw-{0}-4naok44xvm-4naok44xvm.gz' -2026-01-28 14:18:41.159 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.159 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.4naok44xvm.wasm - 200 85824 application/wasm 4.9276ms -2026-01-28 14:18:41.163 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ExceptionHandling.ecbhbsp3we.wasm - null null -2026-01-28 14:18:41.164 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.164 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.164 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.164 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.164 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.166 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.166 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.167 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.167 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.167 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.167 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.167 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.167 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.167 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.167 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.167 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.167 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.167 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.168 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ExceptionHandling.ecbhbsp3we.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\86e1bzf02o-{0}-ecbhbsp3we-ecbhbsp3we.gz' -2026-01-28 14:18:41.168 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.169 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ExceptionHandling.ecbhbsp3we.wasm - 200 79680 application/wasm 5.2614ms -2026-01-28 14:18:41.173 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Application.Contracts.40s1e77e5m.wasm - null null -2026-01-28 14:18:41.174 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.174 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.174 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.174 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.174 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.176 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.176 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.176 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.176 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.176 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.176 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.176 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.176 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.176 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.176 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.176 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.177 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.177 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.178 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Application.Contracts.40s1e77e5m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1k1yaajq7n-{0}-40s1e77e5m-40s1e77e5m.gz' -2026-01-28 14:18:41.178 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.178 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Application.Contracts.40s1e77e5m.wasm - 200 11574 application/wasm 4.3016ms -2026-01-28 14:18:41.181 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.nj1v9irvz8.wasm - null null -2026-01-28 14:18:41.181 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.184 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.184 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.184 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.184 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.184 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.184 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.184 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.184 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.184 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.184 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.184 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.185 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.185 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.185 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.nj1v9irvz8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\247hfc7v1l-{0}-nj1v9irvz8-nj1v9irvz8.gz' -2026-01-28 14:18:41.186 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.186 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.nj1v9irvz8.wasm - 200 41275 application/wasm 4.733ms -2026-01-28 14:18:41.191 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Domain.Shared.b0b5pjfr2i.wasm - null null -2026-01-28 14:18:41.191 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.191 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.192 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.192 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.192 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.193 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.193 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.193 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.194 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.194 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.194 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.194 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.194 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.194 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.194 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.194 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.194 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.195 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.195 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Domain.Shared.b0b5pjfr2i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nv73dihqbu-{0}-b0b5pjfr2i-b0b5pjfr2i.gz' -2026-01-28 14:18:41.195 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.196 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Domain.Shared.b0b5pjfr2i.wasm - 200 47419 application/wasm 4.7818ms -2026-01-28 14:18:41.200 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.HttpApi.Client.uclbvotalx.wasm - null null -2026-01-28 14:18:41.201 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.201 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.201 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.201 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.201 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.205 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.205 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.205 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.205 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.205 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.205 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.205 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.205 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.205 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.205 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.205 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.206 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.206 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.207 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.HttpApi.Client.uclbvotalx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5kgd4qlij6-{0}-uclbvotalx-uclbvotalx.gz' -2026-01-28 14:18:41.207 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.208 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.HttpApi.Client.uclbvotalx.wasm - 200 22838 application/wasm 7.0841ms -2026-01-28 14:18:41.218 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Features.wy0y61456s.wasm - null null -2026-01-28 14:18:41.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.218 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.218 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.218 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.218 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.220 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.220 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.220 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.220 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.220 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.221 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.221 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.221 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.221 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.221 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.221 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.222 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.222 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.223 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Features.wy0y61456s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c4f7xcddbd-{0}-wy0y61456s-wy0y61456s.gz' -2026-01-28 14:18:41.223 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.223 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Features.wy0y61456s.wasm - 200 71488 application/wasm 5.1666ms -2026-01-28 14:18:41.227 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.GlobalFeatures.hoqe61zskr.wasm - null null -2026-01-28 14:18:41.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.230 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.230 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.230 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.230 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.230 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.230 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.230 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.230 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.230 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.230 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.230 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.230 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.230 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.231 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.GlobalFeatures.hoqe61zskr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lgshqof3zp-{0}-hoqe61zskr-hoqe61zskr.gz' -2026-01-28 14:18:41.231 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.231 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.GlobalFeatures.hoqe61zskr.wasm - 200 26422 application/wasm 4.0715ms -2026-01-28 14:18:41.236 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Guids.liit7170e2.wasm - null null -2026-01-28 14:18:41.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.236 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.236 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.236 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.236 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.239 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.239 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.239 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.239 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.239 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.239 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.239 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.239 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.239 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.239 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.239 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.240 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.240 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.241 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Guids.liit7170e2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fakjzvu1ye-{0}-liit7170e2-liit7170e2.gz' -2026-01-28 14:18:41.241 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.241 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Guids.liit7170e2.wasm - 200 5942 application/wasm 5.2335ms -2026-01-28 14:18:41.245 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Abstractions.dwudu7bg2j.wasm - null null -2026-01-28 14:18:41.245 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.245 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.245 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.245 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.245 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.248 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.248 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.248 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.248 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.248 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.248 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.248 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.248 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.248 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.248 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.248 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.249 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.249 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.249 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Abstractions.dwudu7bg2j.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\orvt5319bs-{0}-dwudu7bg2j-dwudu7bg2j.gz' -2026-01-28 14:18:41.249 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.249 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Abstractions.dwudu7bg2j.wasm - 200 5942 application/wasm 4.5795ms -2026-01-28 14:18:41.253 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.gvl0zhfcrh.wasm - null null -2026-01-28 14:18:41.254 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.254 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.254 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.254 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.254 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.256 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.256 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.256 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.256 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.256 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.256 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.256 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.256 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.256 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.256 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.256 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.256 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.257 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.258 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.gvl0zhfcrh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\esehx2q8xm-{0}-gvl0zhfcrh-gvl0zhfcrh.gz' -2026-01-28 14:18:41.258 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.258 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.gvl0zhfcrh.wasm - 200 96576 application/wasm 4.7523ms -2026-01-28 14:18:41.262 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.lpg5d6esbr.wasm - null null -2026-01-28 14:18:41.263 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.263 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.263 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.263 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.263 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.264 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.265 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.265 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.265 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.265 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.265 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.265 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.265 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.265 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.265 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.265 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.265 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.266 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.266 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.IdentityModel.lpg5d6esbr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\69zsrpzmke-{0}-lpg5d6esbr-lpg5d6esbr.gz' -2026-01-28 14:18:41.266 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.266 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.lpg5d6esbr.wasm - 200 7990 application/wasm 4.199ms -2026-01-28 14:18:41.270 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.rizl9dmjps.wasm - null null -2026-01-28 14:18:41.270 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.270 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.271 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.271 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.271 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.273 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.273 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.273 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.273 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.273 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.273 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.273 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.273 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.273 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.273 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.273 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.274 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.274 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.275 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.rizl9dmjps.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\985eczt6cq-{0}-rizl9dmjps-rizl9dmjps.gz' -2026-01-28 14:18:41.275 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.275 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.rizl9dmjps.wasm - 200 10550 application/wasm 4.86ms -2026-01-28 14:18:41.279 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.wui0lrbb2n.wasm - null null -2026-01-28 14:18:41.279 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.279 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.279 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.279 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.279 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.282 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.282 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.282 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.282 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.282 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.282 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.282 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.282 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.282 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.282 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.282 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.283 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.283 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.284 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.wui0lrbb2n.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\blqvtier8g-{0}-wui0lrbb2n-wui0lrbb2n.gz' -2026-01-28 14:18:41.284 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.284 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.wui0lrbb2n.wasm - 200 54587 application/wasm 5.48ms -2026-01-28 14:18:41.289 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Application.Contracts.085birxe2b.wasm - null null -2026-01-28 14:18:41.289 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.290 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.290 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.290 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.290 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.292 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.292 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.292 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.292 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.292 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.292 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.292 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.292 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.292 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.292 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.292 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.293 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.293 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.294 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Application.Contracts.085birxe2b.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ru0e3g14jl-{0}-085birxe2b-085birxe2b.gz' -2026-01-28 14:18:41.294 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.294 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Application.Contracts.085birxe2b.wasm - 200 21302 application/wasm 4.9248ms -2026-01-28 14:18:41.324 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.uyv78l0zds.wasm - null null -2026-01-28 14:18:41.325 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.325 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.325 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.325 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.325 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.328 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.328 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.328 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.328 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.328 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.328 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.329 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.329 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.329 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.329 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.329 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.330 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.330 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.332 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Blazor.MudBlazor.uyv78l0zds.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mcjoi5xqrj-{0}-uyv78l0zds-uyv78l0zds.gz' -2026-01-28 14:18:41.332 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.332 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.uyv78l0zds.wasm - 200 67392 application/wasm 7.586ms -2026-01-28 14:18:41.357 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.hte2321dzm.wasm - null null -2026-01-28 14:18:41.358 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.358 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.358 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.358 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.358 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.361 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.361 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.361 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.361 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.361 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.361 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.361 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.361 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.361 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.361 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.361 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.363 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.363 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.364 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.hte2321dzm.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\d0art33lcl-{0}-hte2321dzm-hte2321dzm.gz' -2026-01-28 14:18:41.364 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.364 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.hte2321dzm.wasm - 200 5430 application/wasm 6.9444ms -2026-01-28 14:18:41.391 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Domain.Shared.ymdct2u5om.wasm - null null -2026-01-28 14:18:41.392 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.392 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.392 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.392 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.392 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.396 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.396 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.396 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.396 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.396 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.396 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.396 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.397 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.397 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.397 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.397 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.398 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.398 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.401 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Domain.Shared.ymdct2u5om.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\o0k8cjq56a-{0}-ymdct2u5om-ymdct2u5om.gz' -2026-01-28 14:18:41.401 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.401 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Domain.Shared.ymdct2u5om.wasm - 200 370029 application/wasm 9.9813ms -2026-01-28 14:18:41.415 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.HttpApi.Client.clb4nzb2zs.wasm - null null -2026-01-28 14:18:41.415 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.415 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.415 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.415 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.415 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.418 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.418 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.418 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.418 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.418 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.418 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.418 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.418 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.418 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.418 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.418 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.419 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.419 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.421 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.HttpApi.Client.clb4nzb2zs.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bj1jtfcis3-{0}-clb4nzb2zs-clb4nzb2zs.gz' -2026-01-28 14:18:41.421 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.421 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.HttpApi.Client.clb4nzb2zs.wasm - 200 123205 application/wasm 6.3682ms -2026-01-28 14:18:41.426 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.IdentityModel.58e7vj7i45.wasm - null null -2026-01-28 14:18:41.427 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.427 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.427 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.427 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.427 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.429 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.429 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.429 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.429 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.429 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.429 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.429 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.429 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.429 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.429 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.429 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.430 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.430 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.431 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.IdentityModel.58e7vj7i45.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6dvntei2gj-{0}-58e7vj7i45-58e7vj7i45.gz' -2026-01-28 14:18:41.431 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.431 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.IdentityModel.58e7vj7i45.wasm - 200 32566 application/wasm 4.8425ms -2026-01-28 14:18:41.436 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.Abstractions.dk3pk9ktl7.wasm - null null -2026-01-28 14:18:41.437 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.437 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.437 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.437 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.437 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.440 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.440 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.440 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.440 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.440 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.440 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.440 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.440 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.440 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.440 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.440 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.441 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.441 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.442 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.Abstractions.dk3pk9ktl7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kno3y6bjsa-{0}-dk3pk9ktl7-dk3pk9ktl7.gz' -2026-01-28 14:18:41.442 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.442 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.Abstractions.dk3pk9ktl7.wasm - 200 4918 application/wasm 5.9158ms -2026-01-28 14:18:41.446 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.8u3i5b9etn.wasm - null null -2026-01-28 14:18:41.447 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.447 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.447 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.447 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.447 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.450 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.450 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.450 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.450 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.450 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.450 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.450 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.450 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.450 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.450 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.450 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.451 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.451 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.452 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.8u3i5b9etn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xxkqi4ckse-{0}-8u3i5b9etn-8u3i5b9etn.gz' -2026-01-28 14:18:41.452 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.452 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.8u3i5b9etn.wasm - 200 3894 application/wasm 5.6921ms -2026-01-28 14:18:41.456 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.SystemTextJson.dmgvw38e5z.wasm - null null -2026-01-28 14:18:41.457 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.457 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.457 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.457 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.457 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.459 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.459 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.459 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.459 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.459 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.459 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.459 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.460 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.460 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.460 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.460 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.460 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.460 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.461 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.SystemTextJson.dmgvw38e5z.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\y6nmb5oill-{0}-dmgvw38e5z-dmgvw38e5z.gz' -2026-01-28 14:18:41.461 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.461 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.SystemTextJson.dmgvw38e5z.wasm - 200 24374 application/wasm 5.145ms -2026-01-28 14:18:41.466 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.Abstractions.j5b6ddcipj.wasm - null null -2026-01-28 14:18:41.466 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.466 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.466 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.466 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.466 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.468 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.469 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.469 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.469 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.469 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.469 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.469 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.469 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.469 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.469 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.469 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.470 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.470 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.470 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Localization.Abstractions.j5b6ddcipj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6hzosd4d2z-{0}-j5b6ddcipj-j5b6ddcipj.gz' -2026-01-28 14:18:41.470 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.471 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.Abstractions.j5b6ddcipj.wasm - 200 13622 application/wasm 4.8312ms -2026-01-28 14:18:41.475 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.tgarxcuaaj.wasm - null null -2026-01-28 14:18:41.476 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.476 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.476 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.476 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.476 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.479 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.479 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.479 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.479 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.479 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.479 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.479 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.479 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.480 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.480 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.480 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.480 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.480 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.482 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Localization.tgarxcuaaj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\742lfcokyb-{0}-tgarxcuaaj-tgarxcuaaj.gz' -2026-01-28 14:18:41.482 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.482 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.tgarxcuaaj.wasm - 200 66880 application/wasm 6.2205ms -2026-01-28 14:18:41.487 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Mapperly.mifpi94512.wasm - null null -2026-01-28 14:18:41.487 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.487 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.487 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.487 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.487 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.490 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.490 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.490 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.490 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.490 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.490 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.490 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.490 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.490 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.490 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.490 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.491 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.491 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.492 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Mapperly.mifpi94512.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wlgf7ryjmc-{0}-mifpi94512-mifpi94512.gz' -2026-01-28 14:18:41.492 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.492 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Mapperly.mifpi94512.wasm - 200 18230 application/wasm 5.4868ms -2026-01-28 14:18:41.497 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Minify.u0ftati5vi.wasm - null null -2026-01-28 14:18:41.497 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.498 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.498 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.498 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.498 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.500 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.500 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.500 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.500 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.500 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.500 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.500 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.500 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.500 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.500 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.500 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.501 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.501 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.501 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Minify.u0ftati5vi.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xo92mb2h1m-{0}-u0ftati5vi-u0ftati5vi.gz' -2026-01-28 14:18:41.501 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.502 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Minify.u0ftati5vi.wasm - 200 6966 application/wasm 4.7089ms -2026-01-28 14:18:41.506 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MudBlazorUI.rp0ak0tuw8.wasm - null null -2026-01-28 14:18:41.506 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.506 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.506 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.506 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.506 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.509 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.509 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.509 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.509 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.509 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.509 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.509 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.509 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.509 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.509 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.509 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.510 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.510 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.511 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MudBlazorUI.rp0ak0tuw8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kchqj3qnme-{0}-rp0ak0tuw8-rp0ak0tuw8.gz' -2026-01-28 14:18:41.511 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.512 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MudBlazorUI.rp0ak0tuw8.wasm - 200 137546 application/wasm 5.673ms -2026-01-28 14:18:41.516 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.Abstractions.l8q9drti5i.wasm - null null -2026-01-28 14:18:41.517 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.517 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.517 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.517 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.517 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.519 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.519 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.519 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.519 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.519 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.519 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.519 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.519 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.519 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.519 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.519 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.520 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.520 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.521 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MultiTenancy.Abstractions.l8q9drti5i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9h6hwofytn-{0}-l8q9drti5i-l8q9drti5i.gz' -2026-01-28 14:18:41.521 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.521 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.Abstractions.l8q9drti5i.wasm - 200 26934 application/wasm 5.0312ms -2026-01-28 14:18:41.526 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.9vppak6oe0.wasm - null null -2026-01-28 14:18:41.526 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.526 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.527 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.527 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.527 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.529 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.529 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.529 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.529 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.529 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.529 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.529 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.529 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.529 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.529 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.529 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.530 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.530 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.531 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MultiTenancy.9vppak6oe0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\k4tu4vjqt3-{0}-9vppak6oe0-9vppak6oe0.gz' -2026-01-28 14:18:41.531 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.531 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.9vppak6oe0.wasm - 200 31542 application/wasm 5.0244ms -2026-01-28 14:18:41.536 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectExtending.xqdaldejf6.wasm - null null -2026-01-28 14:18:41.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.537 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.537 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.537 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.537 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.539 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.539 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.539 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.539 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.539 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.539 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.539 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.539 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.539 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.539 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.539 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.540 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.540 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.541 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ObjectExtending.xqdaldejf6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3mtcgnfv0c-{0}-xqdaldejf6-xqdaldejf6.gz' -2026-01-28 14:18:41.541 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.541 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectExtending.xqdaldejf6.wasm - 200 48443 application/wasm 4.7114ms -2026-01-28 14:18:41.545 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectMapping.jfxlue5mz1.wasm - null null -2026-01-28 14:18:41.546 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.546 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.546 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.546 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.546 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.548 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.548 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.548 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.548 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.548 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.548 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.548 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.548 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.548 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.548 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.548 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.549 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.549 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.550 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ObjectMapping.jfxlue5mz1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\zesov8dx3n-{0}-jfxlue5mz1-jfxlue5mz1.gz' -2026-01-28 14:18:41.550 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.550 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectMapping.jfxlue5mz1.wasm - 200 17206 application/wasm 4.7546ms -2026-01-28 14:18:41.554 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.OpenIddict.Domain.Shared.p76j32m8t5.wasm - null null -2026-01-28 14:18:41.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.555 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.555 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.555 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.555 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.557 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.557 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.557 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.557 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.557 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.557 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.557 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.557 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.557 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.557 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.557 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.558 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.558 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.558 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.OpenIddict.Domain.Shared.p76j32m8t5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\e9mit81pkr-{0}-p76j32m8t5-p76j32m8t5.gz' -2026-01-28 14:18:41.559 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.559 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.OpenIddict.Domain.Shared.p76j32m8t5.wasm - 200 41275 application/wasm 4.2896ms -2026-01-28 14:18:41.564 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Application.Contracts.wmkikr93o7.wasm - null null -2026-01-28 14:18:41.569 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.569 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.569 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.569 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.569 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.571 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.572 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.572 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.572 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.572 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.572 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.572 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.572 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.572 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.572 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.572 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.572 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.573 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.573 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Application.Contracts.wmkikr93o7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\my5sja1gq5-{0}-wmkikr93o7-wmkikr93o7.gz' -2026-01-28 14:18:41.573 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.573 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Application.Contracts.wmkikr93o7.wasm - 200 14134 application/wasm 9.6327ms -2026-01-28 14:18:41.592 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.zznf2kzkxh.wasm - null null -2026-01-28 14:18:41.593 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.593 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.593 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.593 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.593 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.595 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.595 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.595 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.595 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.595 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.595 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.595 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.596 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.596 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.596 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.596 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.596 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.597 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.598 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.zznf2kzkxh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kxch0h7hgv-{0}-zznf2kzkxh-zznf2kzkxh.gz' -2026-01-28 14:18:41.598 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.598 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.zznf2kzkxh.wasm - 200 77632 application/wasm 6.1599ms -2026-01-28 14:18:41.605 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.axi1gmd0uq.wasm - null null -2026-01-28 14:18:41.606 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.606 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.606 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.606 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.606 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.608 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.608 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.608 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.608 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.608 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.608 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.608 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.608 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.608 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.608 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.608 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.609 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.609 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.610 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.axi1gmd0uq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\66b7cc8ocy-{0}-axi1gmd0uq-axi1gmd0uq.gz' -2026-01-28 14:18:41.610 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.610 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.axi1gmd0uq.wasm - 200 5942 application/wasm 5.0632ms -2026-01-28 14:18:41.616 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Domain.Shared.ic13klvitm.wasm - null null -2026-01-28 14:18:41.617 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.617 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.617 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.617 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.617 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.619 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.619 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.619 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.619 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.619 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.619 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.619 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.620 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.620 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.620 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.620 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.620 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.621 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.621 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Domain.Shared.ic13klvitm.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\yzrsadtuc3-{0}-ic13klvitm-ic13klvitm.gz' -2026-01-28 14:18:41.622 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.622 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Domain.Shared.ic13klvitm.wasm - 200 59195 application/wasm 5.85ms -2026-01-28 14:18:41.628 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.HttpApi.Client.emu449d09n.wasm - null null -2026-01-28 14:18:41.628 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.628 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.628 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.628 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.628 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.631 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.631 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.631 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.631 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.631 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.631 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.631 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.632 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.632 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.632 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.632 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.633 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.633 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.634 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.HttpApi.Client.emu449d09n.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\oo1t1rirr3-{0}-emu449d09n-emu449d09n.gz' -2026-01-28 14:18:41.634 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.635 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.HttpApi.Client.emu449d09n.wasm - 200 68416 application/wasm 6.9172ms -2026-01-28 14:18:41.639 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.RemoteServices.d8gnck4fgy.wasm - null null -2026-01-28 14:18:41.640 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.640 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.640 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.640 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.640 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.643 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.643 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.643 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.643 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.643 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.643 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.643 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.643 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.643 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.643 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.643 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.644 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.644 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.645 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.RemoteServices.d8gnck4fgy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fxolomud6k-{0}-d8gnck4fgy-d8gnck4fgy.gz' -2026-01-28 14:18:41.645 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.645 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.RemoteServices.d8gnck4fgy.wasm - 200 11574 application/wasm 5.3081ms -2026-01-28 14:18:41.664 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Security.k9ttfxcsex.wasm - null null -2026-01-28 14:18:41.665 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.665 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.665 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.665 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.665 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.667 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.667 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.667 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.667 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.667 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.667 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.667 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.667 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.667 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.667 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.667 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.668 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.668 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.669 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Security.k9ttfxcsex.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3330bn9dpa-{0}-k9ttfxcsex-k9ttfxcsex.gz' -2026-01-28 14:18:41.669 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.669 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Security.k9ttfxcsex.wasm - 200 48955 application/wasm 5.1093ms -2026-01-28 14:18:41.674 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Serialization.gqp3lze8fb.wasm - null null -2026-01-28 14:18:41.675 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.675 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.675 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.675 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.675 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.678 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.678 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.678 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.678 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.678 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.678 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.678 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.678 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.678 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.678 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.678 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.679 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.679 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.680 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Serialization.gqp3lze8fb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jm5tzubbmd-{0}-gqp3lze8fb-gqp3lze8fb.gz' -2026-01-28 14:18:41.680 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.680 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Serialization.gqp3lze8fb.wasm - 200 6966 application/wasm 5.5879ms -2026-01-28 14:18:41.685 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Application.Contracts.xvq3wz5075.wasm - null null -2026-01-28 14:18:41.686 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.686 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.686 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.686 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.686 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.690 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.690 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.690 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.690 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.690 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.690 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.690 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.691 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.691 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.691 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.691 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.692 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.693 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.693 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Application.Contracts.xvq3wz5075.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sa63frt88b-{0}-xvq3wz5075-xvq3wz5075.gz' -2026-01-28 14:18:41.693 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.694 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Application.Contracts.xvq3wz5075.wasm - 200 14134 application/wasm 8.4533ms -2026-01-28 14:18:41.700 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.yorcbsllti.wasm - null null -2026-01-28 14:18:41.701 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.701 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.701 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.701 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.701 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.703 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.703 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.703 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.703 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.703 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.703 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.703 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.703 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.703 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.703 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.703 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.704 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.704 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.705 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.yorcbsllti.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\du4d4xybrw-{0}-yorcbsllti-yorcbsllti.gz' -2026-01-28 14:18:41.705 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.705 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.yorcbsllti.wasm - 200 59195 application/wasm 5.2383ms -2026-01-28 14:18:41.712 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.rl433unjhk.wasm - null null -2026-01-28 14:18:41.712 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.712 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.713 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.713 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.713 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.715 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.715 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.715 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.715 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.715 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.715 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.715 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.715 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.715 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.715 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.715 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.716 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.716 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.717 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.rl433unjhk.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\khsc69ietg-{0}-rl433unjhk-rl433unjhk.gz' -2026-01-28 14:18:41.717 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.717 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.rl433unjhk.wasm - 200 5942 application/wasm 5.1374ms -2026-01-28 14:18:41.721 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Domain.Shared.ehawvm0lul.wasm - null null -2026-01-28 14:18:41.722 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.722 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.722 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.722 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.722 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.724 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.724 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.724 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.724 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.724 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.724 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.724 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.724 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.724 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.724 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.724 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.725 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.725 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.726 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Domain.Shared.ehawvm0lul.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\a9lyefc7q1-{0}-ehawvm0lul-ehawvm0lul.gz' -2026-01-28 14:18:41.726 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.726 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Domain.Shared.ehawvm0lul.wasm - 200 86336 application/wasm 5.073ms -2026-01-28 14:18:41.731 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.HttpApi.Client.2z0jshntcg.wasm - null null -2026-01-28 14:18:41.731 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.731 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.731 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.731 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.731 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.734 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.734 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.734 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.734 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.734 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.734 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.734 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.734 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.734 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.734 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.734 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.735 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.735 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.736 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.HttpApi.Client.2z0jshntcg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ivgy4mp33s-{0}-2z0jshntcg-2z0jshntcg.gz' -2026-01-28 14:18:41.736 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.736 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.HttpApi.Client.2z0jshntcg.wasm - 200 23862 application/wasm 5.4286ms -2026-01-28 14:18:41.741 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Settings.05ptknrv5m.wasm - null null -2026-01-28 14:18:41.742 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.742 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.742 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.742 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.742 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.744 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.744 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.744 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.744 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.744 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.744 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.744 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.745 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.745 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.745 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.745 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.745 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.745 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.746 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Settings.05ptknrv5m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bgt33y9v4t-{0}-05ptknrv5m-05ptknrv5m.gz' -2026-01-28 14:18:41.746 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.746 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Settings.05ptknrv5m.wasm - 200 40763 application/wasm 4.7812ms -2026-01-28 14:18:41.752 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Application.Contracts.dorwnqqwy5.wasm - null null -2026-01-28 14:18:41.753 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.753 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.753 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.753 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.753 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.755 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.755 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.755 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.755 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.755 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.755 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.755 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.755 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.755 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.755 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.755 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.756 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.756 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.757 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Application.Contracts.dorwnqqwy5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c16tsznfvz-{0}-dorwnqqwy5-dorwnqqwy5.gz' -2026-01-28 14:18:41.757 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.757 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Application.Contracts.dorwnqqwy5.wasm - 200 12086 application/wasm 4.695ms -2026-01-28 14:18:41.763 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.h58oqkfeng.wasm - null null -2026-01-28 14:18:41.763 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.763 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.763 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.763 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.763 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.766 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.766 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.766 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.766 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.766 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.766 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.766 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.766 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.766 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.766 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.766 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.767 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.767 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.768 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.h58oqkfeng.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ckfyi6dd9r-{0}-h58oqkfeng-h58oqkfeng.gz' -2026-01-28 14:18:41.768 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.768 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.h58oqkfeng.wasm - 200 35131 application/wasm 5.3799ms -2026-01-28 14:18:41.773 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.vv7n6m7yut.wasm - null null -2026-01-28 14:18:41.774 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.774 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.774 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.774 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.774 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.776 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.776 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.776 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.776 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.776 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.776 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.776 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.776 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.776 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.776 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.776 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.777 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.777 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.778 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.vv7n6m7yut.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xddkl43426-{0}-vv7n6m7yut-vv7n6m7yut.gz' -2026-01-28 14:18:41.778 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.778 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.vv7n6m7yut.wasm - 200 5942 application/wasm 4.9681ms -2026-01-28 14:18:41.784 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Domain.Shared.llpimxq3rm.wasm - null null -2026-01-28 14:18:41.785 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.785 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.785 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.785 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.785 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.787 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.787 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.787 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.787 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.787 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.787 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.787 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.788 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.788 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.788 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.788 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.788 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.788 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.789 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Domain.Shared.llpimxq3rm.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\so2apr0f18-{0}-llpimxq3rm-llpimxq3rm.gz' -2026-01-28 14:18:41.789 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.789 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Domain.Shared.llpimxq3rm.wasm - 200 44347 application/wasm 5.2557ms -2026-01-28 14:18:41.794 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.HttpApi.Client.bjkg75uhux.wasm - null null -2026-01-28 14:18:41.795 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.795 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.795 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.795 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.795 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.797 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.797 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.797 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.797 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.797 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.797 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.797 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.798 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.798 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.798 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.798 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.798 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.799 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.799 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.HttpApi.Client.bjkg75uhux.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\imelthvwfz-{0}-bjkg75uhux-bjkg75uhux.gz' -2026-01-28 14:18:41.799 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.800 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.HttpApi.Client.bjkg75uhux.wasm - 200 37179 application/wasm 5.3682ms -2026-01-28 14:18:41.806 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Threading.rwdxyhv0ce.wasm - null null -2026-01-28 14:18:41.806 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.807 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.807 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.807 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.807 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.809 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.809 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.809 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.809 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.809 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.809 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.809 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.810 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.810 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.810 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.810 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.811 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.811 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.812 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Threading.rwdxyhv0ce.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bipe9d19v0-{0}-rwdxyhv0ce-rwdxyhv0ce.gz' -2026-01-28 14:18:41.812 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.812 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Threading.rwdxyhv0ce.wasm - 200 34619 application/wasm 6.2689ms -2026-01-28 14:18:41.820 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Timing.otg12tqej8.wasm - null null -2026-01-28 14:18:41.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.820 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.820 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.820 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.820 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.823 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.823 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.823 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.823 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.823 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.823 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.823 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.823 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.823 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.823 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.823 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.824 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.824 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.825 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Timing.otg12tqej8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\k5ucu0dgya-{0}-otg12tqej8-otg12tqej8.gz' -2026-01-28 14:18:41.825 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.825 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Timing.otg12tqej8.wasm - 200 19766 application/wasm 5.6673ms -2026-01-28 14:18:41.832 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.wwlqw4om2r.wasm - null null -2026-01-28 14:18:41.833 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.833 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.833 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.833 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.833 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.836 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.836 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.836 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.836 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.836 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.836 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.836 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.836 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.836 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.836 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.836 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.837 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.837 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.839 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.UI.wwlqw4om2r.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pq6xwwf7om-{0}-wwlqw4om2r-wwlqw4om2r.gz' -2026-01-28 14:18:41.839 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.839 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.wwlqw4om2r.wasm - 200 83776 application/wasm 6.8608ms -2026-01-28 14:18:41.844 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.Navigation.gyuxza111s.wasm - null null -2026-01-28 14:18:41.845 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.845 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.845 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.845 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.845 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.848 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.848 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.848 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.848 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.848 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.848 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.848 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.848 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.849 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.849 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.849 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.849 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.850 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.850 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.UI.Navigation.gyuxza111s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9g5ljk4lon-{0}-gyuxza111s-gyuxza111s.gz' -2026-01-28 14:18:41.850 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.851 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.Navigation.gyuxza111s.wasm - 200 40763 application/wasm 6.2618ms -2026-01-28 14:18:41.855 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Uow.jneickkblt.wasm - null null -2026-01-28 14:18:41.856 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.856 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.856 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.856 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.856 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.859 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.859 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.859 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.859 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.859 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.859 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.859 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.859 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.859 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.859 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.859 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.860 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.860 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.861 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Uow.jneickkblt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ilu4fbxe2e-{0}-jneickkblt-jneickkblt.gz' -2026-01-28 14:18:41.861 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.861 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Uow.jneickkblt.wasm - 200 39227 application/wasm 5.4861ms -2026-01-28 14:18:41.866 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Abstractions.0mrf0cvj5h.wasm - null null -2026-01-28 14:18:41.867 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.867 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.867 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.867 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.867 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.870 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.870 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.870 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.870 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.870 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.870 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.870 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.870 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.870 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.870 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.870 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.871 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.871 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.872 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Users.Abstractions.0mrf0cvj5h.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jyt2zu3ttz-{0}-0mrf0cvj5h-0mrf0cvj5h.gz' -2026-01-28 14:18:41.872 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.872 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Abstractions.0mrf0cvj5h.wasm - 200 11062 application/wasm 5.4989ms -2026-01-28 14:18:41.876 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Domain.Shared.h4yyltz4ll.wasm - null null -2026-01-28 14:18:41.877 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.877 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.877 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.877 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.877 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.879 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.879 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.879 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.879 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.879 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.879 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.879 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.879 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.879 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.879 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.879 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.880 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.880 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.881 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Users.Domain.Shared.h4yyltz4ll.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8bcoe6ftg7-{0}-h4yyltz4ll-h4yyltz4ll.gz' -2026-01-28 14:18:41.881 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.881 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Domain.Shared.h4yyltz4ll.wasm - 200 4918 application/wasm 4.7682ms -2026-01-28 14:18:41.885 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.Abstractions.924wndkz1f.wasm - null null -2026-01-28 14:18:41.886 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.886 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.886 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.886 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.886 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.888 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.888 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.888 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.888 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.888 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.888 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.888 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.888 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.888 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.888 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.888 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.889 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.889 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.889 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Validation.Abstractions.924wndkz1f.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gd6ojlvfcf-{0}-924wndkz1f-924wndkz1f.gz' -2026-01-28 14:18:41.889 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.890 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.Abstractions.924wndkz1f.wasm - 200 6966 application/wasm 4.3914ms -2026-01-28 14:18:41.895 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.0d8qfgigij.wasm - null null -2026-01-28 14:18:41.896 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.896 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.896 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.896 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.896 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.898 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.898 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.898 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.898 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.898 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.898 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.898 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.899 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.899 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.899 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.899 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.899 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.900 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.902 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Validation.0d8qfgigij.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2i0haqeq52-{0}-0d8qfgigij-0d8qfgigij.gz' -2026-01-28 14:18:41.902 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.902 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.0d8qfgigij.wasm - 200 133962 application/wasm 7.1596ms -2026-01-28 14:18:41.907 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.VirtualFileSystem.gxdtmkr6a5.wasm - null null -2026-01-28 14:18:41.908 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.908 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.908 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.908 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.908 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.911 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.911 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.911 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.911 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.911 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.911 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.911 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.911 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.911 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.911 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.911 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.912 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.912 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.913 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.VirtualFileSystem.gxdtmkr6a5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\oikj36ifzq-{0}-gxdtmkr6a5-gxdtmkr6a5.gz' -2026-01-28 14:18:41.913 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.913 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.VirtualFileSystem.gxdtmkr6a5.wasm - 200 21302 application/wasm 5.6844ms -2026-01-28 14:18:41.918 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.ohwxgh6gpx.wasm - null null -2026-01-28 14:18:41.919 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.919 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.919 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.919 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.919 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.927 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.928 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.928 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.928 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.928 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.928 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.928 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.928 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.928 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.928 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.928 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.929 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.929 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.930 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.ohwxgh6gpx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b9vq30g1vb-{0}-ohwxgh6gpx-ohwxgh6gpx.gz' -2026-01-28 14:18:41.930 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.930 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.ohwxgh6gpx.wasm - 200 38715 application/wasm 12.2002ms -2026-01-28 14:18:41.935 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/core/abp.css - null null -2026-01-28 14:18:41.936 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.936 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.936 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.936 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.936 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.939 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.939 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.939 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.939 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.939 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.939 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.939 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.940 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.940 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.940 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.940 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.941 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.941 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.942 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/all.css - null null -2026-01-28 14:18:41.942 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2026-01-28 14:18:41.942 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/select2/css/select2.min.css - null null -2026-01-28 14:18:41.942 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.css - null null -2026-01-28 14:18:41.942 +03:00 [INF] Sending file. Request path: 'libs/abp/core/abp.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\534um4fsdt-{0}-6vev71rwdm-6vev71rwdm.gz' -2026-01-28 14:18:41.942 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.942 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/datatables.net-bs5/css/dataTables.bootstrap5.css - null null -2026-01-28 14:18:41.942 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/core/abp.css - 200 1364 text/css 7.124ms -2026-01-28 14:18:41.943 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.943 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.943 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.943 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.943 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.943 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.943 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.943 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.943 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.943 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.943 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.943 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.943 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.943 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.943 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.943 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.943 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.943 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.943 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.943 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.943 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.943 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.943 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.943 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.943 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.945 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/bootstrap-datepicker/bootstrap-datepicker.min.css - null null -2026-01-28 14:18:41.945 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/bootstrap-daterangepicker/daterangepicker.css - null null -2026-01-28 14:18:41.945 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.945 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.945 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.945 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.945 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.945 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.946 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.946 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.946 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.946 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.946 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.946 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.946 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.946 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.946 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.946 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.946 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.946 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.946 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.946 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.946 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.946 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.946 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.946 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.946 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.946 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.946 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.946 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.946 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.946 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.946 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.946 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.946 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.946 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.946 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.946 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.946 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.946 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.947 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.947 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.947 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.947 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.947 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.947 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.947 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.947 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.947 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.947 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.947 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.947 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.947 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.947 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.947 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.947 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.947 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.947 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.947 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.947 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.947 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.947 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.947 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.947 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.947 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.947 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.947 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.947 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.947 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.948 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.948 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.948 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.948 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.948 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/global-styles.css - null null -2026-01-28 14:18:41.948 +03:00 [INF] Sending file. Request path: 'libs/datatables.net-bs5/css/dataTables.bootstrap5.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\2vxqr2b34z-{0}-ln8ra2a4gr-ln8ra2a4gr.gz' -2026-01-28 14:18:41.948 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.948 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/datatables.net-bs5/css/dataTables.bootstrap5.css - 200 21614 text/css 6.2043ms -2026-01-28 14:18:41.948 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.949 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.949 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\0vulsgakzi-{0}-2ej0o14t5y-2ej0o14t5y.gz' -2026-01-28 14:18:41.949 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.949 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/all.css - 200 110162 text/css 7.4926ms -2026-01-28 14:18:41.949 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.949 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.949 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.949 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.949 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.949 +03:00 [INF] Sending file. Request path: 'libs/select2/css/select2.min.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\6ddblemzii-{0}-ntg7hq0exj-ntg7hq0exj.gz' -2026-01-28 14:18:41.949 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.950 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/select2/css/select2.min.css - 200 14999 text/css 7.76ms -2026-01-28 14:18:41.950 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.950 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.950 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.950 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.950 +03:00 [INF] Sending file. Request path: 'libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\14u3fu9aq9-{0}-p8jqw3ap0f-p8jqw3ap0f.gz' -2026-01-28 14:18:41.950 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.950 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.950 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.950 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.950 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.950 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.950 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.950 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.950 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.950 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.css - 200 54888 text/css 8.1885ms -2026-01-28 14:18:41.950 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.950 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.950 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.950 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.950 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.950 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.950 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.950 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.950 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.950 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.950 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.951 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.951 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.951 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.951 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.951 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.952 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\dfuwed8qp2-{0}-9fxst9u6yk-9fxst9u6yk.gz' -2026-01-28 14:18:41.952 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.952 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 38549 text/css 10.304ms -2026-01-28 14:18:41.953 +03:00 [INF] Sending file. Request path: 'libs/bootstrap-daterangepicker/daterangepicker.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\z8ryymhgcw-{0}-85vbs1dise-85vbs1dise.gz' -2026-01-28 14:18:41.953 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.953 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/bootstrap-daterangepicker/daterangepicker.css - 200 8102 text/css 7.7324ms -2026-01-28 14:18:41.953 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.953 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.953 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.953 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.953 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.953 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.953 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.953 +03:00 [INF] Sending file. Request path: 'libs/bootstrap-datepicker/bootstrap-datepicker.min.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\c98qwcv8t9-{0}-hv5fnth7pn-hv5fnth7pn.gz' -2026-01-28 14:18:41.953 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.953 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/bootstrap-datepicker/bootstrap-datepicker.min.css - 200 15767 text/css 8.4122ms -2026-01-28 14:18:41.953 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.953 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.953 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.953 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.954 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.955 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.955 +03:00 [INF] Sending file. Request path: 'global-styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\rh9y3nvfnm-{0}-bbfo2klxrw-bbfo2klxrw.gz' -2026-01-28 14:18:41.955 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.955 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/global-styles.css - 200 284 text/css 7.6278ms -2026-01-28 14:18:41.964 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/MudBlazor/MudBlazor.min.css - null null -2026-01-28 14:18:41.965 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.965 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.969 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.969 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.969 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.969 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.969 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.969 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.969 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.969 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.969 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.969 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.969 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.970 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.970 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.970 +03:00 [INF] The file _content/MudBlazor/MudBlazor.min.css was not modified -2026-01-28 14:18:41.970 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.971 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/MudBlazor/MudBlazor.min.css - 304 null text/css 6.216ms -2026-01-28 14:18:41.976 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2026-01-28 14:18:41.976 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.MudBlazorUI/volo.abp.mudblazorui.css - null null -2026-01-28 14:18:41.976 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/themes/basic/main.css - null null -2026-01-28 14:18:41.977 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.977 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.977 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.977 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.977 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.977 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.977 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.977 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.977 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.977 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.977 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.977 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.977 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.977 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.977 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.978 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/blazor-global-styles.css - null null -2026-01-28 14:18:41.978 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css - null null -2026-01-28 14:18:41.979 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.979 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.979 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.979 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:41.979 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.979 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:41.979 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.979 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:41.979 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.979 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:41.980 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.980 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.980 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.980 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.980 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.980 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.980 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.980 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.980 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.980 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.980 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.980 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.980 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.980 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.980 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.980 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.980 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.980 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.980 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.980 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.980 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.980 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.980 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.980 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.980 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.980 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.980 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.980 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.980 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.980 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.980 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.980 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.980 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.981 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.981 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.981 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.981 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.981 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.981 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.982 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.982 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.982 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.982 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.982 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.982 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.982 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.982 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.982 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.982 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.982 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.982 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.982 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.982 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:41.982 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:41.982 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:41.982 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:41.982 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.982 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\obj\Debug\net10.0\compressed\p1g0cu86en-{0}-c25c931rn9-c25c931rn9.gz' -2026-01-28 14:18:41.982 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.982 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/themes/basic/main.css'. Physical path: 'D:\GitHub\abp\modules\basic-theme\src\Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme\obj\Debug\net10.0\compressed\fqd2rlnqku-{0}-tyyka3g39l-tyyka3g39l.gz' -2026-01-28 14:18:41.982 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.982 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1375 text/css 5.8822ms -2026-01-28 14:18:41.982 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:41.982 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:41.982 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:41.982 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:41.982 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/themes/basic/main.css - 200 120 text/css 5.6894ms -2026-01-28 14:18:41.982 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.MudBlazorUI/volo.abp.mudblazorui.css'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.MudBlazorUI\obj\Debug\net10.0\compressed\giyoea8shq-{0}-8qeawnrprb-8qeawnrprb.gz' -2026-01-28 14:18:41.982 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.982 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.MudBlazorUI/volo.abp.mudblazorui.css - 200 1120 text/css 6.0131ms -2026-01-28 14:18:41.983 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.983 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:41.983 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.983 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.983 +03:00 [INF] Sending file. Request path: 'MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s4s6fpr8ex-{0}-oa8u55zyfs-oa8u55zyfs.gz' -2026-01-28 14:18:41.984 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.983 +03:00 [INF] Sending file. Request path: 'blazor-global-styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\smexgl05zq-{0}-y3n6denrdr-y3n6denrdr.gz' -2026-01-28 14:18:41.984 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:41.984 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css - 200 317 text/css 5.4527ms -2026-01-28 14:18:41.984 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/blazor-global-styles.css - 200 641 text/css 5.6551ms -2026-01-28 14:18:42.032 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/.well-known/appspecific/com.chrome.devtools.json - null null -2026-01-28 14:18:42.033 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:42.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:42.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:42.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:42.033 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:42.035 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:42.035 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:42.035 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:42.035 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:42.035 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:42.035 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:42.035 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:42.036 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:42.036 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:42.036 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:42.036 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:42.036 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:42.037 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/.well-known/appspecific/com.chrome.devtools.json - 404 0 null 4.9803ms -2026-01-28 14:18:42.037 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44308/.well-known/appspecific/com.chrome.devtools.json, Response status code: 404 -2026-01-28 14:18:42.536 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.js.map - null null -2026-01-28 14:18:42.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:42.537 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:42.537 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:42.537 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:42.537 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:42.540 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:42.540 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:42.540 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:42.540 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:42.540 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:42.540 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:42.540 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:42.540 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:42.540 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:42.540 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:42.540 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:42.541 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:42.541 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:42.542 +03:00 [INF] Sending file. Request path: '_framework/dotnet.runtime.js.map'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xqmdb6twc8-{0}-efgkpxn596-efgkpxn596.gz' -2026-01-28 14:18:42.542 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:42.542 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.js.map - 200 89353 text/plain 5.8511ms -2026-01-28 14:18:42.590 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/icudt.oh1zvcfom8.dat - null null -2026-01-28 14:18:42.590 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:42.590 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:42.590 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:42.590 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:42.590 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:42.593 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:42.593 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:42.593 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:42.593 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:42.593 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:42.593 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:42.593 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:42.593 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:42.593 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:42.593 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:42.593 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:42.594 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:42.594 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:42.599 +03:00 [INF] Sending file. Request path: '_framework/icudt.oh1zvcfom8.dat'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\augfne4vvr-{0}-oh1zvcfom8-oh1zvcfom8.gz' -2026-01-28 14:18:42.599 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:42.599 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/icudt.oh1zvcfom8.dat - 200 492472 application/octet-stream 9.6717ms -2026-01-28 14:18:42.614 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/appsettings.Development.json - null null -2026-01-28 14:18:42.614 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:42.614 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:42.614 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:42.614 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:42.614 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:42.616 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:42.616 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:42.616 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:42.616 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:42.616 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:42.616 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:42.616 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:42.617 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:42.617 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:42.617 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:42.617 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:42.617 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:42.617 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:42.618 +03:00 [INF] Sending file. Request path: 'appsettings.Development.json'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5yh5mvb6m0-{0}-qygrwjo5h3-qygrwjo5h3.gz' -2026-01-28 14:18:42.618 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:42.618 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/appsettings.Development.json - 200 41 application/json 4.3513ms -2026-01-28 14:18:42.623 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/appsettings.json - null null -2026-01-28 14:18:42.624 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:42.624 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:42.624 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:42.624 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:42.624 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:42.627 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:42.627 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:42.627 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:42.627 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:42.627 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:42.627 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:42.627 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:42.627 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:42.627 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:42.627 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:42.627 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:42.628 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:42.628 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:42.628 +03:00 [INF] Sending file. Request path: 'appsettings.json'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\apuwzph3tz-{0}-b8hf2s338i-b8hf2s338i.gz' -2026-01-28 14:18:42.628 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:42.628 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/appsettings.json - 200 136 application/json 5.3843ms -2026-01-28 14:18:46.692 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/api/abp/application-configuration?IncludeLocalizationResources=False&api-version=1.0 - null null -2026-01-28 14:18:46.693 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:46.693 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:46.693 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:46.693 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:46.693 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:46.696 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:46.696 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:46.696 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:46.697 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:46.697 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:46.697 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:46.697 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:46.697 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:46.697 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:46.697 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:46.697 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:46.698 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:46.698 +03:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' -2026-01-28 14:18:46.698 +03:00 [INF] Route matched with {area = "abp", action = "Get", controller = "AbpApplicationConfiguration", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto] GetAsync(Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationRequestOptions) on controller Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController (Volo.Abp.AspNetCore.Mvc). -2026-01-28 14:18:46.705 +03:00 [DBG] Executing AbpApplicationConfigurationAppService.GetAsync()... -2026-01-28 14:18:46.705 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.Create,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.Update,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.Delete,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.ManagePermissions,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.Create,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.Update,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.Update.ManageRoles,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.Delete,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.ManagePermissions,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:FeatureManagement.ManageHostFeatures,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:SettingManagement.Emailing,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:SettingManagement.Emailing.Test,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:SettingManagement.TimeZone,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.Create,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.Update,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.Delete,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.ManageFeatures,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.ManageConnectionStrings -2026-01-28 14:18:46.706 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.Create,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.Update,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.Delete,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.ManagePermissions,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.Create,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.Update,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.Update.ManageRoles,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.Delete,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.ManagePermissions,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:FeatureManagement.ManageHostFeatures,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:SettingManagement.Emailing,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:SettingManagement.Emailing.Test,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:SettingManagement.TimeZone,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.Create,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.Update,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.Delete,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.ManageFeatures,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.ManageConnectionStrings -2026-01-28 14:18:46.706 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles,pn:R,pk:admin,n:AbpIdentity.Roles.Create,pn:R,pk:admin,n:AbpIdentity.Roles.Update,pn:R,pk:admin,n:AbpIdentity.Roles.Delete,pn:R,pk:admin,n:AbpIdentity.Roles.ManagePermissions,pn:R,pk:admin,n:AbpIdentity.Users,pn:R,pk:admin,n:AbpIdentity.Users.Create,pn:R,pk:admin,n:AbpIdentity.Users.Update,pn:R,pk:admin,n:AbpIdentity.Users.Update.ManageRoles,pn:R,pk:admin,n:AbpIdentity.Users.Delete,pn:R,pk:admin,n:AbpIdentity.Users.ManagePermissions,pn:R,pk:admin,n:FeatureManagement.ManageHostFeatures,pn:R,pk:admin,n:SettingManagement.Emailing,pn:R,pk:admin,n:SettingManagement.Emailing.Test,pn:R,pk:admin,n:SettingManagement.TimeZone,pn:R,pk:admin,n:AbpTenantManagement.Tenants,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Create,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Update,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Delete,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageFeatures,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageConnectionStrings -2026-01-28 14:18:46.706 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles,pn:R,pk:admin,n:AbpIdentity.Roles.Create,pn:R,pk:admin,n:AbpIdentity.Roles.Update,pn:R,pk:admin,n:AbpIdentity.Roles.Delete,pn:R,pk:admin,n:AbpIdentity.Roles.ManagePermissions,pn:R,pk:admin,n:AbpIdentity.Users,pn:R,pk:admin,n:AbpIdentity.Users.Create,pn:R,pk:admin,n:AbpIdentity.Users.Update,pn:R,pk:admin,n:AbpIdentity.Users.Update.ManageRoles,pn:R,pk:admin,n:AbpIdentity.Users.Delete,pn:R,pk:admin,n:AbpIdentity.Users.ManagePermissions,pn:R,pk:admin,n:FeatureManagement.ManageHostFeatures,pn:R,pk:admin,n:SettingManagement.Emailing,pn:R,pk:admin,n:SettingManagement.Emailing.Test,pn:R,pk:admin,n:SettingManagement.TimeZone,pn:R,pk:admin,n:AbpTenantManagement.Tenants,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Create,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Update,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Delete,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageFeatures,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageConnectionStrings -2026-01-28 14:18:46.750 +03:00 [DBG] Executed AbpApplicationConfigurationAppService.GetAsync(). -2026-01-28 14:18:46.751 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto'. -2026-01-28 14:18:46.757 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc) in 58.5101ms -2026-01-28 14:18:46.757 +03:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' -2026-01-28 14:18:46.757 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/api/abp/application-configuration?IncludeLocalizationResources=False&api-version=1.0 - 200 null application/json; charset=utf-8 65.5024ms -2026-01-28 14:18:47.407 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/api/abp/application-localization?CultureName=en&OnlyDynamics=True&api-version=1.0 - null null -2026-01-28 14:18:47.409 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:47.409 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:47.409 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:47.409 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:47.409 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:47.412 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:47.412 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:47.412 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:47.412 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:47.412 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:47.412 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:47.412 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:47.412 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:47.412 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:47.412 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:47.412 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:47.413 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:47.413 +03:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationLocalizationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' -2026-01-28 14:18:47.414 +03:00 [INF] Route matched with {area = "abp", action = "Get", controller = "AbpApplicationLocalization", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationDto] GetAsync(Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationRequestDto) on controller Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationLocalizationController (Volo.Abp.AspNetCore.Mvc). -2026-01-28 14:18:47.419 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationDto'. -2026-01-28 14:18:47.419 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationLocalizationController.GetAsync (Volo.Abp.AspNetCore.Mvc) in 5.5783ms -2026-01-28 14:18:47.419 +03:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationLocalizationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' -2026-01-28 14:18:47.419 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/api/abp/application-localization?CultureName=en&OnlyDynamics=True&api-version=1.0 - 200 null application/json; charset=utf-8 11.8916ms -2026-01-28 14:18:47.665 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/resource-collection.-HESH.js - null null -2026-01-28 14:18:47.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:47.666 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:47.666 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:47.666 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:47.666 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:47.668 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:47.668 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:47.668 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:47.668 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:47.668 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:47.668 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:47.668 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:47.668 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:47.668 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:47.668 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:47.668 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:47.669 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:47.669 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:47.671 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:47.671 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/resource-collection.-HESH.js - 200 33175 application/javascript 6.7331ms -2026-01-28 14:18:50.976 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/bg-01.png - null null -2026-01-28 14:18:50.976 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/img-support.png - null null -2026-01-28 14:18:50.976 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/img-blog.png - null null -2026-01-28 14:18:50.976 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:50.976 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:50.976 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:50.976 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:50.976 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:50.976 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:50.976 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:50.976 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:50.976 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:50.976 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:50.976 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:50.976 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:50.976 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:50.976 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:50.976 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:50.978 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:50.978 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:50.978 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:50.978 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:50.978 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:50.978 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:50.978 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:50.978 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:50.978 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:50.978 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:50.978 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:50.978 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:50.978 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:50.978 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:50.978 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:50.978 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:50.978 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:50.978 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:50.978 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:50.978 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:50.978 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:50.978 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:50.978 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:50.978 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:50.978 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:50.978 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:50.978 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:50.978 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:50.978 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:50.978 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:50.979 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:50.979 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:50.979 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:50.979 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:50.979 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:50.979 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:50.979 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:50.979 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:50.979 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:50.980 +03:00 [INF] Sending file. Request path: 'images/getting-started/bg-01.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\bg-01.png' -2026-01-28 14:18:50.980 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:50.980 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/bg-01.png - 200 22111 image/png 4.0128ms -2026-01-28 14:18:50.980 +03:00 [INF] Sending file. Request path: 'images/getting-started/img-blog.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\img-blog.png' -2026-01-28 14:18:50.980 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:50.980 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/img-blog.png - 200 30220 image/png 4.1118ms -2026-01-28 14:18:50.980 +03:00 [INF] Sending file. Request path: 'images/getting-started/img-support.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\img-support.png' -2026-01-28 14:18:50.980 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:18:50.980 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/img-support.png - 200 23461 image/png 4.4171ms -2026-01-28 14:18:57.674 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/api/identity/roles?Sorting=&SkipCount=0&MaxResultCount=10&api-version=1.0 - null null -2026-01-28 14:18:57.675 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:57.675 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:18:57.676 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:18:57.676 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:18:57.676 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:18:57.678 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:57.678 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:57.678 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:18:57.678 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:18:57.678 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:18:57.678 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:18:57.678 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:57.678 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:18:57.678 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:18:57.678 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:18:57.678 +03:00 [DBG] No tenant resolved. -2026-01-28 14:18:57.679 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:18:57.679 +03:00 [INF] Executing endpoint 'Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:18:57.690 +03:00 [INF] Route matched with {area = "identity", controller = "Role", action = "GetList", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityRoleDto]] GetListAsync(Volo.Abp.Identity.GetIdentityRolesInput) on controller Volo.Abp.Identity.IdentityRoleController (Volo.Abp.Identity.HttpApi). -2026-01-28 14:18:57.738 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles -2026-01-28 14:18:57.738 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles -2026-01-28 14:18:57.738 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles -2026-01-28 14:18:57.738 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles -2026-01-28 14:18:59.308 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityRoleDto, Volo.Abp.Identity.Application.Contracts, Version=10.2.0.0, Culture=neutral, PublicKeyToken=null]]'. -2026-01-28 14:18:59.318 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi) in 1627.9932ms -2026-01-28 14:18:59.318 +03:00 [INF] Executed endpoint 'Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:18:59.319 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/api/identity/roles?Sorting=&SkipCount=0&MaxResultCount=10&api-version=1.0 - 200 null application/json; charset=utf-8 1644.1269ms -2026-01-28 14:19:02.590 +03:00 [INF] Request starting HTTP/2 DELETE https://localhost:44308/api/identity/roles/22edf687-db46-ed7d-e493-3a1ef38e4da5?api-version=1.0 - null null -2026-01-28 14:19:02.592 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:02.592 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:02.592 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:19:02.592 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:19:02.592 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:19:02.600 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:02.600 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:02.600 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:19:02.600 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:19:02.601 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:19:02.601 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:19:02.601 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:02.601 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:02.601 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:02.601 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:19:02.601 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:02.602 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:19:02.602 +03:00 [INF] Executing endpoint 'Volo.Abp.Identity.IdentityRoleController.DeleteAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:02.615 +03:00 [INF] Route matched with {area = "identity", controller = "Role", action = "Delete", page = ""}. Executing controller action with signature System.Threading.Tasks.Task DeleteAsync(System.Guid) on controller Volo.Abp.Identity.IdentityRoleController (Volo.Abp.Identity.HttpApi). -2026-01-28 14:19:02.625 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.Delete -2026-01-28 14:19:02.625 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.Delete -2026-01-28 14:19:02.625 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles.Delete -2026-01-28 14:19:02.625 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles.Delete -2026-01-28 14:19:02.625 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles -2026-01-28 14:19:02.625 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles -2026-01-28 14:19:02.625 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles -2026-01-28 14:19:02.625 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles -2026-01-28 14:19:02.745 +03:00 [DBG] Remove dynamic claims cache for users of role: 22edf687-db46-ed7d-e493-3a1ef38e4da5 -2026-01-28 14:19:02.871 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityRoleController.DeleteAsync (Volo.Abp.Identity.HttpApi) in 256.006ms -2026-01-28 14:19:02.871 +03:00 [INF] Executed endpoint 'Volo.Abp.Identity.IdentityRoleController.DeleteAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:02.976 +03:00 [INF] Request finished HTTP/2 DELETE https://localhost:44308/api/identity/roles/22edf687-db46-ed7d-e493-3a1ef38e4da5?api-version=1.0 - 204 null null 386.7841ms -2026-01-28 14:19:03.009 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/api/identity/roles?Sorting=&SkipCount=0&MaxResultCount=10&api-version=1.0 - null null -2026-01-28 14:19:03.010 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:03.010 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:03.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:19:03.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:19:03.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:19:03.013 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:03.013 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:03.013 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:19:03.013 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:19:03.013 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:19:03.013 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:19:03.013 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:03.013 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:03.013 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:03.013 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:19:03.013 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:03.014 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:19:03.014 +03:00 [INF] Executing endpoint 'Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:03.014 +03:00 [INF] Route matched with {area = "identity", controller = "Role", action = "GetList", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityRoleDto]] GetListAsync(Volo.Abp.Identity.GetIdentityRolesInput) on controller Volo.Abp.Identity.IdentityRoleController (Volo.Abp.Identity.HttpApi). -2026-01-28 14:19:03.019 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles -2026-01-28 14:19:03.019 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles -2026-01-28 14:19:03.019 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles -2026-01-28 14:19:03.019 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles -2026-01-28 14:19:03.026 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityRoleDto, Volo.Abp.Identity.Application.Contracts, Version=10.2.0.0, Culture=neutral, PublicKeyToken=null]]'. -2026-01-28 14:19:03.027 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi) in 12.4045ms -2026-01-28 14:19:03.027 +03:00 [INF] Executed endpoint 'Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:03.027 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/api/identity/roles?Sorting=&SkipCount=0&MaxResultCount=10&api-version=1.0 - 200 null application/json; charset=utf-8 17.6548ms -2026-01-28 14:19:05.505 +03:00 [INF] Request starting HTTP/2 DELETE https://localhost:44308/api/identity/roles/e5ca28e1-6969-ccdc-577e-3a1ef38e327d?api-version=1.0 - null null -2026-01-28 14:19:05.505 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:05.505 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:05.505 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:19:05.505 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:19:05.505 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:19:05.508 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:05.508 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:05.508 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:19:05.508 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:19:05.508 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:19:05.508 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:19:05.508 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:05.509 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:05.509 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:05.509 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:19:05.509 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:05.510 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:19:05.510 +03:00 [INF] Executing endpoint 'Volo.Abp.Identity.IdentityRoleController.DeleteAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:05.510 +03:00 [INF] Route matched with {area = "identity", controller = "Role", action = "Delete", page = ""}. Executing controller action with signature System.Threading.Tasks.Task DeleteAsync(System.Guid) on controller Volo.Abp.Identity.IdentityRoleController (Volo.Abp.Identity.HttpApi). -2026-01-28 14:19:05.515 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.Delete -2026-01-28 14:19:05.515 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.Delete -2026-01-28 14:19:05.515 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles.Delete -2026-01-28 14:19:05.515 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles.Delete -2026-01-28 14:19:05.515 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles -2026-01-28 14:19:05.515 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles -2026-01-28 14:19:05.515 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles -2026-01-28 14:19:05.515 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles -2026-01-28 14:19:05.524 +03:00 [DBG] Remove dynamic claims cache for users of role: e5ca28e1-6969-ccdc-577e-3a1ef38e327d -2026-01-28 14:19:05.536 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityRoleController.DeleteAsync (Volo.Abp.Identity.HttpApi) in 25.6854ms -2026-01-28 14:19:05.536 +03:00 [INF] Executed endpoint 'Volo.Abp.Identity.IdentityRoleController.DeleteAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:05.544 +03:00 [INF] Request finished HTTP/2 DELETE https://localhost:44308/api/identity/roles/e5ca28e1-6969-ccdc-577e-3a1ef38e327d?api-version=1.0 - 204 null null 38.8697ms -2026-01-28 14:19:05.581 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/api/identity/roles?Sorting=&SkipCount=0&MaxResultCount=10&api-version=1.0 - null null -2026-01-28 14:19:05.582 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:05.582 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:05.582 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:19:05.582 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:19:05.582 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:19:05.584 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:05.584 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:05.584 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:19:05.584 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:19:05.584 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:19:05.584 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:19:05.584 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:05.585 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:05.585 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:05.585 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:19:05.585 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:05.585 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:19:05.586 +03:00 [INF] Executing endpoint 'Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:05.586 +03:00 [INF] Route matched with {area = "identity", controller = "Role", action = "GetList", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityRoleDto]] GetListAsync(Volo.Abp.Identity.GetIdentityRolesInput) on controller Volo.Abp.Identity.IdentityRoleController (Volo.Abp.Identity.HttpApi). -2026-01-28 14:19:05.589 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles -2026-01-28 14:19:05.589 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles -2026-01-28 14:19:05.589 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles -2026-01-28 14:19:05.589 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles -2026-01-28 14:19:05.595 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityRoleDto, Volo.Abp.Identity.Application.Contracts, Version=10.2.0.0, Culture=neutral, PublicKeyToken=null]]'. -2026-01-28 14:19:05.595 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi) in 9.3176ms -2026-01-28 14:19:05.595 +03:00 [INF] Executed endpoint 'Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:05.595 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/api/identity/roles?Sorting=&SkipCount=0&MaxResultCount=10&api-version=1.0 - 200 null application/json; charset=utf-8 14.4483ms -2026-01-28 14:19:08.629 +03:00 [INF] Request starting HTTP/2 DELETE https://localhost:44308/api/identity/roles/bdc55ff8-e3f7-3183-a439-3a1ef38df93e?api-version=1.0 - null null -2026-01-28 14:19:08.629 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:08.629 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:08.629 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:19:08.629 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:19:08.629 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:19:08.633 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:08.633 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:08.633 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:19:08.633 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:19:08.633 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:19:08.633 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:19:08.633 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:08.633 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:08.633 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:08.633 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:19:08.633 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:08.634 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:19:08.634 +03:00 [INF] Executing endpoint 'Volo.Abp.Identity.IdentityRoleController.DeleteAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:08.635 +03:00 [INF] Route matched with {area = "identity", controller = "Role", action = "Delete", page = ""}. Executing controller action with signature System.Threading.Tasks.Task DeleteAsync(System.Guid) on controller Volo.Abp.Identity.IdentityRoleController (Volo.Abp.Identity.HttpApi). -2026-01-28 14:19:08.638 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.Delete -2026-01-28 14:19:08.638 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.Delete -2026-01-28 14:19:08.638 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles.Delete -2026-01-28 14:19:08.638 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles.Delete -2026-01-28 14:19:08.638 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles -2026-01-28 14:19:08.638 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles -2026-01-28 14:19:08.638 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles -2026-01-28 14:19:08.638 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles -2026-01-28 14:19:08.646 +03:00 [DBG] Remove dynamic claims cache for users of role: bdc55ff8-e3f7-3183-a439-3a1ef38df93e -2026-01-28 14:19:08.652 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityRoleController.DeleteAsync (Volo.Abp.Identity.HttpApi) in 17.76ms -2026-01-28 14:19:08.652 +03:00 [INF] Executed endpoint 'Volo.Abp.Identity.IdentityRoleController.DeleteAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:08.657 +03:00 [INF] Request finished HTTP/2 DELETE https://localhost:44308/api/identity/roles/bdc55ff8-e3f7-3183-a439-3a1ef38df93e?api-version=1.0 - 204 null null 27.406ms -2026-01-28 14:19:08.717 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/api/identity/roles?Sorting=&SkipCount=0&MaxResultCount=10&api-version=1.0 - null null -2026-01-28 14:19:08.718 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:08.718 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:08.718 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:19:08.718 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:19:08.718 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:19:08.720 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:08.721 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:08.721 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:19:08.721 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:19:08.721 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:19:08.721 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:19:08.721 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:08.721 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:08.721 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:08.721 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:19:08.721 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:08.722 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:19:08.722 +03:00 [INF] Executing endpoint 'Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:08.723 +03:00 [INF] Route matched with {area = "identity", controller = "Role", action = "GetList", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityRoleDto]] GetListAsync(Volo.Abp.Identity.GetIdentityRolesInput) on controller Volo.Abp.Identity.IdentityRoleController (Volo.Abp.Identity.HttpApi). -2026-01-28 14:19:08.727 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles -2026-01-28 14:19:08.727 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles -2026-01-28 14:19:08.727 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles -2026-01-28 14:19:08.727 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles -2026-01-28 14:19:08.732 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityRoleDto, Volo.Abp.Identity.Application.Contracts, Version=10.2.0.0, Culture=neutral, PublicKeyToken=null]]'. -2026-01-28 14:19:08.732 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi) in 9.8396ms -2026-01-28 14:19:08.733 +03:00 [INF] Executed endpoint 'Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:08.733 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/api/identity/roles?Sorting=&SkipCount=0&MaxResultCount=10&api-version=1.0 - 200 null application/json; charset=utf-8 16.253ms -2026-01-28 14:19:10.859 +03:00 [INF] Request starting HTTP/2 DELETE https://localhost:44308/api/identity/roles/bfd8645f-91e3-50c3-c458-3a1ef2e310f5?api-version=1.0 - null null -2026-01-28 14:19:10.860 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:10.860 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:10.860 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:19:10.860 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:19:10.860 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:19:10.863 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:10.863 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:10.863 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:19:10.863 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:19:10.863 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:19:10.863 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:19:10.863 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:10.863 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:10.863 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:10.863 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:19:10.863 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:10.864 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:19:10.864 +03:00 [INF] Executing endpoint 'Volo.Abp.Identity.IdentityRoleController.DeleteAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:10.865 +03:00 [INF] Route matched with {area = "identity", controller = "Role", action = "Delete", page = ""}. Executing controller action with signature System.Threading.Tasks.Task DeleteAsync(System.Guid) on controller Volo.Abp.Identity.IdentityRoleController (Volo.Abp.Identity.HttpApi). -2026-01-28 14:19:10.868 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.Delete -2026-01-28 14:19:10.868 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.Delete -2026-01-28 14:19:10.868 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles.Delete -2026-01-28 14:19:10.868 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles.Delete -2026-01-28 14:19:10.868 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles -2026-01-28 14:19:10.868 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles -2026-01-28 14:19:10.868 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles -2026-01-28 14:19:10.868 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles -2026-01-28 14:19:10.879 +03:00 [DBG] Remove dynamic claims cache for users of role: bfd8645f-91e3-50c3-c458-3a1ef2e310f5 -2026-01-28 14:19:10.890 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityRoleController.DeleteAsync (Volo.Abp.Identity.HttpApi) in 25.115ms -2026-01-28 14:19:10.890 +03:00 [INF] Executed endpoint 'Volo.Abp.Identity.IdentityRoleController.DeleteAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:10.895 +03:00 [INF] Request finished HTTP/2 DELETE https://localhost:44308/api/identity/roles/bfd8645f-91e3-50c3-c458-3a1ef2e310f5?api-version=1.0 - 204 null null 36.0795ms -2026-01-28 14:19:10.946 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/api/identity/roles?Sorting=&SkipCount=0&MaxResultCount=10&api-version=1.0 - null null -2026-01-28 14:19:10.947 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:10.947 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:10.947 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:19:10.947 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:19:10.947 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:19:10.951 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:10.951 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:10.951 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:19:10.951 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:19:10.951 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:19:10.951 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:19:10.951 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:10.951 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:10.951 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:10.951 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:19:10.951 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:10.952 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:19:10.952 +03:00 [INF] Executing endpoint 'Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:10.952 +03:00 [INF] Route matched with {area = "identity", controller = "Role", action = "GetList", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityRoleDto]] GetListAsync(Volo.Abp.Identity.GetIdentityRolesInput) on controller Volo.Abp.Identity.IdentityRoleController (Volo.Abp.Identity.HttpApi). -2026-01-28 14:19:10.956 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles -2026-01-28 14:19:10.956 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles -2026-01-28 14:19:10.957 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles -2026-01-28 14:19:10.957 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles -2026-01-28 14:19:10.961 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityRoleDto, Volo.Abp.Identity.Application.Contracts, Version=10.2.0.0, Culture=neutral, PublicKeyToken=null]]'. -2026-01-28 14:19:10.961 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi) in 8.631ms -2026-01-28 14:19:10.961 +03:00 [INF] Executed endpoint 'Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:10.961 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/api/identity/roles?Sorting=&SkipCount=0&MaxResultCount=10&api-version=1.0 - 200 null application/json; charset=utf-8 15.0856ms -2026-01-28 14:19:13.647 +03:00 [INF] Request starting HTTP/2 DELETE https://localhost:44308/api/identity/roles/f3192e61-8816-83c0-bd62-3a1ef2b3a688?api-version=1.0 - null null -2026-01-28 14:19:13.647 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:13.647 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:13.647 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:19:13.647 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:19:13.647 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:19:13.650 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:13.650 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:13.650 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:19:13.650 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:19:13.650 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:19:13.650 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:19:13.650 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:13.651 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:13.651 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:13.651 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:19:13.651 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:13.651 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:19:13.652 +03:00 [INF] Executing endpoint 'Volo.Abp.Identity.IdentityRoleController.DeleteAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:13.652 +03:00 [INF] Route matched with {area = "identity", controller = "Role", action = "Delete", page = ""}. Executing controller action with signature System.Threading.Tasks.Task DeleteAsync(System.Guid) on controller Volo.Abp.Identity.IdentityRoleController (Volo.Abp.Identity.HttpApi). -2026-01-28 14:19:13.655 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.Delete -2026-01-28 14:19:13.655 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.Delete -2026-01-28 14:19:13.655 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles.Delete -2026-01-28 14:19:13.656 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles.Delete -2026-01-28 14:19:13.656 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles -2026-01-28 14:19:13.656 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles -2026-01-28 14:19:13.656 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles -2026-01-28 14:19:13.656 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles -2026-01-28 14:19:13.663 +03:00 [DBG] Remove dynamic claims cache for users of role: f3192e61-8816-83c0-bd62-3a1ef2b3a688 -2026-01-28 14:19:13.674 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityRoleController.DeleteAsync (Volo.Abp.Identity.HttpApi) in 22.1539ms -2026-01-28 14:19:13.674 +03:00 [INF] Executed endpoint 'Volo.Abp.Identity.IdentityRoleController.DeleteAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:13.678 +03:00 [INF] Request finished HTTP/2 DELETE https://localhost:44308/api/identity/roles/f3192e61-8816-83c0-bd62-3a1ef2b3a688?api-version=1.0 - 204 null null 30.7629ms -2026-01-28 14:19:13.714 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/api/identity/roles?Sorting=&SkipCount=0&MaxResultCount=10&api-version=1.0 - null null -2026-01-28 14:19:13.715 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:13.715 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:13.715 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:19:13.715 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:19:13.715 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:19:13.718 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:13.718 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:13.718 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:19:13.718 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:19:13.718 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:19:13.718 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:19:13.718 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:13.719 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:13.719 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:13.719 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:19:13.719 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:13.719 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:19:13.719 +03:00 [INF] Executing endpoint 'Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:13.720 +03:00 [INF] Route matched with {area = "identity", controller = "Role", action = "GetList", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityRoleDto]] GetListAsync(Volo.Abp.Identity.GetIdentityRolesInput) on controller Volo.Abp.Identity.IdentityRoleController (Volo.Abp.Identity.HttpApi). -2026-01-28 14:19:13.723 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles -2026-01-28 14:19:13.723 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles -2026-01-28 14:19:13.723 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles -2026-01-28 14:19:13.723 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles -2026-01-28 14:19:13.727 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityRoleDto, Volo.Abp.Identity.Application.Contracts, Version=10.2.0.0, Culture=neutral, PublicKeyToken=null]]'. -2026-01-28 14:19:13.727 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi) in 7.3518ms -2026-01-28 14:19:13.727 +03:00 [INF] Executed endpoint 'Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:13.727 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/api/identity/roles?Sorting=&SkipCount=0&MaxResultCount=10&api-version=1.0 - 200 null application/json; charset=utf-8 13.0928ms -2026-01-28 14:19:16.143 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/api/permission-management/permissions?providerName=R&providerKey=9436e364-460b-7325-ff3e-3a1ef2523366&api-version=1.0 - null null -2026-01-28 14:19:16.144 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:16.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:16.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:19:16.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:19:16.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:19:16.147 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:16.147 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:16.147 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:19:16.147 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:19:16.147 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:19:16.147 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:19:16.147 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:16.147 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:16.147 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:16.147 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:19:16.147 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:16.149 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:19:16.149 +03:00 [INF] Executing endpoint 'Volo.Abp.PermissionManagement.PermissionsController.GetAsync (Volo.Abp.PermissionManagement.HttpApi)' -2026-01-28 14:19:16.159 +03:00 [INF] Route matched with {area = "permissionManagement", action = "Get", controller = "Permissions", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.PermissionManagement.GetPermissionListResultDto] GetAsync(System.String, System.String) on controller Volo.Abp.PermissionManagement.PermissionsController (Volo.Abp.PermissionManagement.HttpApi). -2026-01-28 14:19:16.259 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.ManagePermissions -2026-01-28 14:19:16.259 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.ManagePermissions -2026-01-28 14:19:16.259 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles.ManagePermissions -2026-01-28 14:19:16.259 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles.ManagePermissions -2026-01-28 14:19:16.284 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.PermissionManagement.GetPermissionListResultDto'. -2026-01-28 14:19:16.288 +03:00 [INF] Executed action Volo.Abp.PermissionManagement.PermissionsController.GetAsync (Volo.Abp.PermissionManagement.HttpApi) in 128.7356ms -2026-01-28 14:19:16.288 +03:00 [INF] Executed endpoint 'Volo.Abp.PermissionManagement.PermissionsController.GetAsync (Volo.Abp.PermissionManagement.HttpApi)' -2026-01-28 14:19:16.288 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/api/permission-management/permissions?providerName=R&providerKey=9436e364-460b-7325-ff3e-3a1ef2523366&api-version=1.0 - 200 null application/json; charset=utf-8 144.7046ms -2026-01-28 14:19:19.292 +03:00 [INF] Request starting HTTP/2 PUT https://localhost:44308/api/permission-management/permissions?providerName=R&providerKey=9436e364-460b-7325-ff3e-3a1ef2523366&api-version=1.0 - application/json; charset=utf-8 1251 -2026-01-28 14:19:19.292 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:19.292 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:19.292 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:19:19.292 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:19:19.292 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:19:19.295 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:19.295 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:19.295 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:19:19.295 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:19:19.295 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:19:19.295 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:19:19.295 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:19.295 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:19.295 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:19.295 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:19:19.295 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:19.296 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:19:19.296 +03:00 [INF] Executing endpoint 'Volo.Abp.PermissionManagement.PermissionsController.UpdateAsync (Volo.Abp.PermissionManagement.HttpApi)' -2026-01-28 14:19:19.306 +03:00 [INF] Route matched with {area = "permissionManagement", action = "Update", controller = "Permissions", page = ""}. Executing controller action with signature System.Threading.Tasks.Task UpdateAsync(System.String, System.String, Volo.Abp.PermissionManagement.UpdatePermissionsDto) on controller Volo.Abp.PermissionManagement.PermissionsController (Volo.Abp.PermissionManagement.HttpApi). -2026-01-28 14:19:19.327 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.ManagePermissions -2026-01-28 14:19:19.327 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.ManagePermissions -2026-01-28 14:19:19.327 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles.ManagePermissions -2026-01-28 14:19:19.327 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles.ManagePermissions -2026-01-28 14:19:19.409 +03:00 [INF] Executed action Volo.Abp.PermissionManagement.PermissionsController.UpdateAsync (Volo.Abp.PermissionManagement.HttpApi) in 102.6396ms -2026-01-28 14:19:19.409 +03:00 [INF] Executed endpoint 'Volo.Abp.PermissionManagement.PermissionsController.UpdateAsync (Volo.Abp.PermissionManagement.HttpApi)' -2026-01-28 14:19:19.413 +03:00 [INF] Request finished HTTP/2 PUT https://localhost:44308/api/permission-management/permissions?providerName=R&providerKey=9436e364-460b-7325-ff3e-3a1ef2523366&api-version=1.0 - 204 null null 121.5061ms -2026-01-28 14:19:19.431 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/api/abp/application-configuration?IncludeLocalizationResources=False&api-version=1.0 - null null -2026-01-28 14:19:19.432 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:19.433 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:19.433 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:19:19.433 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:19:19.433 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:19:19.435 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:19.435 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:19.435 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:19:19.436 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:19:19.436 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:19:19.436 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:19:19.436 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:19.436 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:19.436 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:19.436 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:19:19.436 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:19.436 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:19:19.437 +03:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' -2026-01-28 14:19:19.437 +03:00 [INF] Route matched with {area = "abp", action = "Get", controller = "AbpApplicationConfiguration", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto] GetAsync(Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationRequestOptions) on controller Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController (Volo.Abp.AspNetCore.Mvc). -2026-01-28 14:19:19.440 +03:00 [DBG] Executing AbpApplicationConfigurationAppService.GetAsync()... -2026-01-28 14:19:19.440 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.Create,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.Update,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.Delete,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.ManagePermissions,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.Create,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.Update,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.Update.ManageRoles,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.Delete,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.ManagePermissions,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:FeatureManagement.ManageHostFeatures,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:SettingManagement.Emailing,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:SettingManagement.Emailing.Test,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:SettingManagement.TimeZone,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.Create,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.Update,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.Delete,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.ManageFeatures,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.ManageConnectionStrings -2026-01-28 14:19:19.440 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.Create,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.Update,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.Delete,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.ManagePermissions,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.Create,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.Update,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.Update.ManageRoles,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.Delete,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.ManagePermissions,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:FeatureManagement.ManageHostFeatures,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:SettingManagement.Emailing,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:SettingManagement.Emailing.Test,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:SettingManagement.TimeZone,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.Create,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.Update,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.Delete,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.ManageFeatures,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.ManageConnectionStrings -2026-01-28 14:19:19.441 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles,pn:R,pk:admin,n:AbpIdentity.Roles.Create,pn:R,pk:admin,n:AbpIdentity.Roles.Update,pn:R,pk:admin,n:AbpIdentity.Roles.Delete,pn:R,pk:admin,n:AbpIdentity.Roles.ManagePermissions,pn:R,pk:admin,n:AbpIdentity.Users,pn:R,pk:admin,n:AbpIdentity.Users.Create,pn:R,pk:admin,n:AbpIdentity.Users.Update,pn:R,pk:admin,n:AbpIdentity.Users.Update.ManageRoles,pn:R,pk:admin,n:AbpIdentity.Users.Delete,pn:R,pk:admin,n:AbpIdentity.Users.ManagePermissions,pn:R,pk:admin,n:FeatureManagement.ManageHostFeatures,pn:R,pk:admin,n:SettingManagement.Emailing,pn:R,pk:admin,n:SettingManagement.Emailing.Test,pn:R,pk:admin,n:SettingManagement.TimeZone,pn:R,pk:admin,n:AbpTenantManagement.Tenants,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Create,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Update,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Delete,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageFeatures,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageConnectionStrings -2026-01-28 14:19:19.441 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles,pn:R,pk:admin,n:AbpIdentity.Roles.Create,pn:R,pk:admin,n:AbpIdentity.Roles.Update,pn:R,pk:admin,n:AbpIdentity.Roles.Delete,pn:R,pk:admin,n:AbpIdentity.Roles.ManagePermissions,pn:R,pk:admin,n:AbpIdentity.Users,pn:R,pk:admin,n:AbpIdentity.Users.Create,pn:R,pk:admin,n:AbpIdentity.Users.Update,pn:R,pk:admin,n:AbpIdentity.Users.Update.ManageRoles,pn:R,pk:admin,n:AbpIdentity.Users.Delete,pn:R,pk:admin,n:AbpIdentity.Users.ManagePermissions,pn:R,pk:admin,n:FeatureManagement.ManageHostFeatures,pn:R,pk:admin,n:SettingManagement.Emailing,pn:R,pk:admin,n:SettingManagement.Emailing.Test,pn:R,pk:admin,n:SettingManagement.TimeZone,pn:R,pk:admin,n:AbpTenantManagement.Tenants,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Create,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Update,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Delete,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageFeatures,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageConnectionStrings -2026-01-28 14:19:19.442 +03:00 [DBG] Executed AbpApplicationConfigurationAppService.GetAsync(). -2026-01-28 14:19:19.443 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto'. -2026-01-28 14:19:19.443 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc) in 6.3738ms -2026-01-28 14:19:19.443 +03:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' -2026-01-28 14:19:19.443 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/api/abp/application-configuration?IncludeLocalizationResources=False&api-version=1.0 - 200 null application/json; charset=utf-8 11.979ms -2026-01-28 14:19:19.471 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/api/abp/application-localization?CultureName=en&OnlyDynamics=True&api-version=1.0 - null null -2026-01-28 14:19:19.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:19.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:19.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:19:19.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:19:19.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:19:19.475 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:19.475 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:19.475 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:19:19.475 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:19:19.475 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:19:19.475 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:19:19.475 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:19.476 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:19.476 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:19.476 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:19:19.476 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:19.477 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:19:19.477 +03:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationLocalizationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' -2026-01-28 14:19:19.477 +03:00 [INF] Route matched with {area = "abp", action = "Get", controller = "AbpApplicationLocalization", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationDto] GetAsync(Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationRequestDto) on controller Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationLocalizationController (Volo.Abp.AspNetCore.Mvc). -2026-01-28 14:19:19.479 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationDto'. -2026-01-28 14:19:19.479 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationLocalizationController.GetAsync (Volo.Abp.AspNetCore.Mvc) in 2.395ms -2026-01-28 14:19:19.479 +03:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationLocalizationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' -2026-01-28 14:19:19.479 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/api/abp/application-localization?CultureName=en&OnlyDynamics=True&api-version=1.0 - 200 null application/json; charset=utf-8 8.0758ms -2026-01-28 14:19:27.969 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44308/api/identity/roles?api-version=1.0 - application/json; charset=utf-8 76 -2026-01-28 14:19:27.969 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:27.969 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:27.969 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:19:27.969 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:19:27.969 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:19:27.971 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:27.971 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:27.971 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:19:27.971 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:19:27.971 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:19:27.971 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:19:27.971 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:27.971 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:27.972 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:27.972 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:19:27.972 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:27.972 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:19:27.972 +03:00 [INF] Executing endpoint 'Volo.Abp.Identity.IdentityRoleController.CreateAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:27.981 +03:00 [INF] Route matched with {area = "identity", controller = "Role", action = "Create", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Identity.IdentityRoleDto] CreateAsync(Volo.Abp.Identity.IdentityRoleCreateDto) on controller Volo.Abp.Identity.IdentityRoleController (Volo.Abp.Identity.HttpApi). -2026-01-28 14:19:28.008 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.Create -2026-01-28 14:19:28.008 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles.Create -2026-01-28 14:19:28.008 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles.Create -2026-01-28 14:19:28.008 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles.Create -2026-01-28 14:19:28.009 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles -2026-01-28 14:19:28.009 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles -2026-01-28 14:19:28.009 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles -2026-01-28 14:19:28.009 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles -2026-01-28 14:19:28.043 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Identity.IdentityRoleDto'. -2026-01-28 14:19:28.043 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityRoleController.CreateAsync (Volo.Abp.Identity.HttpApi) in 61.9549ms -2026-01-28 14:19:28.043 +03:00 [INF] Executed endpoint 'Volo.Abp.Identity.IdentityRoleController.CreateAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:28.043 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44308/api/identity/roles?api-version=1.0 - 200 null application/json; charset=utf-8 74.9074ms -2026-01-28 14:19:28.074 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/api/identity/roles?Sorting=&SkipCount=0&MaxResultCount=10&api-version=1.0 - null null -2026-01-28 14:19:28.075 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:28.075 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:28.075 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:19:28.075 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:19:28.075 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:19:28.078 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:28.078 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:28.078 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:19:28.078 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:19:28.078 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:19:28.078 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:19:28.078 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:28.079 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:28.079 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:28.079 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:19:28.079 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:28.079 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:19:28.079 +03:00 [INF] Executing endpoint 'Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:28.079 +03:00 [INF] Route matched with {area = "identity", controller = "Role", action = "GetList", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityRoleDto]] GetListAsync(Volo.Abp.Identity.GetIdentityRolesInput) on controller Volo.Abp.Identity.IdentityRoleController (Volo.Abp.Identity.HttpApi). -2026-01-28 14:19:28.082 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles -2026-01-28 14:19:28.082 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles -2026-01-28 14:19:28.082 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles -2026-01-28 14:19:28.082 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles -2026-01-28 14:19:28.086 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityRoleDto, Volo.Abp.Identity.Application.Contracts, Version=10.2.0.0, Culture=neutral, PublicKeyToken=null]]'. -2026-01-28 14:19:28.086 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi) in 6.6573ms -2026-01-28 14:19:28.086 +03:00 [INF] Executed endpoint 'Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:28.086 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/api/identity/roles?Sorting=&SkipCount=0&MaxResultCount=10&api-version=1.0 - 200 null application/json; charset=utf-8 12.0697ms -2026-01-28 14:19:30.083 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/api/identity/users/assignable-roles?api-version=1.0 - null null -2026-01-28 14:19:30.084 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:30.084 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:30.084 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:19:30.084 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:19:30.084 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:19:30.087 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:30.087 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:30.087 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:19:30.087 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:19:30.087 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/api/identity/users?Sorting=&SkipCount=0&MaxResultCount=10&api-version=1.0 - null null -2026-01-28 14:19:30.087 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:19:30.087 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:19:30.087 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:30.087 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:30.087 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:30.087 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:19:30.087 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:30.087 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:30.087 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:19:30.087 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:30.088 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:19:30.088 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:19:30.088 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:19:30.088 +03:00 [INF] Executing endpoint 'Volo.Abp.Identity.IdentityUserController.GetAssignableRolesAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:30.090 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:30.090 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:30.090 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:19:30.090 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:19:30.090 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:19:30.090 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:19:30.090 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:30.090 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:30.090 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:30.090 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:19:30.090 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:30.091 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:19:30.091 +03:00 [INF] Executing endpoint 'Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:30.095 +03:00 [INF] Route matched with {area = "identity", controller = "User", action = "GetAssignableRoles", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.ListResultDto`1[Volo.Abp.Identity.IdentityRoleDto]] GetAssignableRolesAsync() on controller Volo.Abp.Identity.IdentityUserController (Volo.Abp.Identity.HttpApi). -2026-01-28 14:19:30.099 +03:00 [INF] Route matched with {area = "identity", controller = "User", action = "GetList", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] GetListAsync(Volo.Abp.Identity.GetIdentityUsersInput) on controller Volo.Abp.Identity.IdentityUserController (Volo.Abp.Identity.HttpApi). -2026-01-28 14:19:30.135 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users -2026-01-28 14:19:30.135 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users -2026-01-28 14:19:30.135 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users -2026-01-28 14:19:30.135 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users -2026-01-28 14:19:30.137 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users -2026-01-28 14:19:30.137 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users -2026-01-28 14:19:30.137 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users -2026-01-28 14:19:30.137 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users -2026-01-28 14:19:30.142 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.ListResultDto`1[[Volo.Abp.Identity.IdentityRoleDto, Volo.Abp.Identity.Application.Contracts, Version=10.2.0.0, Culture=neutral, PublicKeyToken=null]]'. -2026-01-28 14:19:30.143 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityUserController.GetAssignableRolesAsync (Volo.Abp.Identity.HttpApi) in 47.5667ms -2026-01-28 14:19:30.143 +03:00 [INF] Executed endpoint 'Volo.Abp.Identity.IdentityUserController.GetAssignableRolesAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:30.143 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/api/identity/users/assignable-roles?api-version=1.0 - 200 null application/json; charset=utf-8 60.169ms -2026-01-28 14:19:30.199 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=10.2.0.0, Culture=neutral, PublicKeyToken=null]]'. -2026-01-28 14:19:30.209 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi) in 110.435ms -2026-01-28 14:19:30.209 +03:00 [INF] Executed endpoint 'Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:30.210 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/api/identity/users?Sorting=&SkipCount=0&MaxResultCount=10&api-version=1.0 - 200 null application/json; charset=utf-8 123.1227ms -2026-01-28 14:19:43.376 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44308/api/identity/users?api-version=1.0 - application/json; charset=utf-8 191 -2026-01-28 14:19:43.376 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:43.376 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:43.376 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:19:43.376 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:19:43.376 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:19:43.378 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:43.378 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:43.378 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:19:43.378 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:19:43.378 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:19:43.378 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:19:43.378 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:43.378 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:43.378 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:43.378 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:19:43.378 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:43.379 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:19:43.379 +03:00 [INF] Executing endpoint 'Volo.Abp.Identity.IdentityUserController.CreateAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:43.389 +03:00 [INF] Route matched with {area = "identity", controller = "User", action = "Create", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Identity.IdentityUserDto] CreateAsync(Volo.Abp.Identity.IdentityUserCreateDto) on controller Volo.Abp.Identity.IdentityUserController (Volo.Abp.Identity.HttpApi). -2026-01-28 14:19:43.413 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.Create -2026-01-28 14:19:43.414 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.Create -2026-01-28 14:19:43.414 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users.Create -2026-01-28 14:19:43.414 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users.Create -2026-01-28 14:19:43.586 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.Update.ManageRoles -2026-01-28 14:19:43.586 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.Update.ManageRoles -2026-01-28 14:19:43.587 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users.Update.ManageRoles -2026-01-28 14:19:43.587 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users.Update.ManageRoles -2026-01-28 14:19:43.607 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Identity.IdentityUserDto'. -2026-01-28 14:19:43.608 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityUserController.CreateAsync (Volo.Abp.Identity.HttpApi) in 218.2408ms -2026-01-28 14:19:43.608 +03:00 [INF] Executed endpoint 'Volo.Abp.Identity.IdentityUserController.CreateAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:43.617 +03:00 [DBG] Remove dynamic claims cache for user: 935aa85c-de69-695c-e0ef-3a1f16818239 -2026-01-28 14:19:43.619 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44308/api/identity/users?api-version=1.0 - 200 null application/json; charset=utf-8 242.8099ms -2026-01-28 14:19:43.659 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/api/identity/users?Sorting=&SkipCount=0&MaxResultCount=10&api-version=1.0 - null null -2026-01-28 14:19:43.660 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:43.660 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:43.660 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:19:43.660 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:19:43.660 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:19:43.662 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:43.662 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:43.662 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:19:43.662 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:19:43.662 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:19:43.662 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:19:43.662 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:43.662 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:43.662 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:43.662 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:19:43.662 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:43.663 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:19:43.663 +03:00 [INF] Executing endpoint 'Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:43.663 +03:00 [INF] Route matched with {area = "identity", controller = "User", action = "GetList", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] GetListAsync(Volo.Abp.Identity.GetIdentityUsersInput) on controller Volo.Abp.Identity.IdentityUserController (Volo.Abp.Identity.HttpApi). -2026-01-28 14:19:43.666 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users -2026-01-28 14:19:43.666 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users -2026-01-28 14:19:43.666 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users -2026-01-28 14:19:43.666 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users -2026-01-28 14:19:43.671 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=10.2.0.0, Culture=neutral, PublicKeyToken=null]]'. -2026-01-28 14:19:43.671 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi) in 8.2615ms -2026-01-28 14:19:43.671 +03:00 [INF] Executed endpoint 'Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:43.672 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/api/identity/users?Sorting=&SkipCount=0&MaxResultCount=10&api-version=1.0 - 200 null application/json; charset=utf-8 13.2443ms -2026-01-28 14:19:44.898 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/favicon.ico - null null -2026-01-28 14:19:44.899 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'N/A' -2026-01-28 14:19:44.899 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/favicon.ico - 200 38078 image/x-icon 0.5331ms -2026-01-28 14:19:46.441 +03:00 [INF] Request starting HTTP/2 DELETE https://localhost:44308/api/identity/users/935aa85c-de69-695c-e0ef-3a1f16818239?api-version=1.0 - null null -2026-01-28 14:19:46.443 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:46.443 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:46.443 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:19:46.443 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:19:46.443 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:19:46.447 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:46.447 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:46.447 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:19:46.447 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:19:46.447 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:19:46.447 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:19:46.447 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:46.447 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:46.447 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:46.447 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:19:46.447 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:46.448 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:19:46.448 +03:00 [INF] Executing endpoint 'Volo.Abp.Identity.IdentityUserController.DeleteAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:46.456 +03:00 [INF] Route matched with {area = "identity", controller = "User", action = "Delete", page = ""}. Executing controller action with signature System.Threading.Tasks.Task DeleteAsync(System.Guid) on controller Volo.Abp.Identity.IdentityUserController (Volo.Abp.Identity.HttpApi). -2026-01-28 14:19:46.460 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.Delete -2026-01-28 14:19:46.460 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users.Delete -2026-01-28 14:19:46.460 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users.Delete -2026-01-28 14:19:46.460 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users.Delete -2026-01-28 14:19:46.580 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityUserController.DeleteAsync (Volo.Abp.Identity.HttpApi) in 124.2014ms -2026-01-28 14:19:46.580 +03:00 [INF] Executed endpoint 'Volo.Abp.Identity.IdentityUserController.DeleteAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:46.582 +03:00 [DBG] Remove dynamic claims cache for user: 935aa85c-de69-695c-e0ef-3a1f16818239 -2026-01-28 14:19:46.593 +03:00 [INF] Request finished HTTP/2 DELETE https://localhost:44308/api/identity/users/935aa85c-de69-695c-e0ef-3a1f16818239?api-version=1.0 - 204 null null 151.318ms -2026-01-28 14:19:46.628 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/api/identity/users?Sorting=&SkipCount=0&MaxResultCount=10&api-version=1.0 - null null -2026-01-28 14:19:46.631 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:46.631 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:46.631 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:19:46.632 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:19:46.632 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:19:46.636 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:46.636 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:46.636 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:19:46.636 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:19:46.636 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:19:46.636 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:19:46.636 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:46.637 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:46.637 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:46.637 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:19:46.637 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:46.638 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:19:46.638 +03:00 [INF] Executing endpoint 'Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:46.638 +03:00 [INF] Route matched with {area = "identity", controller = "User", action = "GetList", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] GetListAsync(Volo.Abp.Identity.GetIdentityUsersInput) on controller Volo.Abp.Identity.IdentityUserController (Volo.Abp.Identity.HttpApi). -2026-01-28 14:19:46.643 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users -2026-01-28 14:19:46.643 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users -2026-01-28 14:19:46.643 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users -2026-01-28 14:19:46.643 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users -2026-01-28 14:19:46.648 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=10.2.0.0, Culture=neutral, PublicKeyToken=null]]'. -2026-01-28 14:19:46.648 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi) in 10.156ms -2026-01-28 14:19:46.648 +03:00 [INF] Executed endpoint 'Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi)' -2026-01-28 14:19:46.649 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/api/identity/users?Sorting=&SkipCount=0&MaxResultCount=10&api-version=1.0 - 200 null application/json; charset=utf-8 21.159ms -2026-01-28 14:19:48.569 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/api/setting-management/emailing?api-version=1.0 - null null -2026-01-28 14:19:48.570 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:48.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:48.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:19:48.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:19:48.570 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:19:48.573 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:48.573 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:48.574 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:19:48.574 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:19:48.574 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:19:48.574 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:19:48.574 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:48.574 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:48.574 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:48.574 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:19:48.574 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:48.575 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:19:48.575 +03:00 [INF] Executing endpoint 'Volo.Abp.SettingManagement.EmailSettingsController.GetAsync (Volo.Abp.SettingManagement.HttpApi)' -2026-01-28 14:19:48.590 +03:00 [INF] Route matched with {area = "settingManagement", action = "Get", controller = "EmailSettings", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.SettingManagement.EmailSettingsDto] GetAsync() on controller Volo.Abp.SettingManagement.EmailSettingsController (Volo.Abp.SettingManagement.HttpApi). -2026-01-28 14:19:48.608 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:SettingManagement.Emailing -2026-01-28 14:19:48.608 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:SettingManagement.Emailing -2026-01-28 14:19:48.608 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:SettingManagement.Emailing -2026-01-28 14:19:48.608 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:SettingManagement.Emailing -2026-01-28 14:19:48.619 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.SettingManagement.EmailSettingsDto'. -2026-01-28 14:19:48.622 +03:00 [INF] Executed action Volo.Abp.SettingManagement.EmailSettingsController.GetAsync (Volo.Abp.SettingManagement.HttpApi) in 32.0183ms -2026-01-28 14:19:48.622 +03:00 [INF] Executed endpoint 'Volo.Abp.SettingManagement.EmailSettingsController.GetAsync (Volo.Abp.SettingManagement.HttpApi)' -2026-01-28 14:19:48.623 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/api/setting-management/emailing?api-version=1.0 - 200 null application/json; charset=utf-8 53.6215ms -2026-01-28 14:19:50.131 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/api/setting-management/emailing?api-version=1.0 - null null -2026-01-28 14:19:50.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:50.132 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:50.132 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:19:50.132 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:19:50.132 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:19:50.135 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:50.135 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:50.135 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:19:50.135 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:19:50.135 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:19:50.135 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:19:50.135 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:50.135 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:50.135 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:50.135 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:19:50.135 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:50.136 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:19:50.136 +03:00 [INF] Executing endpoint 'Volo.Abp.SettingManagement.EmailSettingsController.GetAsync (Volo.Abp.SettingManagement.HttpApi)' -2026-01-28 14:19:50.136 +03:00 [INF] Route matched with {area = "settingManagement", action = "Get", controller = "EmailSettings", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.SettingManagement.EmailSettingsDto] GetAsync() on controller Volo.Abp.SettingManagement.EmailSettingsController (Volo.Abp.SettingManagement.HttpApi). -2026-01-28 14:19:50.139 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:SettingManagement.Emailing -2026-01-28 14:19:50.139 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:SettingManagement.Emailing -2026-01-28 14:19:50.139 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:SettingManagement.Emailing -2026-01-28 14:19:50.139 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:SettingManagement.Emailing -2026-01-28 14:19:50.140 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.SettingManagement.EmailSettingsDto'. -2026-01-28 14:19:50.141 +03:00 [INF] Executed action Volo.Abp.SettingManagement.EmailSettingsController.GetAsync (Volo.Abp.SettingManagement.HttpApi) in 4.3464ms -2026-01-28 14:19:50.141 +03:00 [INF] Executed endpoint 'Volo.Abp.SettingManagement.EmailSettingsController.GetAsync (Volo.Abp.SettingManagement.HttpApi)' -2026-01-28 14:19:50.141 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/api/setting-management/emailing?api-version=1.0 - 200 null application/json; charset=utf-8 10.1298ms -2026-01-28 14:19:52.959 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/api/setting-management/emailing?api-version=1.0 - null null -2026-01-28 14:19:52.959 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:52.959 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:52.959 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:19:52.959 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:19:52.959 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:19:52.961 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:52.961 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:52.961 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:19:52.961 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:19:52.961 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:19:52.961 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:19:52.961 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:52.961 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:52.961 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:52.961 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:19:52.961 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:52.962 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:19:52.962 +03:00 [INF] Executing endpoint 'Volo.Abp.SettingManagement.EmailSettingsController.GetAsync (Volo.Abp.SettingManagement.HttpApi)' -2026-01-28 14:19:52.962 +03:00 [INF] Route matched with {area = "settingManagement", action = "Get", controller = "EmailSettings", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.SettingManagement.EmailSettingsDto] GetAsync() on controller Volo.Abp.SettingManagement.EmailSettingsController (Volo.Abp.SettingManagement.HttpApi). -2026-01-28 14:19:52.963 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:SettingManagement.Emailing -2026-01-28 14:19:52.964 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:SettingManagement.Emailing -2026-01-28 14:19:52.964 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:SettingManagement.Emailing -2026-01-28 14:19:52.964 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:SettingManagement.Emailing -2026-01-28 14:19:52.965 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.SettingManagement.EmailSettingsDto'. -2026-01-28 14:19:52.965 +03:00 [INF] Executed action Volo.Abp.SettingManagement.EmailSettingsController.GetAsync (Volo.Abp.SettingManagement.HttpApi) in 3.4939ms -2026-01-28 14:19:52.965 +03:00 [INF] Executed endpoint 'Volo.Abp.SettingManagement.EmailSettingsController.GetAsync (Volo.Abp.SettingManagement.HttpApi)' -2026-01-28 14:19:52.965 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/api/setting-management/emailing?api-version=1.0 - 200 null application/json; charset=utf-8 6.7977ms -2026-01-28 14:19:56.525 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/api/multi-tenancy/tenants?Sorting=&SkipCount=0&MaxResultCount=10&api-version=1.0 - null null -2026-01-28 14:19:56.526 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:56.526 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:56.526 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:19:56.526 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:19:56.526 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:19:56.528 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:56.528 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:56.528 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:19:56.528 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:19:56.528 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:19:56.528 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:19:56.528 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:56.528 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:56.528 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:56.528 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:19:56.528 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:56.529 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:19:56.529 +03:00 [INF] Executing endpoint 'Volo.Abp.TenantManagement.TenantController.GetListAsync (Volo.Abp.TenantManagement.HttpApi)' -2026-01-28 14:19:56.535 +03:00 [INF] Route matched with {area = "multi-tenancy", action = "GetList", controller = "Tenant", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.TenantManagement.TenantDto]] GetListAsync(Volo.Abp.TenantManagement.GetTenantsInput) on controller Volo.Abp.TenantManagement.TenantController (Volo.Abp.TenantManagement.HttpApi). -2026-01-28 14:19:56.574 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants -2026-01-28 14:19:56.574 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants -2026-01-28 14:19:56.574 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpTenantManagement.Tenants -2026-01-28 14:19:56.574 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpTenantManagement.Tenants -2026-01-28 14:19:56.646 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.TenantManagement.TenantDto, Volo.Abp.TenantManagement.Application.Contracts, Version=10.2.0.0, Culture=neutral, PublicKeyToken=null]]'. -2026-01-28 14:19:56.648 +03:00 [INF] Executed action Volo.Abp.TenantManagement.TenantController.GetListAsync (Volo.Abp.TenantManagement.HttpApi) in 112.7786ms -2026-01-28 14:19:56.648 +03:00 [INF] Executed endpoint 'Volo.Abp.TenantManagement.TenantController.GetListAsync (Volo.Abp.TenantManagement.HttpApi)' -2026-01-28 14:19:56.648 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/api/multi-tenancy/tenants?Sorting=&SkipCount=0&MaxResultCount=10&api-version=1.0 - 200 null application/json; charset=utf-8 123.3836ms -2026-01-28 14:19:58.293 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/api/feature-management/features?providerName=T&providerKey=a55ac3a1-a074-6a4b-f1b2-3a1f11c254a1&api-version=1.0 - null null -2026-01-28 14:19:58.294 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:58.294 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:19:58.294 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:19:58.294 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:19:58.294 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:19:58.297 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:58.297 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:58.297 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:19:58.297 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:19:58.297 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:19:58.297 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:19:58.297 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:58.297 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:19:58.297 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:19:58.297 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:19:58.298 +03:00 [DBG] No tenant resolved. -2026-01-28 14:19:58.298 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:19:58.299 +03:00 [INF] Executing endpoint 'Volo.Abp.FeatureManagement.FeaturesController.GetAsync (Volo.Abp.FeatureManagement.HttpApi)' -2026-01-28 14:19:58.307 +03:00 [INF] Route matched with {area = "featureManagement", action = "Get", controller = "Features", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.FeatureManagement.GetFeatureListResultDto] GetAsync(System.String, System.String) on controller Volo.Abp.FeatureManagement.FeaturesController (Volo.Abp.FeatureManagement.HttpApi). -2026-01-28 14:19:58.330 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.ManageFeatures -2026-01-28 14:19:58.330 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.ManageFeatures -2026-01-28 14:19:58.330 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageFeatures -2026-01-28 14:19:58.330 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageFeatures -2026-01-28 14:19:58.395 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.FeatureManagement.GetFeatureListResultDto'. -2026-01-28 14:19:58.399 +03:00 [INF] Executed action Volo.Abp.FeatureManagement.FeaturesController.GetAsync (Volo.Abp.FeatureManagement.HttpApi) in 91.8309ms -2026-01-28 14:19:58.399 +03:00 [INF] Executed endpoint 'Volo.Abp.FeatureManagement.FeaturesController.GetAsync (Volo.Abp.FeatureManagement.HttpApi)' -2026-01-28 14:19:58.402 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/api/feature-management/features?providerName=T&providerKey=a55ac3a1-a074-6a4b-f1b2-3a1f11c254a1&api-version=1.0 - 200 null application/json; charset=utf-8 108.6715ms -2026-01-28 14:20:10.457 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/bg-01.png - null null -2026-01-28 14:20:10.457 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/img-support.png - null null -2026-01-28 14:20:10.458 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:20:10.458 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:20:10.458 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/img-blog.png - null null -2026-01-28 14:20:10.458 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:20:10.458 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:20:10.458 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:20:10.458 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:20:10.458 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:20:10.458 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:20:10.458 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:20:10.458 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:20:10.459 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:20:10.459 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:20:10.459 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:20:10.459 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:20:10.459 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:20:10.461 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:20:10.461 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:20:10.461 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:20:10.461 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:20:10.461 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:20:10.461 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:20:10.461 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:20:10.461 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:20:10.461 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:20:10.461 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:20:10.461 +03:00 [DBG] No tenant resolved. -2026-01-28 14:20:10.461 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:20:10.461 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:20:10.461 +03:00 [DBG] No tenant resolved. -2026-01-28 14:20:10.461 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:20:10.461 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:20:10.461 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:20:10.461 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:20:10.461 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:20:10.461 +03:00 [DBG] No tenant resolved. -2026-01-28 14:20:10.461 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:20:10.461 +03:00 [DBG] No tenant resolved. -2026-01-28 14:20:10.462 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:20:10.462 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:20:10.462 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:20:10.462 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:20:10.462 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:20:10.462 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:20:10.462 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:20:10.462 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:20:10.462 +03:00 [DBG] No tenant resolved. -2026-01-28 14:20:10.462 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:20:10.462 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:20:10.462 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:20:10.462 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:20:10.462 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:20:10.462 +03:00 [DBG] No tenant resolved. -2026-01-28 14:20:10.463 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:20:10.464 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:20:10.464 +03:00 [INF] Sending file. Request path: 'images/getting-started/img-blog.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\img-blog.png' -2026-01-28 14:20:10.464 +03:00 [INF] Sending file. Request path: 'images/getting-started/img-support.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\img-support.png' -2026-01-28 14:20:10.464 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:20:10.464 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:20:10.464 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/img-support.png - 200 23461 image/png 6.854ms -2026-01-28 14:20:10.464 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/img-blog.png - 200 30220 image/png 6.0599ms -2026-01-28 14:20:10.465 +03:00 [INF] Sending file. Request path: 'images/getting-started/bg-01.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\bg-01.png' -2026-01-28 14:20:10.465 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:20:10.465 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/bg-01.png - 200 22111 image/png 7.3654ms -2026-01-28 14:20:14.915 +03:00 [INF] Application is shutting down... -2026-01-28 14:20:14.927 +03:00 [DBG] Stopped background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker -2026-01-28 14:20:14.927 +03:00 [DBG] Stopped background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2026-01-28 14:28:46.595 +03:00 [INF] Starting web host. -2026-01-28 14:28:48.300 +03:00 [DBG] Loaded ABP modules: -2026-01-28 14:28:48.301 +03:00 [DBG] - MyCompanyName.MyProjectName.Blazor.WebApp.MyProjectNameBlazorModule -2026-01-28 14:28:48.301 +03:00 [DBG] - MyCompanyName.MyProjectName.MyProjectNameApplicationModule -2026-01-28 14:28:48.301 +03:00 [DBG] - MyCompanyName.MyProjectName.MyProjectNameDomainModule -2026-01-28 14:28:48.301 +03:00 [DBG] - MyCompanyName.MyProjectName.MyProjectNameDomainSharedModule -2026-01-28 14:28:48.301 +03:00 [DBG] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule -2026-01-28 14:28:48.301 +03:00 [DBG] - Volo.Abp.Validation.AbpValidationModule -2026-01-28 14:28:48.301 +03:00 [DBG] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2026-01-28 14:28:48.301 +03:00 [DBG] - Volo.Abp.Localization.AbpLocalizationModule -2026-01-28 14:28:48.301 +03:00 [DBG] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Settings.AbpSettingsModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Security.AbpSecurityModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Data.AbpDataModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Uow.AbpUnitOfWorkModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Threading.AbpThreadingModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Json.AbpJsonAbstractionsModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Timing.AbpTimingModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Identity.AbpIdentityDomainSharedModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Users.AbpUsersDomainSharedModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Features.AbpFeaturesModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.OpenIddict.AbpOpenIddictDomainSharedModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Auditing.AbpAuditingModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Json.AbpJsonModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Auditing.AbpAuditingContractsModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Domain.AbpDddDomainModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.EventBus.AbpEventBusModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Guids.AbpGuidsModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Specifications.AbpSpecificationsModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Caching.AbpCachingModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Serialization.AbpSerializationModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Domain.AbpDddDomainSharedModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Mapperly.AbpMapperlyModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Identity.AbpIdentityDomainModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Users.AbpUsersDomainModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Users.AbpUsersAbstractionModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.OpenIddict.AbpOpenIddictDomainModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.PermissionManagement.OpenIddict.AbpPermissionManagementDomainOpenIddictModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Authorization.AbpAuthorizationModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Emailing.AbpEmailingModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.TextTemplating.AbpTextTemplatingModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Account.AbpAccountApplicationModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Account.AbpAccountApplicationContractsModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Application.AbpDddApplicationContractsModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Identity.AbpIdentityApplicationModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Application.AbpDddApplicationModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Http.AbpHttpAbstractionsModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.UI.AbpUiModule -2026-01-28 14:28:48.302 +03:00 [DBG] - MyCompanyName.MyProjectName.MyProjectNameApplicationContractsModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule -2026-01-28 14:28:48.302 +03:00 [DBG] - MyCompanyName.MyProjectName.EntityFrameworkCore.MyProjectNameEntityFrameworkCoreModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.OpenIddict.EntityFrameworkCore.AbpOpenIddictEntityFrameworkCoreModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule -2026-01-28 14:28:48.302 +03:00 [DBG] - MyCompanyName.MyProjectName.MyProjectNameHttpApiModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Account.AbpAccountHttpApiModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Identity.AbpIdentityHttpApiModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Http.AbpHttpModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Minify.AbpMinifyModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.AspNetCore.AbpAspNetCoreAbstractionsModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Autofac.AbpAutofacModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Castle.AbpCastleCoreModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Account.Web.AbpAccountWebOpenIddictModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Account.Web.AbpAccountWebModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.AspNetCore.Bundling.AbpAspNetCoreBundlingModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.OpenIddict.AbpOpenIddictAspNetCoreModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.Server.MudBlazorBasicTheme.AbpAspNetCoreComponentsServerMudBlazorBasicThemeModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.AbpAspNetCoreComponentsWebMudBlazorBasicThemeModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.AbpAspNetCoreComponentsWebThemingMudBlazorModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.MudBlazorUI.AbpMudBlazorUIModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.Web.AbpAspNetCoreComponentsWebModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.AbpAspNetCoreComponentsModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.Server.Theming.MudBlazor.AbpAspNetCoreComponentsServerThemingMudBlazorModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.AspNetCore.Components.Server.AbpAspNetCoreComponentsServerModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Http.Client.AbpHttpClientModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.RemoteServices.AbpRemoteServicesModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.Theme.LeptonXLite.AbpAspNetCoreMvcUiLeptonXLiteThemeModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Identity.Blazor.MudBlazor.Server.AbpIdentityBlazorMudBlazorServerModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.Identity.Blazor.MudBlazor.AbpIdentityBlazorMudBlazorModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.PermissionManagement.Blazor.MudBlazor.AbpPermissionManagementBlazorMudBlazorModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.PermissionManagement.Blazor.MudBlazor.Server.AbpPermissionManagementBlazorMudBlazorServerModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.TenantManagement.Blazor.MudBlazor.Server.AbpTenantManagementBlazorMudBlazorServerModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.TenantManagement.Blazor.MudBlazor.AbpTenantManagementBlazorMudBlazorModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.FeatureManagement.Blazor.MudBlazor.AbpFeatureManagementBlazorMudBlazorModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.SettingManagement.Blazor.MudBlazor.AbpSettingManagementBlazorMudBlazorModule -2026-01-28 14:28:48.302 +03:00 [DBG] - Volo.Abp.SettingManagement.Blazor.MudBlazor.Server.AbpSettingManagementBlazorMudBlazorServerModule -2026-01-28 14:28:48.368 +03:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker -2026-01-28 14:28:48.429 +03:00 [DBG] Started background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2026-01-28 14:28:48.953 +03:00 [INF] User profile is available. Using 'C:\Users\ismai\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2026-01-28 14:28:49.345 +03:00 [INF] Initialized all ABP modules. -2026-01-28 14:28:49.580 +03:00 [INF] Now listening on: https://localhost:44308 -2026-01-28 14:28:49.580 +03:00 [INF] Application started. Press Ctrl+C to shut down. -2026-01-28 14:28:49.581 +03:00 [INF] Hosting environment: Development -2026-01-28 14:28:49.581 +03:00 [INF] Content root path: D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp -2026-01-28 14:28:49.747 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44308/_blazor/negotiate?negotiateVersion=1 - null 0 -2026-01-28 14:28:51.092 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:51.111 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:51.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:51.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:51.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:51.491 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:51.492 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:51.493 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:51.501 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:51.501 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:51.502 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:51.503 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:51.508 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:51.508 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:51.509 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:51.509 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:51.538 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:51.542 +03:00 [DBG] Filling dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:52.628 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:52.633 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:52.642 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44308/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 2895.0566ms -2026-01-28 14:28:52.646 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44308/_blazor?id=RFDcFT_aQbx3o-3e2sTjSA - null null -2026-01-28 14:28:52.832 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:52.833 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:52.833 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:52.833 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:52.833 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:52.844 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:52.844 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:52.844 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:52.845 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:52.845 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:52.845 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:52.845 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:52.847 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:52.847 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:52.847 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:52.847 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:52.850 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:52.853 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:52.900 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:52.980 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/ - null null -2026-01-28 14:28:52.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:52.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:52.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:52.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:52.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:52.994 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:52.994 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:52.994 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:52.994 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:52.994 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:52.994 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:52.994 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:52.995 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:52.995 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:52.995 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:52.995 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:52.999 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:53.007 +03:00 [INF] Executing endpoint '/ (/)' -2026-01-28 14:28:53.441 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:SettingManagement.Emailing -2026-01-28 14:28:53.441 +03:00 [DBG] Not found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:SettingManagement.Emailing -2026-01-28 14:28:53.463 +03:00 [DBG] Getting all granted permissions from the repository for this provider name,key: U,34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:53.658 +03:00 [DBG] Setting the cache items. Count: 22 -2026-01-28 14:28:53.660 +03:00 [DBG] Finished setting the cache items. Count: 22 -2026-01-28 14:28:53.663 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:SettingManagement.Emailing -2026-01-28 14:28:53.663 +03:00 [DBG] Not found in the cache: pn:R,pk:admin,n:SettingManagement.Emailing -2026-01-28 14:28:53.664 +03:00 [DBG] Getting all granted permissions from the repository for this provider name,key: R,admin -2026-01-28 14:28:53.687 +03:00 [DBG] Setting the cache items. Count: 22 -2026-01-28 14:28:53.687 +03:00 [DBG] Finished setting the cache items. Count: 22 -2026-01-28 14:28:53.715 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants -2026-01-28 14:28:53.720 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants -2026-01-28 14:28:53.729 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles,pn:R,pk:admin,n:AbpIdentity.Users,pn:R,pk:admin,n:AbpTenantManagement.Tenants -2026-01-28 14:28:53.730 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles,pn:R,pk:admin,n:AbpIdentity.Users,pn:R,pk:admin,n:AbpTenantManagement.Tenants -2026-01-28 14:28:53.995 +03:00 [INF] Executed endpoint '/ (/)' -2026-01-28 14:28:54.015 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44308/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundaryC0PC9yfKdnJwJtBW 359 -2026-01-28 14:28:54.030 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.031 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.031 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:54.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:54.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:54.075 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/core/abp.css - null null -2026-01-28 14:28:54.076 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/all.css - null null -2026-01-28 14:28:54.076 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.077 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/bootstrap-dim.css - null null -2026-01-28 14:28:54.078 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44308/_blazor?id=RFDcFT_aQbx3o-3e2sTjSA - 200 null null 1431.4755ms -2026-01-28 14:28:54.080 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/ - 200 null text/html; charset=utf-8 1099.684ms -2026-01-28 14:28:54.086 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.086 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.086 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.086 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.086 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:54.086 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:54.086 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:54.086 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:54.086 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:54.086 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:54.088 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.088 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.088 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:54.088 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:54.088 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:54.088 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:54.088 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.089 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.089 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.089 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:54.089 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.094 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:54.095 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.099 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.099 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.099 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:54.099 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:54.099 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:54.099 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:54.099 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.100 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.101 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.101 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:54.101 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.101 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.101 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.101 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:54.101 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:54.101 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:54.101 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:54.101 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.102 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.102 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.103 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:54.103 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.109 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:54.109 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:54.111 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.111 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.117 +03:00 [INF] Sending file. Request path: '/Themes/LeptonXLite/Global/side-menu/css/bootstrap-dim.css'. Physical path: 'N/A' -2026-01-28 14:28:54.117 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.117 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/bootstrap-dim.css - 200 308278 text/css 40.5533ms -2026-01-28 14:28:54.118 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44308/_blazor/disconnect - 400 0 null 102.4358ms -2026-01-28 14:28:54.118 +03:00 [INF] Sending file. Request path: 'libs/abp/core/abp.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\534um4fsdt-{0}-6vev71rwdm-6vev71rwdm.gz' -2026-01-28 14:28:54.118 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.118 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/core/abp.css - 200 1364 text/css 43.7135ms -2026-01-28 14:28:54.121 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\0vulsgakzi-{0}-2ej0o14t5y-2ej0o14t5y.gz' -2026-01-28 14:28:54.123 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.123 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/all.css - 200 110162 text/css 46.8921ms -2026-01-28 14:28:54.131 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2026-01-28 14:28:54.140 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.css - null null -2026-01-28 14:28:54.140 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/select2/css/select2.min.css - null null -2026-01-28 14:28:54.144 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.144 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.144 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:54.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:54.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:54.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:54.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:54.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:54.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:54.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:54.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:54.164 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.164 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.164 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:54.165 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:54.165 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:54.165 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:54.166 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.167 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.167 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.167 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:54.167 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.167 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.167 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.167 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.167 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.167 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:54.167 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:54.167 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:54.167 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:54.167 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:54.168 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:54.168 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:54.168 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.168 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:54.168 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.168 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.168 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.168 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.168 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:54.168 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.168 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.169 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:54.169 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.170 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:54.171 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.173 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:54.173 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:54.174 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.174 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.177 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\dfuwed8qp2-{0}-9fxst9u6yk-9fxst9u6yk.gz' -2026-01-28 14:28:54.177 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.179 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 38549 text/css 48.073ms -2026-01-28 14:28:54.181 +03:00 [INF] Sending file. Request path: 'libs/select2/css/select2.min.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\6ddblemzii-{0}-ntg7hq0exj-ntg7hq0exj.gz' -2026-01-28 14:28:54.181 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.183 +03:00 [INF] Sending file. Request path: 'libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\14u3fu9aq9-{0}-p8jqw3ap0f-p8jqw3ap0f.gz' -2026-01-28 14:28:54.183 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.184 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.css - 200 54888 text/css 43.0408ms -2026-01-28 14:28:54.184 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/select2/css/select2.min.css - 200 14999 text/css 43.1423ms -2026-01-28 14:28:54.212 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/datatables.net-bs5/css/dataTables.bootstrap5.css - null null -2026-01-28 14:28:54.212 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/bootstrap-datepicker/bootstrap-datepicker.min.css - null null -2026-01-28 14:28:54.215 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/bootstrap-daterangepicker/daterangepicker.css - null null -2026-01-28 14:28:54.216 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.216 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.216 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.217 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:54.217 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:54.217 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.217 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:54.217 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:54.218 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:54.218 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:54.218 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.225 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.226 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:54.226 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:54.226 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:54.247 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.247 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.247 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:54.247 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:54.247 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:54.248 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:54.248 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.248 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.249 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.249 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:54.249 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:54.249 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:54.249 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:54.249 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.250 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.250 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.250 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:54.250 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.250 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.250 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.250 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.250 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.250 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:54.250 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.250 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:54.250 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:54.250 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:54.250 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:54.251 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.252 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.252 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.252 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:54.252 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.256 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:54.260 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.260 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:54.262 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:54.263 +03:00 [INF] Sending file. Request path: 'libs/bootstrap-daterangepicker/daterangepicker.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\z8ryymhgcw-{0}-85vbs1dise-85vbs1dise.gz' -2026-01-28 14:28:54.263 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.263 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.263 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.263 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/bootstrap-daterangepicker/daterangepicker.css - 200 8102 text/css 47.8855ms -2026-01-28 14:28:54.265 +03:00 [INF] Sending file. Request path: 'libs/bootstrap-datepicker/bootstrap-datepicker.min.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\c98qwcv8t9-{0}-hv5fnth7pn-hv5fnth7pn.gz' -2026-01-28 14:28:54.265 +03:00 [INF] Sending file. Request path: 'libs/datatables.net-bs5/css/dataTables.bootstrap5.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\2vxqr2b34z-{0}-ln8ra2a4gr-ln8ra2a4gr.gz' -2026-01-28 14:28:54.265 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.265 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.266 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/bootstrap-datepicker/bootstrap-datepicker.min.css - 200 15767 text/css 53.2064ms -2026-01-28 14:28:54.266 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/datatables.net-bs5/css/dataTables.bootstrap5.css - 200 21614 text/css 53.4361ms -2026-01-28 14:28:54.278 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css - null null -2026-01-28 14:28:54.281 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/date-range-picker/date-range-picker-styles.css - null null -2026-01-28 14:28:54.282 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/toast/abp-toast.css - null null -2026-01-28 14:28:54.283 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'N/A' -2026-01-28 14:28:54.283 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css - 200 385 text/css 4.7504ms -2026-01-28 14:28:54.283 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toast/abp-toast.css'. Physical path: 'N/A' -2026-01-28 14:28:54.284 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/toast/abp-toast.css - 200 2617 text/css 1.1158ms -2026-01-28 14:28:54.284 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/date-range-picker/date-range-picker-styles.css'. Physical path: 'N/A' -2026-01-28 14:28:54.284 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/abp/aspnetcore-mvc-ui-theme-shared/date-range-picker/date-range-picker-styles.css - 200 338 text/css 3.423ms -2026-01-28 14:28:54.304 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/layout-bundle.css - null null -2026-01-28 14:28:54.303 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/js-bundle.css - null null -2026-01-28 14:28:54.304 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/abp-bundle.css - null null -2026-01-28 14:28:54.305 +03:00 [INF] Sending file. Request path: '/Themes/LeptonXLite/Global/side-menu/css/abp-bundle.css'. Physical path: 'N/A' -2026-01-28 14:28:54.305 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/abp-bundle.css - 200 3404 text/css 1.2796ms -2026-01-28 14:28:54.306 +03:00 [INF] Sending file. Request path: '/Themes/LeptonXLite/Global/side-menu/css/layout-bundle.css'. Physical path: 'N/A' -2026-01-28 14:28:54.306 +03:00 [INF] Sending file. Request path: '/Themes/LeptonXLite/Global/side-menu/css/js-bundle.css'. Physical path: 'N/A' -2026-01-28 14:28:54.306 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/layout-bundle.css - 200 31589 text/css 2.0698ms -2026-01-28 14:28:54.306 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/js-bundle.css - 200 31862 text/css 2.2927ms -2026-01-28 14:28:54.318 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/.well-known/appspecific/com.chrome.devtools.json - null null -2026-01-28 14:28:54.321 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/font-bundle.css - null null -2026-01-28 14:28:54.322 +03:00 [INF] Sending file. Request path: '/Themes/LeptonXLite/Global/side-menu/css/font-bundle.css'. Physical path: 'N/A' -2026-01-28 14:28:54.322 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/css/font-bundle.css - 200 127 text/css 1.6105ms -2026-01-28 14:28:54.323 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.323 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.323 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:54.323 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:54.323 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:54.324 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2026-01-28 14:28:54.324 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/global-styles.css - null null -2026-01-28 14:28:54.326 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.326 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.326 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:54.326 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:54.326 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:54.326 +03:00 [INF] Sending file. Request path: '/Themes/LeptonXLite/Global/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css'. Physical path: 'N/A' -2026-01-28 14:28:54.326 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/Themes/LeptonXLite/Global/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 200 74827 text/css 2.5364ms -2026-01-28 14:28:54.337 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.337 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.337 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:54.337 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:54.337 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:54.337 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:54.337 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.337 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/MudBlazor/MudBlazor.min.css - null null -2026-01-28 14:28:54.338 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.338 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.338 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:54.338 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.339 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.339 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.339 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.339 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:54.339 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:54.339 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:54.339 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.339 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:54.339 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.339 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:54.339 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:54.339 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:54.340 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.340 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.340 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:54.340 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.342 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:54.343 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/.well-known/appspecific/com.chrome.devtools.json - 404 0 null 24.3523ms -2026-01-28 14:28:54.343 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44308/.well-known/appspecific/com.chrome.devtools.json, Response status code: 404 -2026-01-28 14:28:54.344 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:54.344 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.345 +03:00 [INF] Sending file. Request path: 'global-styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\rh9y3nvfnm-{0}-bbfo2klxrw-bbfo2klxrw.gz' -2026-01-28 14:28:54.345 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.346 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/global-styles.css - 200 284 text/css 21.3535ms -2026-01-28 14:28:54.350 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.350 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.350 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:54.350 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:54.350 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:54.350 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:54.350 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.351 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.351 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.351 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:54.351 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.353 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2026-01-28 14:28:54.354 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:54.355 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.359 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.359 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.360 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:54.360 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:54.360 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:54.364 +03:00 [INF] Sending file. Request path: '_content/MudBlazor/MudBlazor.min.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\tzxjg6is5z-{0}-du7z45fy1o-du7z45fy1o.gz' -2026-01-28 14:28:54.364 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.364 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/MudBlazor/MudBlazor.min.css - 200 64451 text/css 26.9728ms -2026-01-28 14:28:54.371 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.MudBlazorUI/volo.abp.mudblazorui.css - null null -2026-01-28 14:28:54.371 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.371 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.371 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:54.371 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:54.371 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:54.372 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:54.372 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.372 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.372 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.372 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.372 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:54.372 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.373 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.373 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:54.373 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:54.373 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:54.376 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:54.377 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.378 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\obj\Debug\net10.0\compressed\p1g0cu86en-{0}-c25c931rn9-c25c931rn9.gz' -2026-01-28 14:28:54.378 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.379 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1375 text/css 25.829ms -2026-01-28 14:28:54.384 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.384 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.384 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:54.384 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:54.384 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:54.384 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:54.384 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.385 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.385 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.385 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:54.385 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.386 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/themes/basic/main.css - null null -2026-01-28 14:28:54.388 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:54.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:54.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:54.389 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:54.390 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.391 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.MudBlazorUI/volo.abp.mudblazorui.css'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.MudBlazorUI\obj\Debug\net10.0\compressed\giyoea8shq-{0}-8qeawnrprb-8qeawnrprb.gz' -2026-01-28 14:28:54.391 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.391 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.MudBlazorUI/volo.abp.mudblazorui.css - 200 1120 text/css 20.2964ms -2026-01-28 14:28:54.398 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.398 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.398 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:54.398 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:54.398 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:54.398 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:54.398 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.398 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/blazor-global-styles.css - null null -2026-01-28 14:28:54.399 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.399 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.399 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:54.399 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.400 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.400 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.400 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:54.401 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:54.401 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:54.403 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:54.404 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.405 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/themes/basic/main.css'. Physical path: 'D:\GitHub\abp\modules\basic-theme\src\Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme\obj\Debug\net10.0\compressed\fqd2rlnqku-{0}-tyyka3g39l-tyyka3g39l.gz' -2026-01-28 14:28:54.405 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.405 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme/themes/basic/main.css - 200 120 text/css 19.1613ms -2026-01-28 14:28:54.412 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.412 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.412 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:54.412 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:54.412 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:54.412 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:54.412 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.413 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.413 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.413 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:54.413 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.417 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:54.418 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.419 +03:00 [INF] Sending file. Request path: 'blazor-global-styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\smexgl05zq-{0}-y3n6denrdr-y3n6denrdr.gz' -2026-01-28 14:28:54.419 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.419 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/blazor-global-styles.css - 200 641 text/css 20.6123ms -2026-01-28 14:28:54.551 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css - null null -2026-01-28 14:28:54.553 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.553 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.553 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:54.553 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:54.553 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:54.558 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2026-01-28 14:28:54.559 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.560 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.560 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:54.560 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:54.560 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:54.565 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.565 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.565 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:54.565 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:54.565 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:54.565 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:54.565 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.566 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.566 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.566 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:54.566 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.570 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:54.570 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.570 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.570 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:54.570 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:54.570 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:54.570 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:54.570 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.571 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.571 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.571 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.571 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:54.571 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.572 +03:00 [INF] Sending file. Request path: 'MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s4s6fpr8ex-{0}-oa8u55zyfs-oa8u55zyfs.gz' -2026-01-28 14:28:54.572 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.572 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/MyCompanyName.MyProjectName.Blazor.WebApp.Client.styles.css - 200 317 text/css 21.0926ms -2026-01-28 14:28:54.574 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:54.575 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.581 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' -2026-01-28 14:28:54.581 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.582 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 113152 font/woff2 23.4923ms -2026-01-28 14:28:54.588 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2 - null null -2026-01-28 14:28:54.595 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.596 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.596 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:54.596 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:54.596 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:54.600 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 - null null -2026-01-28 14:28:54.601 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.601 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.601 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:54.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:54.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:54.607 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.607 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.608 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:54.608 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:54.608 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:54.608 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:54.608 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.609 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.609 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.609 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:54.609 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.611 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.611 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.611 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:54.611 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:54.611 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:54.611 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:54.611 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.612 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.612 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.612 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:54.612 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.612 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:54.613 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.617 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:54.618 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.623 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-brands-400.woff2' -2026-01-28 14:28:54.624 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.624 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 - 200 101224 font/woff2 24.2855ms -2026-01-28 14:28:54.642 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/bg-01.png - null null -2026-01-28 14:28:54.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.643 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.644 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:54.644 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:54.644 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:54.649 +03:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-regular-400.woff2' -2026-01-28 14:28:54.650 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.650 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2 - 200 18988 font/woff2 62.2501ms -2026-01-28 14:28:54.653 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.653 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.653 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:54.654 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:54.654 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:54.654 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:54.654 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.654 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.654 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.654 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:54.654 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.658 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:54.658 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.660 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/img-support.png - null null -2026-01-28 14:28:54.661 +03:00 [INF] Sending file. Request path: 'images/getting-started/bg-01.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\bg-01.png' -2026-01-28 14:28:54.661 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.661 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/bg-01.png - 200 22111 image/png 19.5628ms -2026-01-28 14:28:54.668 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/img-community.png - null null -2026-01-28 14:28:54.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.682 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.682 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.682 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.682 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:54.682 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:54.682 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:54.682 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:54.682 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:54.682 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:54.690 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.690 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.691 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:54.691 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:54.691 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:54.691 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:54.691 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.691 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.691 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.691 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:54.691 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:54.691 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:54.691 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:54.691 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.691 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.692 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.692 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:54.692 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.692 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.692 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.692 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:54.692 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.694 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:54.695 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.695 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:54.695 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.697 +03:00 [INF] Sending file. Request path: 'images/getting-started/img-support.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\img-support.png' -2026-01-28 14:28:54.697 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.697 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/img-support.png - 200 23461 image/png 36.9864ms -2026-01-28 14:28:54.709 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/MudBlazor/MudBlazor.min.js - null null -2026-01-28 14:28:54.709 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2026-01-28 14:28:54.709 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2026-01-28 14:28:54.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.711 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.711 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.711 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.711 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:54.711 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:54.711 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:54.711 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:54.711 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:54.711 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:54.712 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.713 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.713 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:54.713 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:54.713 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:54.713 +03:00 [INF] Sending file. Request path: 'images/getting-started/img-community.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\img-community.png' -2026-01-28 14:28:54.713 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.713 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/img-community.png - 200 42859 image/png 45.1067ms -2026-01-28 14:28:54.719 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.719 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.719 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:54.719 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:54.719 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.719 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:54.719 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.719 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:54.719 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.719 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:54.719 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:54.719 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:54.719 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:54.719 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.720 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.720 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.720 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:54.720 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.720 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.720 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.720 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:54.720 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.720 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:54.720 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.720 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:54.720 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:54.720 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:54.720 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.720 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.721 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.721 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.721 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:54.721 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.723 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:54.723 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:54.723 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.723 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.724 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:54.724 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\obj\Debug\net10.0\compressed\2mj6s76mwx-{0}-qb38od44a4-qb38od44a4.gz' -2026-01-28 14:28:54.724 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.724 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.724 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 486 text/javascript 15.4537ms -2026-01-28 14:28:54.724 +03:00 [INF] Sending file. Request path: '_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'D:\GitHub\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\obj\Debug\net10.0\compressed\rhkuekteef-{0}-cowusv9rvg-cowusv9rvg.gz' -2026-01-28 14:28:54.724 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.725 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8981 text/javascript 16.0275ms -2026-01-28 14:28:54.725 +03:00 [INF] Sending file. Request path: '_content/MudBlazor/MudBlazor.min.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\0wz98yz2xy-{0}-u9015k2po7-u9015k2po7.gz' -2026-01-28 14:28:54.725 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.725 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/MudBlazor/MudBlazor.min.js - 200 11465 text/javascript 16.7841ms -2026-01-28 14:28:54.736 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/blazor.web.js - null null -2026-01-28 14:28:54.739 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.739 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.739 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:54.739 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:54.739 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:54.747 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.747 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.747 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:54.747 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:54.747 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:54.747 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:54.747 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.747 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.748 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.748 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:54.748 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.750 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:54.750 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.752 +03:00 [INF] Sending file. Request path: '_framework/blazor.web.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\obj\Debug\net10.0\compressed\ocy8dvewdt-{0}-2i0r6wwb69-2i0r6wwb69.gz' -2026-01-28 14:28:54.752 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.752 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/blazor.web.js - 200 55628 text/javascript 16.2126ms -2026-01-28 14:28:54.821 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js - null null -2026-01-28 14:28:54.822 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.822 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:54.823 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:54.823 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:54.823 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:54.833 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.833 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.833 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:54.833 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:54.833 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:54.833 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:54.833 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.834 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:54.834 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:54.834 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:54.834 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:54.836 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:54.837 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.838 +03:00 [INF] Sending file. Request path: '_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js'. Physical path: 'C:\Users\ismai\.nuget\packages\microsoft.dotnet.hotreload.webassembly.browser\10.0.102\staticwebassets\Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js' -2026-01-28 14:28:54.838 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:54.839 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_content/Microsoft.DotNet.HotReload.WebAssembly.Browser/Microsoft.DotNet.HotReload.WebAssembly.Browser.99zm1jdh75.lib.module.js - 200 1862 text/javascript 17.8736ms -2026-01-28 14:28:55.421 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.js - null null -2026-01-28 14:28:55.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:55.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:55.424 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:55.428 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/favicon.ico - null null -2026-01-28 14:28:55.429 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'N/A' -2026-01-28 14:28:55.429 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/favicon.ico - 200 38078 image/x-icon 1.2672ms -2026-01-28 14:28:55.435 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.435 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.435 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:55.435 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:55.435 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:55.435 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:55.435 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.436 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.436 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.436 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:55.436 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.439 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:55.440 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:55.549 +03:00 [INF] Sending file. Request path: '_framework/dotnet.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uxk8is50o9-{0}-jhru5ijiw2-jhru5ijiw2.gz' -2026-01-28 14:28:55.549 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:55.549 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.js - 200 138290 text/javascript 128.8526ms -2026-01-28 14:28:55.600 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.0j6ezsi0n0.js - null null -2026-01-28 14:28:55.600 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.native.cs8mcre4gh.js - null null -2026-01-28 14:28:55.600 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.native.muve7a13r4.wasm - null null -2026-01-28 14:28:55.601 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.601 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.601 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.601 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.601 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.601 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:55.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:55.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:55.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:55.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:55.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:55.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:55.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:55.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:55.605 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44308/_blazor/negotiate?negotiateVersion=1 - null 0 -2026-01-28 14:28:55.606 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.606 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.606 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:55.606 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:55.606 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:55.609 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.609 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.609 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.609 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.609 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:55.609 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:55.609 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:55.609 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:55.609 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:55.609 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:55.609 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:55.609 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:55.609 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.609 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.609 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.610 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.610 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:55.610 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:55.610 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:55.610 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:55.610 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.610 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.610 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.610 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.610 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.610 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:55.610 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.610 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:55.610 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.610 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.610 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.610 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:55.610 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.612 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:55.612 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:55.613 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:55.613 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:55.613 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:55.613 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:55.614 +03:00 [INF] Sending file. Request path: '_framework/dotnet.native.cs8mcre4gh.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\k6ua61tyqb-{0}-cs8mcre4gh-cs8mcre4gh.gz' -2026-01-28 14:28:55.614 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:55.614 +03:00 [INF] Sending file. Request path: '_framework/dotnet.runtime.0j6ezsi0n0.js'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ilxt1pu9fi-{0}-0j6ezsi0n0-0j6ezsi0n0.gz' -2026-01-28 14:28:55.614 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:55.614 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.614 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.615 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:55.615 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.0j6ezsi0n0.js - 200 57287 text/javascript 14.4726ms -2026-01-28 14:28:55.615 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:55.615 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.native.cs8mcre4gh.js - 200 34952 text/javascript 14.412ms -2026-01-28 14:28:55.615 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:55.615 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:55.615 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.615 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.616 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.616 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:55.616 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.618 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:55.619 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:55.619 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:55.620 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44308/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 14.5167ms -2026-01-28 14:28:55.636 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.JavaScript.flbdejno7d.wasm - null null -2026-01-28 14:28:55.637 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.637 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.637 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:55.637 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:55.637 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:55.646 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.646 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.647 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:55.647 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:55.647 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:55.647 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:55.647 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.647 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.647 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.647 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:55.647 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.650 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:55.650 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44308/_blazor?id=gqQj_EiR9RTsi_UNh84xfw - null null -2026-01-28 14:28:55.650 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:55.650 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.651 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.651 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:55.651 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:55.651 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:55.652 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.InteropServices.JavaScript.flbdejno7d.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s7btk1c9a3-{0}-flbdejno7d-flbdejno7d.gz' -2026-01-28 14:28:55.652 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:55.652 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.JavaScript.flbdejno7d.wasm - 200 79680 application/wasm 16.698ms -2026-01-28 14:28:55.659 +03:00 [INF] Sending file. Request path: '_framework/dotnet.native.muve7a13r4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uv3ayj7441-{0}-muve7a13r4-muve7a13r4.gz' -2026-01-28 14:28:55.660 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:55.660 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.660 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.660 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:55.660 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:55.660 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:55.660 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:55.660 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.native.muve7a13r4.wasm - 200 1207839 application/wasm 59.5335ms -2026-01-28 14:28:55.660 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.660 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.660 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.661 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:55.661 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.663 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:55.663 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:55.702 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.CoreLib.zjh2w4p93l.wasm - null null -2026-01-28 14:28:55.704 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.704 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:55.704 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.704 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:55.704 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:55.704 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:55.716 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.716 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.716 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:55.716 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:55.716 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:55.716 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:55.716 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.717 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.718 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.718 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:55.718 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.721 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:55.722 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:55.814 +03:00 [INF] Sending file. Request path: '_framework/System.Private.CoreLib.zjh2w4p93l.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6as1brjopk-{0}-zjh2w4p93l-zjh2w4p93l.gz' -2026-01-28 14:28:55.814 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:55.815 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.js.map - null null -2026-01-28 14:28:55.815 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.CoreLib.zjh2w4p93l.wasm - 200 4870686 application/wasm 113.5104ms -2026-01-28 14:28:55.817 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.817 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.817 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:55.817 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:55.817 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:55.831 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.831 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.831 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:55.832 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:55.832 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:55.832 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:55.832 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.833 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.833 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.833 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:55.833 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.836 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:55.837 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:55.839 +03:00 [INF] Sending file. Request path: '_framework/dotnet.runtime.js.map'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xqmdb6twc8-{0}-efgkpxn596-efgkpxn596.gz' -2026-01-28 14:28:55.839 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:55.839 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/dotnet.runtime.js.map - 200 89353 text/plain 25.0315ms -2026-01-28 14:28:55.848 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.rgbxj6i45y.pdb - null null -2026-01-28 14:28:55.848 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:55.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:55.849 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:55.856 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.856 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.856 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:55.856 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:55.856 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:55.856 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:55.856 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.856 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.856 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.856 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:55.856 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.859 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:55.859 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:55.861 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.rgbxj6i45y.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vzc2x4ap4x-{0}-rgbxj6i45y-rgbxj6i45y.gz' -2026-01-28 14:28:55.861 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:55.861 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.rgbxj6i45y.pdb - 200 19065 application/octet-stream 13.4581ms -2026-01-28 14:28:55.870 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.3ihkiqtul0.pdb - null null -2026-01-28 14:28:55.871 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.871 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.871 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:55.871 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:55.871 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:55.880 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.880 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.880 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:55.880 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:55.880 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:55.880 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:55.880 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.880 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.881 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.881 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:55.881 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.883 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:55.883 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:55.884 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.3ihkiqtul0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6vzgo2e02t-{0}-3ihkiqtul0-3ihkiqtul0.gz' -2026-01-28 14:28:55.885 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:55.885 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.3ihkiqtul0.pdb - 200 18845 application/octet-stream 14.5507ms -2026-01-28 14:28:55.901 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.q12kofv66i.pdb - null null -2026-01-28 14:28:55.902 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.902 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.902 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:55.902 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:55.902 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:55.911 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.911 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.911 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:55.911 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:55.911 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:55.911 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:55.911 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.911 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.911 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.911 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:55.911 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.913 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:55.914 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:55.915 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.q12kofv66i.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tiqjr11wdr-{0}-q12kofv66i-q12kofv66i.gz' -2026-01-28 14:28:55.915 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:55.915 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.q12kofv66i.pdb - 200 40486 application/octet-stream 14.132ms -2026-01-28 14:28:55.923 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.ugoz0mgqgy.pdb - null null -2026-01-28 14:28:55.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.924 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.924 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:55.924 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:55.924 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:55.930 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.930 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.930 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:55.931 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:55.931 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:55.931 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:55.931 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.931 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.931 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.931 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:55.931 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.934 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:55.934 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:55.936 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.ugoz0mgqgy.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3z9ena93oc-{0}-ugoz0mgqgy-ugoz0mgqgy.gz' -2026-01-28 14:28:55.936 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:55.936 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.ugoz0mgqgy.pdb - 200 31293 application/octet-stream 13.3362ms -2026-01-28 14:28:55.944 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.WebAssembly.imimiyzcuo.pdb - null null -2026-01-28 14:28:55.944 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.945 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.945 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:55.945 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:55.945 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:55.946 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:SettingManagement.Emailing -2026-01-28 14:28:55.947 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:SettingManagement.Emailing -2026-01-28 14:28:55.947 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:SettingManagement.Emailing -2026-01-28 14:28:55.947 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:SettingManagement.Emailing -2026-01-28 14:28:55.949 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants -2026-01-28 14:28:55.949 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Roles,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpIdentity.Users,pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants -2026-01-28 14:28:55.949 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles,pn:R,pk:admin,n:AbpIdentity.Users,pn:R,pk:admin,n:AbpTenantManagement.Tenants -2026-01-28 14:28:55.949 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles,pn:R,pk:admin,n:AbpIdentity.Users,pn:R,pk:admin,n:AbpTenantManagement.Tenants -2026-01-28 14:28:55.953 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.953 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.953 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:55.953 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:55.953 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:55.953 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:55.953 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.953 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.953 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.954 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:55.954 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.956 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:55.956 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:55.957 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Autofac.WebAssembly.imimiyzcuo.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\46uzmq97el-{0}-imimiyzcuo-imimiyzcuo.gz' -2026-01-28 14:28:55.957 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:55.957 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.WebAssembly.imimiyzcuo.pdb - 200 17837 application/octet-stream 13.6995ms -2026-01-28 14:28:55.966 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.xhf7sa1p5x.pdb - null null -2026-01-28 14:28:55.967 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.967 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.967 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:55.967 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:55.967 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:55.974 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.974 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.974 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:55.974 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:55.974 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:55.974 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:55.974 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.975 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.975 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.975 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:55.975 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.978 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:55.979 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:55.980 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.xhf7sa1p5x.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nvmr6rtxm8-{0}-xhf7sa1p5x-xhf7sa1p5x.gz' -2026-01-28 14:28:55.980 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:55.980 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.xhf7sa1p5x.pdb - 200 18717 application/octet-stream 14.0039ms -2026-01-28 14:28:55.982 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/bg-01.png - null null -2026-01-28 14:28:55.982 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/img-support.png - null null -2026-01-28 14:28:55.982 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/images/getting-started/img-community.png - null null -2026-01-28 14:28:55.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.983 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:55.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:55.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:55.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:55.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:55.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:55.984 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:55.984 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:55.984 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:55.984 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:55.992 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.992 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.992 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.992 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.992 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:55.992 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:55.992 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:55.992 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:55.992 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:55.992 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:55.992 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:55.992 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:55.992 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.992 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.993 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.993 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.993 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.993 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.993 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.993 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:55.993 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.993 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.993 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:55.993 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.993 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:55.993 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:55.993 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:55.993 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:55.993 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:55.993 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:55.994 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:55.994 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:55.994 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.016 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.aauy841uql.pdb - null null -2026-01-28 14:28:56.017 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.017 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.017 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.017 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.017 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.017 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.017 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.018 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.018 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.018 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.018 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.020 +03:00 [INF] Sending file. Request path: 'images/getting-started/img-support.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\img-support.png' -2026-01-28 14:28:56.020 +03:00 [INF] Sending file. Request path: 'images/getting-started/bg-01.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\bg-01.png' -2026-01-28 14:28:56.020 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.020 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.020 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/img-support.png - 200 23461 image/png 37.8669ms -2026-01-28 14:28:56.020 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/bg-01.png - 200 22111 image/png 37.9477ms -2026-01-28 14:28:56.021 +03:00 [INF] Sending file. Request path: 'images/getting-started/img-community.png'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp\wwwroot\images\getting-started\img-community.png' -2026-01-28 14:28:56.021 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.021 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/images/getting-started/img-community.png - 200 42859 image/png 38.6586ms -2026-01-28 14:28:56.027 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.027 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.027 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.027 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.027 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.027 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.027 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.028 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.028 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.028 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.028 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.031 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.031 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.036 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.aauy841uql.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2jefoohlw9-{0}-aauy841uql-aauy841uql.gz' -2026-01-28 14:28:56.036 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.037 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.aauy841uql.pdb - 200 18717 application/octet-stream 20.4154ms -2026-01-28 14:28:56.059 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.gbnu5lon3p.pdb - null null -2026-01-28 14:28:56.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.061 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.061 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.061 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.061 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.070 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.071 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.071 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.071 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.071 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.071 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.071 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.072 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.072 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.072 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.072 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.075 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.075 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.077 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.gbnu5lon3p.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\yqm8xk8yh0-{0}-gbnu5lon3p-gbnu5lon3p.gz' -2026-01-28 14:28:56.077 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.077 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.gbnu5lon3p.pdb - 200 18277 application/octet-stream 18.1508ms -2026-01-28 14:28:56.089 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.HttpApi.Client.puryd8tfts.pdb - null null -2026-01-28 14:28:56.089 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.090 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.090 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.090 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.090 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.104 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.104 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.104 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.104 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.104 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.104 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.104 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.105 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.105 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.105 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.105 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.108 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.108 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.110 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.HttpApi.Client.puryd8tfts.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wa1oh5lir8-{0}-puryd8tfts-puryd8tfts.gz' -2026-01-28 14:28:56.110 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.111 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.HttpApi.Client.puryd8tfts.pdb - 200 18313 application/octet-stream 22.1834ms -2026-01-28 14:28:56.123 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Application.Contracts.q930c1xwd6.pdb - null null -2026-01-28 14:28:56.124 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.125 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.125 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.125 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.125 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.135 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.135 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.135 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.135 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.135 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.135 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.135 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.136 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.136 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.136 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.136 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.139 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.139 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.141 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Application.Contracts.q930c1xwd6.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7jvwr8mtd4-{0}-q930c1xwd6-q930c1xwd6.gz' -2026-01-28 14:28:56.141 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.141 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Application.Contracts.q930c1xwd6.pdb - 200 17845 application/octet-stream 18.294ms -2026-01-28 14:28:56.152 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Domain.Shared.bmn2636ymj.pdb - null null -2026-01-28 14:28:56.153 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.153 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.153 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.153 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.153 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.163 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.163 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.163 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.163 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.163 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.163 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.163 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.164 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.164 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.164 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.164 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.166 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.167 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.168 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Domain.Shared.bmn2636ymj.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rlbmklp40g-{0}-bmn2636ymj-bmn2636ymj.gz' -2026-01-28 14:28:56.168 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.169 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Domain.Shared.bmn2636ymj.pdb - 200 17373 application/octet-stream 16.9813ms -2026-01-28 14:28:56.180 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.tv5yl1psyg.pdb - null null -2026-01-28 14:28:56.181 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.181 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.181 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.181 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.181 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.191 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.191 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.191 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.191 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.191 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.191 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.191 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.192 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.192 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.192 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.192 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.195 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.196 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.197 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.tv5yl1psyg.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kaxpuw2pqs-{0}-tv5yl1psyg-tv5yl1psyg.gz' -2026-01-28 14:28:56.197 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.198 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.tv5yl1psyg.pdb - 200 21877 application/octet-stream 17.9607ms -2026-01-28 14:28:56.210 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.i3kyf3e5w5.pdb - null null -2026-01-28 14:28:56.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.211 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.211 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.211 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.211 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.219 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.219 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.219 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.219 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.219 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.219 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.219 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.220 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.220 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.220 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.220 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.223 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.223 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.225 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.i3kyf3e5w5.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3g4acw7rc0-{0}-i3kyf3e5w5-i3kyf3e5w5.gz' -2026-01-28 14:28:56.225 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.226 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.i3kyf3e5w5.pdb - 200 28037 application/octet-stream 15.1676ms -2026-01-28 14:28:56.234 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.hcs1zisgxl.pdb - null null -2026-01-28 14:28:56.235 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.235 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.235 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.235 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.235 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.244 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.244 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.244 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.244 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.244 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.244 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.244 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.245 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.245 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.245 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.245 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.249 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.250 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.251 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.hcs1zisgxl.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\iqrjqm25rb-{0}-hcs1zisgxl-hcs1zisgxl.gz' -2026-01-28 14:28:56.251 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.252 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.hcs1zisgxl.pdb - 200 41586 application/octet-stream 17.4966ms -2026-01-28 14:28:56.285 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.w6zddju3kj.pdb - null null -2026-01-28 14:28:56.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.286 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.286 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.286 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.287 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.295 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.295 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.295 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.295 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.295 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.295 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.295 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.296 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.296 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.296 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.296 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.299 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.299 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.300 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.w6zddju3kj.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wynnfd4qyp-{0}-w6zddju3kj-w6zddju3kj.gz' -2026-01-28 14:28:56.300 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.301 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.w6zddju3kj.pdb - 200 31269 application/octet-stream 15.4602ms -2026-01-28 14:28:56.309 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.kgrhtsi4hq.pdb - null null -2026-01-28 14:28:56.310 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.310 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.310 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.310 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.310 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.318 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.318 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.318 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.318 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.318 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.318 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.318 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.319 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.319 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.319 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.319 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.321 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.322 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.323 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.kgrhtsi4hq.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\htac70xodz-{0}-kgrhtsi4hq-kgrhtsi4hq.gz' -2026-01-28 14:28:56.323 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.323 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.kgrhtsi4hq.pdb - 200 18517 application/octet-stream 14.6076ms -2026-01-28 14:28:56.332 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.mqramojkbo.pdb - null null -2026-01-28 14:28:56.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.333 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.333 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.333 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.333 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.339 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.339 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.339 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.339 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.340 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.340 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.340 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.340 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.340 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.340 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.341 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.344 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.344 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.345 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.mqramojkbo.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mf8v92gj25-{0}-mqramojkbo-mqramojkbo.gz' -2026-01-28 14:28:56.345 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.345 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.mqramojkbo.pdb - 200 13921 application/octet-stream 13.9266ms -2026-01-28 14:28:56.353 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.kbf4e1o5yq.pdb - null null -2026-01-28 14:28:56.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.354 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.354 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.354 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.354 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.362 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.362 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.362 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.362 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.362 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.362 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.362 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.363 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.363 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.363 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.363 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.366 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.366 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.368 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.kbf4e1o5yq.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\075clw76hm-{0}-kbf4e1o5yq-kbf4e1o5yq.gz' -2026-01-28 14:28:56.368 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.368 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.kbf4e1o5yq.pdb - 200 21557 application/octet-stream 15.1849ms -2026-01-28 14:28:56.376 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.j3nmt0rh5o.pdb - null null -2026-01-28 14:28:56.377 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.377 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.377 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.377 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.377 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.384 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.385 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.385 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.385 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.385 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.385 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.385 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.385 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.385 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.385 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.385 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.389 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.389 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.391 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.j3nmt0rh5o.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gbgteom76y-{0}-j3nmt0rh5o-j3nmt0rh5o.gz' -2026-01-28 14:28:56.391 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.391 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.j3nmt0rh5o.pdb - 200 31349 application/octet-stream 14.9227ms -2026-01-28 14:28:56.400 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.ej4nfwopnt.pdb - null null -2026-01-28 14:28:56.401 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.401 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.401 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.401 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.401 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.412 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.412 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.412 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.412 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.412 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.412 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.412 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.412 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.412 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.412 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.412 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.415 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.415 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.417 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Blazor.MudBlazor.ej4nfwopnt.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8c1zm5wt8e-{0}-ej4nfwopnt-ej4nfwopnt.gz' -2026-01-28 14:28:56.417 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.417 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.ej4nfwopnt.pdb - 200 45622 application/octet-stream 17.0245ms -2026-01-28 14:28:56.427 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MudBlazorUI.kagx9siw5c.pdb - null null -2026-01-28 14:28:56.427 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.428 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.428 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.428 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.428 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.437 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.437 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.437 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.437 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.437 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.438 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.438 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.439 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.440 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.440 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.440 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.442 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.443 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.444 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MudBlazorUI.kagx9siw5c.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fb4n2yszse-{0}-kagx9siw5c-kagx9siw5c.gz' -2026-01-28 14:28:56.445 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.445 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MudBlazorUI.kagx9siw5c.pdb - 200 75523 application/octet-stream 18.3064ms -2026-01-28 14:28:56.452 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.h9wobfk88b.pdb - null null -2026-01-28 14:28:56.453 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.454 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.454 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.454 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.454 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.466 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.466 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.466 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.466 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.466 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.466 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.466 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.468 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.468 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.468 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.468 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.474 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.475 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.477 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.h9wobfk88b.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ouhgkzthum-{0}-h9wobfk88b-h9wobfk88b.gz' -2026-01-28 14:28:56.477 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.477 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.h9wobfk88b.pdb - 200 42806 application/octet-stream 24.5403ms -2026-01-28 14:28:56.489 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.sff8ai0aia.pdb - null null -2026-01-28 14:28:56.490 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.490 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.490 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.490 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.490 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.498 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.498 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.498 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.498 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.498 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.498 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.498 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.499 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.499 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.499 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.499 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.501 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.501 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.502 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.sff8ai0aia.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xdm6fxeedd-{0}-sff8ai0aia-sff8ai0aia.gz' -2026-01-28 14:28:56.502 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.502 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.sff8ai0aia.pdb - 200 18145 application/octet-stream 13.8572ms -2026-01-28 14:28:56.509 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.6hy2xofs6k.pdb - null null -2026-01-28 14:28:56.510 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.510 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.510 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.510 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.510 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.516 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.516 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.516 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.516 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.516 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.516 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.516 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.517 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.517 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.517 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.517 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.518 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.519 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.520 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.6hy2xofs6k.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wvossyu6ah-{0}-6hy2xofs6k-6hy2xofs6k.gz' -2026-01-28 14:28:56.520 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.520 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.6hy2xofs6k.pdb - 200 41322 application/octet-stream 11.0872ms -2026-01-28 14:28:56.527 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.phiqfrt9c2.pdb - null null -2026-01-28 14:28:56.528 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.528 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.528 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.528 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.528 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.534 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.534 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.534 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.534 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.534 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.534 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.534 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.535 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.535 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.535 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.535 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.536 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.537 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.538 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.phiqfrt9c2.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mq253tbkc6-{0}-phiqfrt9c2-phiqfrt9c2.gz' -2026-01-28 14:28:56.538 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.538 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.phiqfrt9c2.pdb - 200 28197 application/octet-stream 10.9872ms -2026-01-28 14:28:56.545 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.Application.Contracts.lnhr5y4bfl.pdb - null null -2026-01-28 14:28:56.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.545 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.546 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.546 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.546 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.550 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.550 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.550 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.550 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.550 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.550 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.550 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.550 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.550 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.550 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.550 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.552 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.552 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.553 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Account.Application.Contracts.lnhr5y4bfl.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uzxye9p8cy-{0}-lnhr5y4bfl-lnhr5y4bfl.gz' -2026-01-28 14:28:56.553 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.553 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.Application.Contracts.lnhr5y4bfl.pdb - 200 19021 application/octet-stream 8.3678ms -2026-01-28 14:28:56.559 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.HttpApi.Client.vbwanrrdq2.pdb - null null -2026-01-28 14:28:56.560 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.560 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.560 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.560 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.560 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.565 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.565 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.565 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.565 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.565 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.565 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.565 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.566 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.566 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.566 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.566 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.568 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.568 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.569 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Account.HttpApi.Client.vbwanrrdq2.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ntmq6e7ewr-{0}-vbwanrrdq2-vbwanrrdq2.gz' -2026-01-28 14:28:56.569 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.569 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.HttpApi.Client.vbwanrrdq2.pdb - 200 18073 application/octet-stream 9.8083ms -2026-01-28 14:28:56.576 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.hpzdukhxsy.pdb - null null -2026-01-28 14:28:56.576 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.576 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.577 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.577 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.577 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.582 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.583 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.583 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.583 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.583 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.583 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.583 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.583 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.583 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.583 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.583 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.585 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.585 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.586 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.hpzdukhxsy.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\eoau05i0af-{0}-hpzdukhxsy-hpzdukhxsy.gz' -2026-01-28 14:28:56.586 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.586 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.hpzdukhxsy.pdb - 200 25305 application/octet-stream 10.4792ms -2026-01-28 14:28:56.592 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Contracts.4guztbzukr.pdb - null null -2026-01-28 14:28:56.592 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.593 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.593 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.593 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.593 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.599 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.599 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.599 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.599 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.599 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.599 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.599 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.599 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.599 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.599 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.599 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.601 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.601 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.602 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.Contracts.4guztbzukr.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ur1wb3r0pv-{0}-4guztbzukr-4guztbzukr.gz' -2026-01-28 14:28:56.602 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.602 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Contracts.4guztbzukr.pdb - 200 26921 application/octet-stream 10.7658ms -2026-01-28 14:28:56.610 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.3fgrvz25ex.pdb - null null -2026-01-28 14:28:56.611 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.611 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.611 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.611 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.611 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.615 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.615 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.615 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.615 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.615 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.615 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.616 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.616 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.616 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.616 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.616 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.618 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.618 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.619 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Auditing.3fgrvz25ex.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\o0dl3ao57v-{0}-3fgrvz25ex-3fgrvz25ex.gz' -2026-01-28 14:28:56.619 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.619 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.3fgrvz25ex.pdb - 200 29913 application/octet-stream 9.0292ms -2026-01-28 14:28:56.626 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.Contracts.ad5k0tpyib.pdb - null null -2026-01-28 14:28:56.626 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.627 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.627 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.627 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.627 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.632 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.632 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.632 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.632 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.632 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.632 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.632 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.633 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.633 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.633 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.633 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.635 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.635 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.636 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Auditing.Contracts.ad5k0tpyib.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wqxp9ykz4o-{0}-ad5k0tpyib-ad5k0tpyib.gz' -2026-01-28 14:28:56.636 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.636 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.Contracts.ad5k0tpyib.pdb - 200 14417 application/octet-stream 10.3072ms -2026-01-28 14:28:56.642 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AuditLogging.Domain.Shared.er7pf6ix9i.pdb - null null -2026-01-28 14:28:56.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.643 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.643 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.643 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.643 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.649 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.649 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.649 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.649 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.649 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.649 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.649 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.649 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.649 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.649 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.649 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.651 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.651 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.652 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AuditLogging.Domain.Shared.er7pf6ix9i.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5199po5zxq-{0}-er7pf6ix9i-er7pf6ix9i.gz' -2026-01-28 14:28:56.652 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.652 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AuditLogging.Domain.Shared.er7pf6ix9i.pdb - 200 16493 application/octet-stream 10.342ms -2026-01-28 14:28:56.659 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.c2wpqbl74n.pdb - null null -2026-01-28 14:28:56.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.660 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.660 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.660 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.660 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.665 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.665 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.665 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.665 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.665 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.665 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.665 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.665 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.665 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.665 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.665 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.667 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.668 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.669 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Authorization.c2wpqbl74n.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sb9kt3tht9-{0}-c2wpqbl74n-c2wpqbl74n.gz' -2026-01-28 14:28:56.669 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.669 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.c2wpqbl74n.pdb - 200 41330 application/octet-stream 9.9856ms -2026-01-28 14:28:56.675 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.Abstractions.njkrkpdqox.pdb - null null -2026-01-28 14:28:56.675 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.676 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.676 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.676 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.676 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.684 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.684 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.684 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.684 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.684 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.684 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.684 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.685 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.685 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.685 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.685 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.686 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.687 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.688 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Authorization.Abstractions.njkrkpdqox.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\09yc6y4n5e-{0}-njkrkpdqox-njkrkpdqox.gz' -2026-01-28 14:28:56.688 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.688 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.Abstractions.njkrkpdqox.pdb - 200 27181 application/octet-stream 13.8347ms -2026-01-28 14:28:56.695 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.gjl6v1jjym.pdb - null null -2026-01-28 14:28:56.696 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.696 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.696 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.696 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.696 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.703 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.703 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.703 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.703 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.703 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.703 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.703 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.703 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.704 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.704 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.704 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.705 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.706 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.707 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Autofac.gjl6v1jjym.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jpkrtenkjs-{0}-gjl6v1jjym-gjl6v1jjym.gz' -2026-01-28 14:28:56.707 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.707 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.gjl6v1jjym.pdb - 200 18693 application/octet-stream 11.6128ms -2026-01-28 14:28:56.715 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundJobs.Domain.Shared.5vpn00cswb.pdb - null null -2026-01-28 14:28:56.716 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.716 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.716 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.716 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.716 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.722 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.722 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.722 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.722 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.722 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.722 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.722 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.723 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.723 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.723 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.723 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.725 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.725 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.726 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BackgroundJobs.Domain.Shared.5vpn00cswb.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\htaazompkm-{0}-5vpn00cswb-5vpn00cswb.gz' -2026-01-28 14:28:56.726 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.727 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundJobs.Domain.Shared.5vpn00cswb.pdb - 200 13221 application/octet-stream 11.5276ms -2026-01-28 14:28:56.734 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundWorkers.huyj44uu0k.pdb - null null -2026-01-28 14:28:56.735 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.735 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.735 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.735 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.735 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.741 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.741 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.742 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.742 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.742 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.742 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.742 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.742 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.742 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.742 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.742 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.744 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.744 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.745 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BackgroundWorkers.huyj44uu0k.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ei0v3zqng-{0}-huyj44uu0k-huyj44uu0k.gz' -2026-01-28 14:28:56.745 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.745 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundWorkers.huyj44uu0k.pdb - 200 19469 application/octet-stream 11.2795ms -2026-01-28 14:28:56.752 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Caching.x1qmvuwbas.pdb - null null -2026-01-28 14:28:56.753 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.753 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.753 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.753 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.753 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.758 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.758 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.758 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.758 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.758 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.758 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.758 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.759 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.759 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.759 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.759 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.760 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.760 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.761 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Caching.x1qmvuwbas.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wokijgaifq-{0}-x1qmvuwbas-x1qmvuwbas.gz' -2026-01-28 14:28:56.762 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.762 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Caching.x1qmvuwbas.pdb - 200 37286 application/octet-stream 9.6139ms -2026-01-28 14:28:56.768 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Castle.Core.b02it10il0.pdb - null null -2026-01-28 14:28:56.769 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.769 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.769 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.769 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.769 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.774 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.774 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.774 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.774 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.774 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.774 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.774 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.775 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.775 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.775 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.775 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.776 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.777 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.777 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Castle.Core.b02it10il0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dte7v0ocsr-{0}-b02it10il0-b02it10il0.gz' -2026-01-28 14:28:56.777 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.778 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Castle.Core.b02it10il0.pdb - 200 15221 application/octet-stream 9.8032ms -2026-01-28 14:28:56.784 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Core.t1nnzj3qxb.pdb - null null -2026-01-28 14:28:56.785 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.785 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.785 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.785 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.785 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.790 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.790 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.790 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.790 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.790 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.791 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.791 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.791 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.791 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.791 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.791 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.793 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.793 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.795 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Core.t1nnzj3qxb.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c42x4ftr8l-{0}-t1nnzj3qxb-t1nnzj3qxb.gz' -2026-01-28 14:28:56.795 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.796 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Core.t1nnzj3qxb.pdb - 200 148177 application/octet-stream 11.2678ms -2026-01-28 14:28:56.802 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Data.9rv6w6qyku.pdb - null null -2026-01-28 14:28:56.802 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.803 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.803 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.803 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.803 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.808 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.808 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.808 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.808 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.808 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.808 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.808 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.808 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.808 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.809 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.809 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.810 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.811 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.812 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Data.9rv6w6qyku.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ze3wjukds-{0}-9rv6w6qyku-9rv6w6qyku.gz' -2026-01-28 14:28:56.812 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.812 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Data.9rv6w6qyku.pdb - 200 21821 application/octet-stream 10.3118ms -2026-01-28 14:28:56.819 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Ddd.Application.Contracts.giee71sla7.pdb - null null -2026-01-28 14:28:56.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.820 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.820 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.820 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.820 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.827 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.827 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.827 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.827 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.827 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.827 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.828 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.828 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.828 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.828 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.828 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.830 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.831 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.832 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Ddd.Application.Contracts.giee71sla7.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5aiafzhp1m-{0}-giee71sla7-giee71sla7.gz' -2026-01-28 14:28:56.832 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.832 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Ddd.Application.Contracts.giee71sla7.pdb - 200 23417 application/octet-stream 12.8991ms -2026-01-28 14:28:56.838 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.DistributedLocking.Abstractions.65nua6uxpe.pdb - null null -2026-01-28 14:28:56.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.839 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.839 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.839 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.839 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.845 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.845 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.845 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.845 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.845 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.845 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.845 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.845 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.845 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.845 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.845 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.847 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.847 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.848 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.DistributedLocking.Abstractions.65nua6uxpe.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\a8j0sb24cp-{0}-65nua6uxpe-65nua6uxpe.gz' -2026-01-28 14:28:56.848 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.848 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.DistributedLocking.Abstractions.65nua6uxpe.pdb - 200 14657 application/octet-stream 10.2136ms -2026-01-28 14:28:56.854 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.iceog8f4b1.pdb - null null -2026-01-28 14:28:56.855 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.855 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.856 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.856 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.856 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.863 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.863 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.863 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.863 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.863 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.863 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.863 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.863 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.863 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.863 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.863 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.865 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.866 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.867 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.EventBus.iceog8f4b1.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c7ycdiyl76-{0}-iceog8f4b1-iceog8f4b1.gz' -2026-01-28 14:28:56.867 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.867 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.iceog8f4b1.pdb - 200 37630 application/octet-stream 12.634ms -2026-01-28 14:28:56.877 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.Abstractions.xi5e4z12z9.pdb - null null -2026-01-28 14:28:56.877 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.877 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.878 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.878 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.878 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.883 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.883 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.883 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.883 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.883 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.883 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.883 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.884 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.884 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.884 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.884 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.886 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.886 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.887 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.EventBus.Abstractions.xi5e4z12z9.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\w7l86von3o-{0}-xi5e4z12z9-xi5e4z12z9.gz' -2026-01-28 14:28:56.887 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.888 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.Abstractions.xi5e4z12z9.pdb - 200 20237 application/octet-stream 10.9955ms -2026-01-28 14:28:56.895 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ExceptionHandling.25h2gy8c5p.pdb - null null -2026-01-28 14:28:56.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.895 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.896 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.896 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.896 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.901 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.901 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.901 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.901 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.901 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.901 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.901 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.902 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.902 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.902 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.902 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.904 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.904 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.905 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ExceptionHandling.25h2gy8c5p.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\m6s0vb39gb-{0}-25h2gy8c5p-25h2gy8c5p.gz' -2026-01-28 14:28:56.905 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.905 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ExceptionHandling.25h2gy8c5p.pdb - 200 20157 application/octet-stream 10.3139ms -2026-01-28 14:28:56.912 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Application.Contracts.0urd6kcrgp.pdb - null null -2026-01-28 14:28:56.912 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.913 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.913 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.913 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.913 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.918 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.918 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.918 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.918 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.918 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.918 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.918 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.919 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.919 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.919 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.919 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.921 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.921 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.922 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Application.Contracts.0urd6kcrgp.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0ru1qvb3x4-{0}-0urd6kcrgp-0urd6kcrgp.gz' -2026-01-28 14:28:56.922 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.923 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Application.Contracts.0urd6kcrgp.pdb - 200 16981 application/octet-stream 10.827ms -2026-01-28 14:28:56.929 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Domain.Shared.4mozmqu5fv.pdb - null null -2026-01-28 14:28:56.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.934 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.934 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.934 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.934 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.934 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.934 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.934 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.934 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.934 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.934 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.934 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.936 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.936 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.937 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Domain.Shared.4mozmqu5fv.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dnjx07a9gy-{0}-4mozmqu5fv-4mozmqu5fv.gz' -2026-01-28 14:28:56.937 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.937 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Domain.Shared.4mozmqu5fv.pdb - 200 18405 application/octet-stream 8.5007ms -2026-01-28 14:28:56.944 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.HttpApi.Client.3n7n0nm412.pdb - null null -2026-01-28 14:28:56.945 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.945 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.945 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.945 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.945 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.951 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.951 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.951 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.951 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.951 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.951 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.951 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.952 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.952 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.952 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.952 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.953 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.954 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.954 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.HttpApi.Client.3n7n0nm412.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xephdxvmqy-{0}-3n7n0nm412-3n7n0nm412.gz' -2026-01-28 14:28:56.954 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.955 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.HttpApi.Client.3n7n0nm412.pdb - 200 16661 application/octet-stream 10.742ms -2026-01-28 14:28:56.961 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Features.e0wztgo5kc.pdb - null null -2026-01-28 14:28:56.962 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.962 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.962 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.962 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.962 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.968 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.968 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.968 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.968 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.968 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.968 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.968 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.969 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.969 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.969 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.969 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.970 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.971 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.971 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Features.e0wztgo5kc.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lwwrm2rnuk-{0}-e0wztgo5kc-e0wztgo5kc.gz' -2026-01-28 14:28:56.972 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.972 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Features.e0wztgo5kc.pdb - 200 31093 application/octet-stream 10.6688ms -2026-01-28 14:28:56.978 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.GlobalFeatures.i3mx9avsa1.pdb - null null -2026-01-28 14:28:56.979 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.979 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.979 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.979 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.979 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.985 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.985 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.985 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.985 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.985 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.985 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.985 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.986 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.986 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.986 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:56.986 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:56.987 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:56.987 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.988 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.GlobalFeatures.i3mx9avsa1.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8hrz94lbbq-{0}-i3mx9avsa1-i3mx9avsa1.gz' -2026-01-28 14:28:56.988 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:56.988 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.GlobalFeatures.i3mx9avsa1.pdb - 200 20401 application/octet-stream 9.7975ms -2026-01-28 14:28:56.994 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Guids.trl9ec6i34.pdb - null null -2026-01-28 14:28:56.995 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.995 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:56.995 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:56.995 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:56.995 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:56.999 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:56.999 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:56.999 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:56.999 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:56.999 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:56.999 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:56.999 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.000 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.000 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.000 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.000 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.001 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.002 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.003 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Guids.trl9ec6i34.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0qqhgjay94-{0}-trl9ec6i34-trl9ec6i34.gz' -2026-01-28 14:28:57.003 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.003 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Guids.trl9ec6i34.pdb - 200 14061 application/octet-stream 9.0966ms -2026-01-28 14:28:57.010 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.e49tj9fcht.pdb - null null -2026-01-28 14:28:57.010 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.010 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.015 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.015 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.015 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.015 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.015 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.015 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.015 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.016 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.016 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.016 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.016 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.018 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.018 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.021 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.e49tj9fcht.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b3mu9af069-{0}-e49tj9fcht-e49tj9fcht.gz' -2026-01-28 14:28:57.021 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.021 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.e49tj9fcht.pdb - 200 31453 application/octet-stream 11.3777ms -2026-01-28 14:28:57.035 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Abstractions.k3c9afe7hi.pdb - null null -2026-01-28 14:28:57.035 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.035 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.036 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.036 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.036 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.042 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.042 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.042 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.042 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.042 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.042 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.042 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.043 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.043 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.043 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.043 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.046 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.046 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.047 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Abstractions.k3c9afe7hi.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j4y3kuv6se-{0}-k3c9afe7hi-k3c9afe7hi.gz' -2026-01-28 14:28:57.047 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.048 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Abstractions.k3c9afe7hi.pdb - 200 13525 application/octet-stream 13.2613ms -2026-01-28 14:28:57.059 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.yru01o8vkp.pdb - null null -2026-01-28 14:28:57.060 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.060 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.060 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.060 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.060 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.067 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.067 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.067 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.067 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.067 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.067 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.067 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.068 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.068 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.068 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.068 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.070 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.070 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.071 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.yru01o8vkp.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ttya30eyt8-{0}-yru01o8vkp-yru01o8vkp.gz' -2026-01-28 14:28:57.071 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.072 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.yru01o8vkp.pdb - 200 38918 application/octet-stream 12.9965ms -2026-01-28 14:28:57.080 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.3tflefedmx.pdb - null null -2026-01-28 14:28:57.081 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.081 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.081 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.081 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.081 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.088 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.088 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.088 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.088 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.088 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.088 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.088 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.088 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.088 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.088 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.088 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.090 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.091 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.092 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.IdentityModel.3tflefedmx.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\d3rz4s2afx-{0}-3tflefedmx-3tflefedmx.gz' -2026-01-28 14:28:57.092 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.092 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.3tflefedmx.pdb - 200 16433 application/octet-stream 12.383ms -2026-01-28 14:28:57.102 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Application.Contracts.csmzqgy4d0.pdb - null null -2026-01-28 14:28:57.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.103 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.103 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.103 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.103 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.109 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.109 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.109 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.109 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.109 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.109 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.109 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.109 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.109 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.109 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.109 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.111 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.111 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.112 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Application.Contracts.csmzqgy4d0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\h1go2ee35q-{0}-csmzqgy4d0-csmzqgy4d0.gz' -2026-01-28 14:28:57.112 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.113 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Application.Contracts.csmzqgy4d0.pdb - 200 20665 application/octet-stream 10.9291ms -2026-01-28 14:28:57.119 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Domain.Shared.earp2x5g6u.pdb - null null -2026-01-28 14:28:57.120 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.120 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.120 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.120 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.120 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.126 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.126 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.126 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.126 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.126 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.127 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.127 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.127 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.127 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.127 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.127 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.129 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.130 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.132 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Domain.Shared.earp2x5g6u.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wq3qylwiyp-{0}-earp2x5g6u-earp2x5g6u.gz' -2026-01-28 14:28:57.132 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.132 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Domain.Shared.earp2x5g6u.pdb - 200 23785 application/octet-stream 13.1804ms -2026-01-28 14:28:57.144 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.HttpApi.Client.4ey4wjeneg.pdb - null null -2026-01-28 14:28:57.144 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.145 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.145 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.145 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.145 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.151 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.151 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.151 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.151 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.151 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.151 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.151 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.152 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.152 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.152 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.152 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.153 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.154 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.155 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.HttpApi.Client.4ey4wjeneg.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0u48eqlsj4-{0}-4ey4wjeneg-4ey4wjeneg.gz' -2026-01-28 14:28:57.155 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.155 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.HttpApi.Client.4ey4wjeneg.pdb - 200 23337 application/octet-stream 11.5651ms -2026-01-28 14:28:57.163 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.IdentityModel.biic7mtw2y.pdb - null null -2026-01-28 14:28:57.163 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.163 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.163 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.163 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.163 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.170 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.170 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.170 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.170 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.170 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.170 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.170 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.170 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.170 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.170 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.170 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.172 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.172 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.173 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.IdentityModel.biic7mtw2y.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\poi5v0je1c-{0}-biic7mtw2y-biic7mtw2y.gz' -2026-01-28 14:28:57.173 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.173 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.IdentityModel.biic7mtw2y.pdb - 200 20817 application/octet-stream 10.8336ms -2026-01-28 14:28:57.179 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.wxbyyf07mz.pdb - null null -2026-01-28 14:28:57.180 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.180 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.180 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.180 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.180 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.185 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.185 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.185 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.185 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.185 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.185 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.185 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.186 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.186 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.186 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.186 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.188 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.188 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.189 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.wxbyyf07mz.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rrchruuh0t-{0}-wxbyyf07mz-wxbyyf07mz.gz' -2026-01-28 14:28:57.189 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.189 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.wxbyyf07mz.pdb - 200 13757 application/octet-stream 9.974ms -2026-01-28 14:28:57.194 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.Abstractions.b6z6t2mhzy.pdb - null null -2026-01-28 14:28:57.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.195 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.195 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.195 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.195 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.200 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.200 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.200 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.200 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.200 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.200 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.201 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.201 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.201 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.201 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.201 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.203 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.203 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.204 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.Abstractions.b6z6t2mhzy.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\u9w5uxptpu-{0}-b6z6t2mhzy-b6z6t2mhzy.gz' -2026-01-28 14:28:57.204 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.204 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.Abstractions.b6z6t2mhzy.pdb - 200 13249 application/octet-stream 9.9181ms -2026-01-28 14:28:57.210 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.SystemTextJson.rdlvucrzj7.pdb - null null -2026-01-28 14:28:57.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.211 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.211 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.211 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.211 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.216 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.216 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.216 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.216 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.216 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.216 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.216 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.216 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.216 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.216 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.216 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.217 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.218 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.219 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.SystemTextJson.rdlvucrzj7.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4rl2glc87e-{0}-rdlvucrzj7-rdlvucrzj7.gz' -2026-01-28 14:28:57.219 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.219 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.SystemTextJson.rdlvucrzj7.pdb - 200 21501 application/octet-stream 8.5551ms -2026-01-28 14:28:57.225 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.ellkzq2obz.pdb - null null -2026-01-28 14:28:57.225 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.226 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.226 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.226 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.226 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.231 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.231 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.231 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.231 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.231 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.231 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.231 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.232 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.232 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.232 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.232 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.234 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.234 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.235 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Localization.ellkzq2obz.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9jz0202bvx-{0}-ellkzq2obz-ellkzq2obz.gz' -2026-01-28 14:28:57.235 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.235 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.ellkzq2obz.pdb - 200 34682 application/octet-stream 10.6468ms -2026-01-28 14:28:57.255 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.Abstractions.e2czzeh6g0.pdb - null null -2026-01-28 14:28:57.256 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.256 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.257 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.257 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.257 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.263 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.263 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.263 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.263 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.263 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.263 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.263 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.263 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.263 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.263 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.263 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.265 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.265 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.266 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Localization.Abstractions.e2czzeh6g0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nql43ug6yv-{0}-e2czzeh6g0-e2czzeh6g0.gz' -2026-01-28 14:28:57.266 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.267 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.Abstractions.e2czzeh6g0.pdb - 200 16505 application/octet-stream 11.2066ms -2026-01-28 14:28:57.273 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Mapperly.xzmrwcbuer.pdb - null null -2026-01-28 14:28:57.274 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.274 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.274 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.274 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.274 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.280 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.280 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.280 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.280 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.280 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.280 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.280 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.281 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.281 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.281 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.281 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.283 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.284 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.285 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Mapperly.xzmrwcbuer.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ir90d0l0q4-{0}-xzmrwcbuer-xzmrwcbuer.gz' -2026-01-28 14:28:57.285 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.285 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Mapperly.xzmrwcbuer.pdb - 200 18489 application/octet-stream 12.0153ms -2026-01-28 14:28:57.292 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Minify.jd3swzgz81.pdb - null null -2026-01-28 14:28:57.293 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.293 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.293 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.294 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.294 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.302 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.302 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.302 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.302 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.302 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.302 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.302 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.303 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.303 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.303 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.303 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.305 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.306 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.307 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Minify.jd3swzgz81.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6nicogsytc-{0}-jd3swzgz81-jd3swzgz81.gz' -2026-01-28 14:28:57.307 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.308 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Minify.jd3swzgz81.pdb - 200 14637 application/octet-stream 15.3409ms -2026-01-28 14:28:57.317 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.m645p8frzn.pdb - null null -2026-01-28 14:28:57.317 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.318 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.318 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.318 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.318 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.326 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.326 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.327 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.327 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.327 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.327 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.327 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.327 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.327 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.328 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.328 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.330 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.330 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.332 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MultiTenancy.m645p8frzn.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xypgrhxtpa-{0}-m645p8frzn-m645p8frzn.gz' -2026-01-28 14:28:57.332 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.332 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.m645p8frzn.pdb - 200 21073 application/octet-stream 15.4584ms -2026-01-28 14:28:57.342 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.Abstractions.6usxju90tg.pdb - null null -2026-01-28 14:28:57.343 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.343 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.344 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.344 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.344 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.352 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.352 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.352 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.352 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.352 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.352 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.352 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.352 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.352 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.352 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.352 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.354 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.355 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.356 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MultiTenancy.Abstractions.6usxju90tg.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bwd6m19o6e-{0}-6usxju90tg-6usxju90tg.gz' -2026-01-28 14:28:57.356 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.356 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.Abstractions.6usxju90tg.pdb - 200 19661 application/octet-stream 14.3029ms -2026-01-28 14:28:57.364 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectExtending.vubnqxtt45.pdb - null null -2026-01-28 14:28:57.365 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.365 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.365 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.365 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.365 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.372 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.372 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.372 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.372 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.372 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.372 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.372 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.373 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.373 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.373 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.373 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.376 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.376 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.378 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ObjectExtending.vubnqxtt45.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wybocaa0up-{0}-vubnqxtt45-vubnqxtt45.gz' -2026-01-28 14:28:57.378 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.378 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectExtending.vubnqxtt45.pdb - 200 31977 application/octet-stream 14.0305ms -2026-01-28 14:28:57.387 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectMapping.5ggcg7w9e7.pdb - null null -2026-01-28 14:28:57.387 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.388 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.395 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.395 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.395 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.395 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.395 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.395 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.395 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.395 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.395 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.396 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.396 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.398 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.398 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.399 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ObjectMapping.5ggcg7w9e7.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fsnac4k4sd-{0}-5ggcg7w9e7-5ggcg7w9e7.gz' -2026-01-28 14:28:57.400 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.400 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectMapping.5ggcg7w9e7.pdb - 200 17133 application/octet-stream 13.3082ms -2026-01-28 14:28:57.408 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.OpenIddict.Domain.Shared.z584yb9x48.pdb - null null -2026-01-28 14:28:57.409 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.409 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.409 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.409 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.409 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.415 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.415 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.416 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.416 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.416 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.416 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.416 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.416 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.416 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.416 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.416 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.418 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.419 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.420 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.OpenIddict.Domain.Shared.z584yb9x48.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ofhohlcsdd-{0}-z584yb9x48-z584yb9x48.gz' -2026-01-28 14:28:57.420 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.421 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.OpenIddict.Domain.Shared.z584yb9x48.pdb - 200 17397 application/octet-stream 12.6791ms -2026-01-28 14:28:57.428 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Application.Contracts.yiquol1hlc.pdb - null null -2026-01-28 14:28:57.428 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.429 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.429 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.429 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.429 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.437 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.438 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.438 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.438 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.438 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.438 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.438 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.438 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.438 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.438 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.438 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.440 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.441 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.442 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Application.Contracts.yiquol1hlc.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0j5tpaf1fb-{0}-yiquol1hlc-yiquol1hlc.gz' -2026-01-28 14:28:57.442 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.442 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Application.Contracts.yiquol1hlc.pdb - 200 18373 application/octet-stream 14.5554ms -2026-01-28 14:28:57.450 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Domain.Shared.vduqctl6j9.pdb - null null -2026-01-28 14:28:57.451 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.451 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.451 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.451 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.451 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.458 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.458 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.458 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.458 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.458 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.458 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.458 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.459 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.459 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.459 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.459 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.461 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.461 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.462 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Domain.Shared.vduqctl6j9.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c9ti4wxngh-{0}-vduqctl6j9-vduqctl6j9.gz' -2026-01-28 14:28:57.462 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.463 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Domain.Shared.vduqctl6j9.pdb - 200 16501 application/octet-stream 12.72ms -2026-01-28 14:28:57.471 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.HttpApi.Client.3dsrqtlur0.pdb - null null -2026-01-28 14:28:57.471 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.472 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.472 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.472 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.472 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.479 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.479 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.479 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.479 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.479 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.479 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.479 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.479 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.479 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.479 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.479 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.481 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.482 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.484 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.HttpApi.Client.3dsrqtlur0.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7d7e24takc-{0}-3dsrqtlur0-3dsrqtlur0.gz' -2026-01-28 14:28:57.484 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.484 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.HttpApi.Client.3dsrqtlur0.pdb - 200 18361 application/octet-stream 13.2906ms -2026-01-28 14:28:57.491 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.RemoteServices.f0xptgiufw.pdb - null null -2026-01-28 14:28:57.492 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.492 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.493 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.493 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.493 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.500 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.500 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.500 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.500 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.500 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.500 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.500 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.501 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.501 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.501 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.501 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.503 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.504 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.505 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.RemoteServices.f0xptgiufw.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uib6a0l2w6-{0}-f0xptgiufw-f0xptgiufw.gz' -2026-01-28 14:28:57.505 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.505 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.RemoteServices.f0xptgiufw.pdb - 200 16053 application/octet-stream 14.1077ms -2026-01-28 14:28:57.515 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Security.zhp0sm48kb.pdb - null null -2026-01-28 14:28:57.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.516 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.516 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.516 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.516 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.525 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.525 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.525 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.525 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.525 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.525 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.525 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.526 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.526 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.526 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.526 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.530 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.531 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.532 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Security.zhp0sm48kb.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sx6n9iy4yj-{0}-zhp0sm48kb-zhp0sm48kb.gz' -2026-01-28 14:28:57.533 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.533 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Security.zhp0sm48kb.pdb - 200 29941 application/octet-stream 17.9829ms -2026-01-28 14:28:57.545 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Serialization.iselyci50i.pdb - null null -2026-01-28 14:28:57.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.546 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.546 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.546 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.546 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.554 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.554 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.554 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.554 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.554 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.554 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.554 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.555 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.555 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.555 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.555 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.558 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.559 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.560 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Serialization.iselyci50i.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ohz7m9cvuj-{0}-iselyci50i-iselyci50i.gz' -2026-01-28 14:28:57.561 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.561 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Serialization.iselyci50i.pdb - 200 13901 application/octet-stream 16.0573ms -2026-01-28 14:28:57.571 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Application.Contracts.oa8ze5tkwx.pdb - null null -2026-01-28 14:28:57.572 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.573 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.573 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.573 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.573 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.581 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.581 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.581 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.581 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.581 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.581 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.582 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.582 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.582 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.582 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.582 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.585 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.585 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.587 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Application.Contracts.oa8ze5tkwx.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n5hx9tj0h8-{0}-oa8ze5tkwx-oa8ze5tkwx.gz' -2026-01-28 14:28:57.587 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.587 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Application.Contracts.oa8ze5tkwx.pdb - 200 17249 application/octet-stream 15.5702ms -2026-01-28 14:28:57.596 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Domain.Shared.rb0zy7dgue.pdb - null null -2026-01-28 14:28:57.596 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.597 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.597 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.597 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.597 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.604 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.604 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.604 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.604 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.604 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.604 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.604 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.605 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.605 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.605 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.605 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.608 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.608 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.610 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Domain.Shared.rb0zy7dgue.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gpxmodrted-{0}-rb0zy7dgue-rb0zy7dgue.gz' -2026-01-28 14:28:57.610 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.610 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Domain.Shared.rb0zy7dgue.pdb - 200 15881 application/octet-stream 14.2764ms -2026-01-28 14:28:57.618 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.HttpApi.Client.219qgzx23p.pdb - null null -2026-01-28 14:28:57.619 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.620 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.620 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.620 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.620 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.631 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.631 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.631 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.631 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.631 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.631 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.631 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.632 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.632 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.632 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.632 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.635 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.636 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.638 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.HttpApi.Client.219qgzx23p.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vwkga7y8v6-{0}-219qgzx23p-219qgzx23p.gz' -2026-01-28 14:28:57.638 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.638 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.HttpApi.Client.219qgzx23p.pdb - 200 17273 application/octet-stream 19.8445ms -2026-01-28 14:28:57.648 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Settings.zg210hgmt5.pdb - null null -2026-01-28 14:28:57.648 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.649 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.649 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.649 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.649 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.657 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.657 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.657 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.658 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.658 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.658 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.658 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.659 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.659 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.659 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.659 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.662 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.662 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.664 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Settings.zg210hgmt5.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\69ib14dhz4-{0}-zg210hgmt5-zg210hgmt5.gz' -2026-01-28 14:28:57.664 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.665 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Settings.zg210hgmt5.pdb - 200 24709 application/octet-stream 16.9603ms -2026-01-28 14:28:57.694 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Application.Contracts.2kqwaqfq07.pdb - null null -2026-01-28 14:28:57.695 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.695 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.695 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.695 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.695 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.703 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.703 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.703 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.703 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.703 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.703 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.703 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.704 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.704 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.704 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.704 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.708 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.709 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.710 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Application.Contracts.2kqwaqfq07.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\usk06ilw8g-{0}-2kqwaqfq07-2kqwaqfq07.gz' -2026-01-28 14:28:57.710 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.711 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Application.Contracts.2kqwaqfq07.pdb - 200 16305 application/octet-stream 16.9359ms -2026-01-28 14:28:57.719 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Domain.Shared.8e6fpjlw3z.pdb - null null -2026-01-28 14:28:57.720 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.720 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.720 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.720 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.720 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.731 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.731 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.731 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.732 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.732 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.732 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.732 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.732 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.733 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.733 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.733 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.737 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.738 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.740 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Domain.Shared.8e6fpjlw3z.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\byh2ge6bdr-{0}-8e6fpjlw3z-8e6fpjlw3z.gz' -2026-01-28 14:28:57.740 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.740 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Domain.Shared.8e6fpjlw3z.pdb - 200 15609 application/octet-stream 21.4254ms -2026-01-28 14:28:57.754 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.HttpApi.Client.0ep6vejlyv.pdb - null null -2026-01-28 14:28:57.755 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.755 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.756 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.756 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.756 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.765 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.765 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.765 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.765 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.765 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.765 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.765 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.766 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.766 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.766 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.766 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.770 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.770 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.772 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.HttpApi.Client.0ep6vejlyv.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b6ncobn1go-{0}-0ep6vejlyv-0ep6vejlyv.gz' -2026-01-28 14:28:57.772 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.772 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.HttpApi.Client.0ep6vejlyv.pdb - 200 17253 application/octet-stream 17.6616ms -2026-01-28 14:28:57.781 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Threading.ltl7sj60qd.pdb - null null -2026-01-28 14:28:57.782 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.783 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.783 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.783 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.783 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.792 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.792 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.792 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.792 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.792 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.792 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.792 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.793 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.793 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.793 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.793 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.796 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.797 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.798 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Threading.ltl7sj60qd.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\m4kji2jf2d-{0}-ltl7sj60qd-ltl7sj60qd.gz' -2026-01-28 14:28:57.798 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.798 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Threading.ltl7sj60qd.pdb - 200 22745 application/octet-stream 16.9524ms -2026-01-28 14:28:57.806 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Timing.4ite7giifl.pdb - null null -2026-01-28 14:28:57.807 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.807 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.807 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.807 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.807 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.822 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.822 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.822 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.822 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.822 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.823 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.823 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.823 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.823 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.823 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.823 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.827 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.828 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.829 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Timing.4ite7giifl.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ku2s5mtpx-{0}-4ite7giifl-4ite7giifl.gz' -2026-01-28 14:28:57.829 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.830 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Timing.4ite7giifl.pdb - 200 17233 application/octet-stream 24.3106ms -2026-01-28 14:28:57.838 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.hbvsia4uct.pdb - null null -2026-01-28 14:28:57.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.839 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.840 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.840 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.840 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.846 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.846 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.847 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.847 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.847 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.847 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.847 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.847 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.847 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.847 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.847 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.850 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.850 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.852 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.UI.hbvsia4uct.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ojvava7kjz-{0}-hbvsia4uct-hbvsia4uct.gz' -2026-01-28 14:28:57.852 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.852 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.hbvsia4uct.pdb - 200 15269 application/octet-stream 14.2064ms -2026-01-28 14:28:57.860 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.Navigation.xd013kg4jh.pdb - null null -2026-01-28 14:28:57.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.861 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.861 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.862 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.862 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.872 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.872 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.872 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.872 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.872 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.872 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.872 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.873 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.873 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.873 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.873 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.876 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.876 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.877 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.UI.Navigation.xd013kg4jh.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\opi85np659-{0}-xd013kg4jh-xd013kg4jh.gz' -2026-01-28 14:28:57.878 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.878 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.Navigation.xd013kg4jh.pdb - 200 25665 application/octet-stream 17.4257ms -2026-01-28 14:28:57.886 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Uow.re76cfcetz.pdb - null null -2026-01-28 14:28:57.887 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.887 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.887 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.887 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.887 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.897 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.897 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.897 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.897 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.897 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.897 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.897 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.898 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.898 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.898 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.898 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.900 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.901 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.902 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Uow.re76cfcetz.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\37xxpsk7fy-{0}-re76cfcetz-re76cfcetz.gz' -2026-01-28 14:28:57.902 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.903 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Uow.re76cfcetz.pdb - 200 26921 application/octet-stream 16.8646ms -2026-01-28 14:28:57.912 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Abstractions.8nynefv6wf.pdb - null null -2026-01-28 14:28:57.913 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.913 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.913 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.913 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.913 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.923 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.923 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.923 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.923 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.923 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.923 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.923 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.923 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.924 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.924 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.924 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.926 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:57.927 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.928 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Users.Abstractions.8nynefv6wf.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\02tit97twy-{0}-8nynefv6wf-8nynefv6wf.gz' -2026-01-28 14:28:57.928 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:57.928 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Abstractions.8nynefv6wf.pdb - 200 16949 application/octet-stream 15.7444ms -2026-01-28 14:28:57.936 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Domain.Shared.l4ascx0wfo.pdb - null null -2026-01-28 14:28:57.936 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.937 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:57.937 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:57.937 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:57.937 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:57.946 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.946 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.946 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:57.946 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:57.946 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:57.946 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:57.946 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:57.946 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:57.946 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:57.947 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:57.947 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.055 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.056 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.057 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Users.Domain.Shared.l4ascx0wfo.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\i5q2ei5dis-{0}-l4ascx0wfo-l4ascx0wfo.gz' -2026-01-28 14:28:58.057 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.057 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Domain.Shared.l4ascx0wfo.pdb - 200 13285 application/octet-stream 121.2665ms -2026-01-28 14:28:58.063 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.ksfguea92v.pdb - null null -2026-01-28 14:28:58.064 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.064 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.064 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.064 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.064 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.071 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.071 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.071 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.071 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.071 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.071 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.071 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.072 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.072 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.072 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.072 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.073 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.074 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.075 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Validation.ksfguea92v.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wypl5pd007-{0}-ksfguea92v-ksfguea92v.gz' -2026-01-28 14:28:58.075 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.075 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.ksfguea92v.pdb - 200 24513 application/octet-stream 11.6591ms -2026-01-28 14:28:58.081 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.Abstractions.zjvjxeb6lj.pdb - null null -2026-01-28 14:28:58.082 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.082 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.082 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.082 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.082 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.088 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.088 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.088 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.088 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.088 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.088 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.088 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.088 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.088 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.088 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.088 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.090 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.090 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.091 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Validation.Abstractions.zjvjxeb6lj.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mb6vj9j06o-{0}-zjvjxeb6lj-zjvjxeb6lj.gz' -2026-01-28 14:28:58.091 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.092 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.Abstractions.zjvjxeb6lj.pdb - 200 14137 application/octet-stream 10.2576ms -2026-01-28 14:28:58.098 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.VirtualFileSystem.kcqfs0t7tk.pdb - null null -2026-01-28 14:28:58.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.104 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.104 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.104 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.104 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.104 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.104 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.104 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.105 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.105 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.105 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.105 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.107 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.107 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.109 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.VirtualFileSystem.kcqfs0t7tk.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9vnkhoiruq-{0}-kcqfs0t7tk-kcqfs0t7tk.gz' -2026-01-28 14:28:58.109 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.109 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.VirtualFileSystem.kcqfs0t7tk.pdb - 200 21449 application/octet-stream 11.2692ms -2026-01-28 14:28:58.116 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.6e5o4upkxs.pdb - null null -2026-01-28 14:28:58.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.116 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.117 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.124 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.124 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.124 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.124 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.124 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.124 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.124 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.125 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.125 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.125 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.125 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.127 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.127 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.141 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.6e5o4upkxs.pdb'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\21kkcfw31s-{0}-6e5o4upkxs-6e5o4upkxs.gz' -2026-01-28 14:28:58.141 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.142 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.6e5o4upkxs.pdb - 200 31945 application/octet-stream 25.8443ms -2026-01-28 14:28:58.149 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Autofac.le1wnuzdja.wasm - null null -2026-01-28 14:28:58.150 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.150 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.157 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.157 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.157 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.157 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.157 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.157 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.157 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.158 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.158 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.158 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.158 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.160 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.160 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.163 +03:00 [INF] Sending file. Request path: '_framework/Autofac.le1wnuzdja.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\le2bmj2hd0-{0}-le1wnuzdja-le1wnuzdja.gz' -2026-01-28 14:28:58.163 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.163 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Autofac.le1wnuzdja.wasm - 200 375661 application/wasm 14.518ms -2026-01-28 14:28:58.273 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Autofac.Extensions.DependencyInjection.slmisa3m0h.wasm - null null -2026-01-28 14:28:58.274 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.274 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.274 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.274 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.274 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.279 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.279 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.279 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.279 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.279 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.279 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.279 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.279 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.279 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.279 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.279 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.281 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.281 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.282 +03:00 [INF] Sending file. Request path: '_framework/Autofac.Extensions.DependencyInjection.slmisa3m0h.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4h1lb8bivh-{0}-slmisa3m0h-slmisa3m0h.gz' -2026-01-28 14:28:58.282 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.282 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Autofac.Extensions.DependencyInjection.slmisa3m0h.wasm - 200 28470 application/wasm 9.7227ms -2026-01-28 14:28:58.289 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Autofac.Extras.DynamicProxy.tlrq82knod.wasm - null null -2026-01-28 14:28:58.290 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.290 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.290 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.290 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.290 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.295 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.295 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.295 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.295 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.295 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.295 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.295 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.295 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.295 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.295 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.295 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.296 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.296 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.297 +03:00 [INF] Sending file. Request path: '_framework/Autofac.Extras.DynamicProxy.tlrq82knod.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5nm56h6008-{0}-tlrq82knod-tlrq82knod.gz' -2026-01-28 14:28:58.297 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.298 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Autofac.Extras.DynamicProxy.tlrq82knod.wasm - 200 20278 application/wasm 8.6802ms -2026-01-28 14:28:58.304 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Castle.Core.dr7ya1fwgr.wasm - null null -2026-01-28 14:28:58.305 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.305 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.305 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.305 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.305 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.311 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.311 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.311 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.311 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.311 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.311 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.311 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.311 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.311 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.311 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.311 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.313 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.313 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.316 +03:00 [INF] Sending file. Request path: '_framework/Castle.Core.dr7ya1fwgr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mehy9ugib8-{0}-dr7ya1fwgr-dr7ya1fwgr.gz' -2026-01-28 14:28:58.316 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.316 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Castle.Core.dr7ya1fwgr.wasm - 200 388461 application/wasm 12.8535ms -2026-01-28 14:28:58.323 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Castle.Core.AsyncInterceptor.phbi0db4mk.wasm - null null -2026-01-28 14:28:58.324 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.324 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.324 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.324 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.324 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.329 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.329 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.329 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.329 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.329 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.329 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.329 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.330 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.330 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.330 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.330 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.331 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.331 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.332 +03:00 [INF] Sending file. Request path: '_framework/Castle.Core.AsyncInterceptor.phbi0db4mk.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dnds4j2x25-{0}-phbi0db4mk-phbi0db4mk.gz' -2026-01-28 14:28:58.332 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.333 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Castle.Core.AsyncInterceptor.phbi0db4mk.wasm - 200 19254 application/wasm 9.8236ms -2026-01-28 14:28:58.338 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Duende.IdentityModel.w8uizqq8rq.wasm - null null -2026-01-28 14:28:58.339 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.339 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.339 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.339 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.339 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.345 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.345 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.345 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.345 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.345 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.345 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.345 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.345 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.345 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.345 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.345 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.347 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.347 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.349 +03:00 [INF] Sending file. Request path: '_framework/Duende.IdentityModel.w8uizqq8rq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2h3cgpc6ac-{0}-w8uizqq8rq-w8uizqq8rq.gz' -2026-01-28 14:28:58.349 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.350 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Duende.IdentityModel.w8uizqq8rq.wasm - 200 202580 application/wasm 11.3685ms -2026-01-28 14:28:58.356 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/JetBrains.Annotations.30nyqsrum5.wasm - null null -2026-01-28 14:28:58.357 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.357 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.357 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.357 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.357 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.363 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.363 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.363 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.363 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.363 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.363 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.363 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.363 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.363 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.363 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.363 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.365 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.366 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.367 +03:00 [INF] Sending file. Request path: '_framework/JetBrains.Annotations.30nyqsrum5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6sdzj3kgop-{0}-30nyqsrum5-30nyqsrum5.gz' -2026-01-28 14:28:58.367 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.367 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/JetBrains.Annotations.30nyqsrum5.wasm - 200 122181 application/wasm 11.9397ms -2026-01-28 14:28:58.373 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Authorization.f7yamg8acn.wasm - null null -2026-01-28 14:28:58.374 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.374 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.375 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.375 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.375 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.380 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.380 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.380 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.380 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.380 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.380 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.380 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.381 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.381 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.381 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.381 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.382 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.383 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.384 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Authorization.f7yamg8acn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\y8t8qzdrbk-{0}-f7yamg8acn-f7yamg8acn.gz' -2026-01-28 14:28:58.384 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.384 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Authorization.f7yamg8acn.wasm - 200 45371 application/wasm 10.7359ms -2026-01-28 14:28:58.390 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.i180xx2qq9.wasm - null null -2026-01-28 14:28:58.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.392 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.392 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.392 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.392 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.398 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.398 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.398 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.398 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.398 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.398 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.398 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.399 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.399 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.399 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.399 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.401 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.401 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.404 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.i180xx2qq9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\00mrq6s2ss-{0}-i180xx2qq9-i180xx2qq9.gz' -2026-01-28 14:28:58.404 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.404 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.i180xx2qq9.wasm - 200 388973 application/wasm 13.8015ms -2026-01-28 14:28:58.411 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Authorization.8nosel0t6a.wasm - null null -2026-01-28 14:28:58.412 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.412 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.412 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.412 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.412 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.418 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.418 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.418 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.418 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.418 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.418 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.418 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.419 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.419 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.419 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.419 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.420 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.421 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.422 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.Authorization.8nosel0t6a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b9vfzkzuzt-{0}-8nosel0t6a-8nosel0t6a.gz' -2026-01-28 14:28:58.422 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.422 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Authorization.8nosel0t6a.wasm - 200 23862 application/wasm 10.6016ms -2026-01-28 14:28:58.428 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Forms.au92kshad9.wasm - null null -2026-01-28 14:28:58.429 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.429 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.429 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.429 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.429 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.435 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.435 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.435 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.435 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.435 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.436 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.436 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.436 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.436 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.436 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.436 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.437 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.438 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.438 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.Forms.au92kshad9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0l9h2m1r4h-{0}-au92kshad9-au92kshad9.gz' -2026-01-28 14:28:58.439 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.439 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Forms.au92kshad9.wasm - 200 37691 application/wasm 10.7164ms -2026-01-28 14:28:58.444 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Web.gl9seasc22.wasm - null null -2026-01-28 14:28:58.445 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.445 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.446 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.446 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.446 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.452 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.452 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.452 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.452 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.452 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.452 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.452 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.453 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.453 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.453 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.453 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.455 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.456 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.459 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.Web.gl9seasc22.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fqoi4if8m2-{0}-gl9seasc22-gl9seasc22.gz' -2026-01-28 14:28:58.459 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.459 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.Web.gl9seasc22.wasm - 200 179023 application/wasm 14.8102ms -2026-01-28 14:28:58.470 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.9qaxkpf6y7.wasm - null null -2026-01-28 14:28:58.471 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.471 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.471 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.471 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.471 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.476 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.476 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.476 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.476 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.476 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.476 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.476 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.477 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.477 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.477 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.477 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.479 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.479 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.481 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.WebAssembly.9qaxkpf6y7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4vwfdqnp17-{0}-9qaxkpf6y7-9qaxkpf6y7.gz' -2026-01-28 14:28:58.481 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.482 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.9qaxkpf6y7.wasm - 200 155978 application/wasm 11.6768ms -2026-01-28 14:28:58.488 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.q8d1vzef3m.wasm - null null -2026-01-28 14:28:58.489 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.489 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.489 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.489 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.489 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.494 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.494 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.494 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.494 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.494 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.494 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.494 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.495 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.495 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.495 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.495 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.497 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.497 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.498 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.q8d1vzef3m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\19o2at4dip-{0}-q8d1vzef3m-q8d1vzef3m.gz' -2026-01-28 14:28:58.498 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.499 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.q8d1vzef3m.wasm - 200 96064 application/wasm 10.6648ms -2026-01-28 14:28:58.504 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Metadata.begmnasal1.wasm - null null -2026-01-28 14:28:58.505 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.505 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.505 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.505 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.505 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.510 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.510 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.511 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.511 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.511 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.511 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.511 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.511 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.511 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.511 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.511 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.513 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.513 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.514 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.Metadata.begmnasal1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\94aawuaijs-{0}-begmnasal1-begmnasal1.gz' -2026-01-28 14:28:58.514 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.514 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.Metadata.begmnasal1.wasm - 200 5942 application/wasm 10.3462ms -2026-01-28 14:28:58.520 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.WebUtilities.6cgd80d0to.wasm - null null -2026-01-28 14:28:58.521 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.521 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.522 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.522 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.522 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.527 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.527 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.527 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.527 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.528 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.528 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.528 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.528 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.528 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.528 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.528 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.530 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.530 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.531 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.AspNetCore.WebUtilities.6cgd80d0to.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sk2xioyf5m-{0}-6cgd80d0to-6cgd80d0to.gz' -2026-01-28 14:28:58.532 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.532 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.AspNetCore.WebUtilities.6cgd80d0to.wasm - 200 97088 application/wasm 11.3578ms -2026-01-28 14:28:58.537 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Bcl.AsyncInterfaces.a6wsrpgfw5.wasm - null null -2026-01-28 14:28:58.538 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.538 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.538 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.538 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.538 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.544 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.544 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.544 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.544 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.544 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.544 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.544 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.544 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.544 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.544 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.544 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.546 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.546 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.547 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Bcl.AsyncInterfaces.a6wsrpgfw5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\efezora84v-{0}-a6wsrpgfw5-a6wsrpgfw5.gz' -2026-01-28 14:28:58.547 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.548 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Bcl.AsyncInterfaces.a6wsrpgfw5.wasm - 200 9526 application/wasm 10.8799ms -2026-01-28 14:28:58.554 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.u1l3a5juxx.wasm - null null -2026-01-28 14:28:58.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.556 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.556 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.556 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.556 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.562 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.562 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.562 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.562 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.562 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.562 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.562 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.562 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.562 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.562 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.562 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.564 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.564 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.565 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.u1l3a5juxx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wloi09r5kq-{0}-u1l3a5juxx-u1l3a5juxx.gz' -2026-01-28 14:28:58.565 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.566 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.u1l3a5juxx.wasm - 200 56123 application/wasm 11.2055ms -2026-01-28 14:28:58.572 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Abstractions.vvlexwbaez.wasm - null null -2026-01-28 14:28:58.573 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.573 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.574 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.574 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.574 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.579 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.579 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.579 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.579 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.579 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.579 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.579 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.579 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.579 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.579 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.580 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.581 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.581 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.582 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Caching.Abstractions.vvlexwbaez.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b1crvod4be-{0}-vvlexwbaez-vvlexwbaez.gz' -2026-01-28 14:28:58.582 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.582 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Abstractions.vvlexwbaez.wasm - 200 27446 application/wasm 10.0137ms -2026-01-28 14:28:58.589 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Hybrid.u0s8zqcpy7.wasm - null null -2026-01-28 14:28:58.590 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.590 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.590 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.590 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.590 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.596 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.596 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.596 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.596 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.596 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.596 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.596 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.597 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.597 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.597 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.597 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.598 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.599 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.600 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Caching.Hybrid.u0s8zqcpy7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\t7frkttiob-{0}-u0s8zqcpy7-u0s8zqcpy7.gz' -2026-01-28 14:28:58.600 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.600 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Hybrid.u0s8zqcpy7.wasm - 200 85824 application/wasm 11.4786ms -2026-01-28 14:28:58.607 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Memory.6z3ajjz4f1.wasm - null null -2026-01-28 14:28:58.608 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.608 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.608 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.608 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.608 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.614 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.614 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.614 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.614 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.614 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.614 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.614 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.614 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.614 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.614 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.614 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.616 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.616 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.617 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Caching.Memory.6z3ajjz4f1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6gi3ua4ioz-{0}-6z3ajjz4f1-6z3ajjz4f1.gz' -2026-01-28 14:28:58.617 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.618 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Caching.Memory.6z3ajjz4f1.wasm - 200 37691 application/wasm 10.7999ms -2026-01-28 14:28:58.624 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.x8wh4xd62i.wasm - null null -2026-01-28 14:28:58.625 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.625 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.625 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.625 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.625 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.630 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.630 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.630 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.630 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.630 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.630 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.630 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.631 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.631 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.631 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.631 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.633 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.633 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.634 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.x8wh4xd62i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\h1kacpcskm-{0}-x8wh4xd62i-x8wh4xd62i.gz' -2026-01-28 14:28:58.634 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.634 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.x8wh4xd62i.wasm - 200 34619 application/wasm 10.3857ms -2026-01-28 14:28:58.640 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Abstractions.sgloa63pwd.wasm - null null -2026-01-28 14:28:58.641 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.642 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.642 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.642 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.642 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.647 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.647 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.647 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.647 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.647 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.647 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.647 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.648 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.648 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.648 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.648 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.649 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.650 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.651 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.Abstractions.sgloa63pwd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\zxi0ykhieh-{0}-sgloa63pwd-sgloa63pwd.gz' -2026-01-28 14:28:58.651 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.651 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Abstractions.sgloa63pwd.wasm - 200 18230 application/wasm 10.7164ms -2026-01-28 14:28:58.658 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Binder.3jwzw3qxt4.wasm - null null -2026-01-28 14:28:58.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.659 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.659 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.659 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.659 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.664 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.664 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.664 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.664 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.664 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.664 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.664 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.665 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.665 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.665 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.665 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.667 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.667 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.668 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.Binder.3jwzw3qxt4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ko014cnbr7-{0}-3jwzw3qxt4-3jwzw3qxt4.gz' -2026-01-28 14:28:58.668 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.668 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Binder.3jwzw3qxt4.wasm - 200 33083 application/wasm 10.7824ms -2026-01-28 14:28:58.674 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.CommandLine.z1qo7xx5ru.wasm - null null -2026-01-28 14:28:58.675 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.675 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.676 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.676 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.676 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.680 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.680 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.680 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.680 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.680 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.680 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.680 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.681 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.681 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.681 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.681 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.683 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.683 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.684 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.CommandLine.z1qo7xx5ru.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0qcnzm5lmb-{0}-z1qo7xx5ru-z1qo7xx5ru.gz' -2026-01-28 14:28:58.684 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.684 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.CommandLine.z1qo7xx5ru.wasm - 200 15158 application/wasm 9.4036ms -2026-01-28 14:28:58.689 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.EnvironmentVariables.3gcxsk3zbu.wasm - null null -2026-01-28 14:28:58.690 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.690 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.690 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.690 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.690 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.694 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.695 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.695 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.695 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.695 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.695 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.695 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.695 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.695 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.695 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.695 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.696 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.696 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.697 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.EnvironmentVariables.3gcxsk3zbu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\urvjz3sczp-{0}-3gcxsk3zbu-3gcxsk3zbu.gz' -2026-01-28 14:28:58.697 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.697 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.EnvironmentVariables.3gcxsk3zbu.wasm - 200 11574 application/wasm 8.6466ms -2026-01-28 14:28:58.703 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.FileExtensions.phra2kqghi.wasm - null null -2026-01-28 14:28:58.704 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.704 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.704 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.704 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.704 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.708 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.708 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.708 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.708 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.708 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.708 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.708 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.709 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.709 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.709 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.709 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.710 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.710 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.711 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.FileExtensions.phra2kqghi.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6yhtz7i0uq-{0}-phra2kqghi-phra2kqghi.gz' -2026-01-28 14:28:58.711 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.711 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.FileExtensions.phra2kqghi.wasm - 200 18230 application/wasm 8.0304ms -2026-01-28 14:28:58.717 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Json.9udmvturlf.wasm - null null -2026-01-28 14:28:58.718 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.718 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.718 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.718 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.718 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.724 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.724 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.724 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.724 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.724 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.724 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.724 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.725 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.725 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.725 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.725 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.726 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.727 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.728 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.Json.9udmvturlf.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jn8nx9ltxb-{0}-9udmvturlf-9udmvturlf.gz' -2026-01-28 14:28:58.728 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.728 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.Json.9udmvturlf.wasm - 200 17718 application/wasm 10.8437ms -2026-01-28 14:28:58.735 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.UserSecrets.86yue58ssu.wasm - null null -2026-01-28 14:28:58.735 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.736 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.736 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.736 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.736 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.741 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.742 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.742 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.742 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.742 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.742 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.742 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.742 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.742 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.742 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.742 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.744 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.745 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.746 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Configuration.UserSecrets.86yue58ssu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wlq0vssna7-{0}-86yue58ssu-86yue58ssu.gz' -2026-01-28 14:28:58.746 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.746 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Configuration.UserSecrets.86yue58ssu.wasm - 200 16182 application/wasm 11.6249ms -2026-01-28 14:28:58.752 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.92ulj88j6e.wasm - null null -2026-01-28 14:28:58.753 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.753 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.753 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.753 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.753 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.759 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.759 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.759 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.759 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.759 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.759 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.759 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.759 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.759 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.759 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.759 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.761 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.761 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.763 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.DependencyInjection.92ulj88j6e.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ap6jjl5cdc-{0}-92ulj88j6e-92ulj88j6e.gz' -2026-01-28 14:28:58.763 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.763 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.92ulj88j6e.wasm - 200 85312 application/wasm 11.5057ms -2026-01-28 14:28:58.771 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.qzg75988t9.wasm - null null -2026-01-28 14:28:58.772 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.772 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.772 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.772 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.772 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.779 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.779 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.779 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.779 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.779 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.779 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.780 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.780 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.780 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.780 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.780 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.782 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.783 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.784 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.DependencyInjection.Abstractions.qzg75988t9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2yinc5vl42-{0}-qzg75988t9-qzg75988t9.gz' -2026-01-28 14:28:58.784 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.784 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.qzg75988t9.wasm - 200 55611 application/wasm 13.6363ms -2026-01-28 14:28:58.791 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.tgzcelqpkb.wasm - null null -2026-01-28 14:28:58.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.793 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.793 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.793 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.793 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.799 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.799 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.799 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.799 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.799 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.799 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.799 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.799 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.799 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.799 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.799 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.801 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.801 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.802 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Diagnostics.tgzcelqpkb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\q77258df46-{0}-tgzcelqpkb-tgzcelqpkb.gz' -2026-01-28 14:28:58.803 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.803 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.tgzcelqpkb.wasm - 200 25910 application/wasm 11.5207ms -2026-01-28 14:28:58.809 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.Abstractions.hq61ozpvxa.wasm - null null -2026-01-28 14:28:58.810 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.810 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.811 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.811 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.811 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.816 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.816 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.816 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.816 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.816 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.816 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.816 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.817 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.817 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.817 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.817 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.819 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.819 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.820 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Diagnostics.Abstractions.hq61ozpvxa.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\hlwf1zkx1t-{0}-hq61ozpvxa-hq61ozpvxa.gz' -2026-01-28 14:28:58.820 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.820 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Diagnostics.Abstractions.hq61ozpvxa.wasm - 200 20790 application/wasm 10.7959ms -2026-01-28 14:28:58.826 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Abstractions.wbhloeatw3.wasm - null null -2026-01-28 14:28:58.827 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.827 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.827 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.827 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.827 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.833 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.833 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.833 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.833 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.833 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.833 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.833 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.833 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.833 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.833 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.833 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.836 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.836 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.837 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Abstractions.wbhloeatw3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\hwi4k0i86u-{0}-wbhloeatw3-wbhloeatw3.gz' -2026-01-28 14:28:58.837 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.837 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Abstractions.wbhloeatw3.wasm - 200 13110 application/wasm 11.5227ms -2026-01-28 14:28:58.843 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Composite.z8bwpsdnc0.wasm - null null -2026-01-28 14:28:58.844 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.844 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.844 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.844 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.844 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.848 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.848 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.849 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.849 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.849 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.849 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.849 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.849 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.849 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.849 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.849 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.850 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.851 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.851 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Composite.z8bwpsdnc0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9or5ity2wj-{0}-z8bwpsdnc0-z8bwpsdnc0.gz' -2026-01-28 14:28:58.851 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.852 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Composite.z8bwpsdnc0.wasm - 200 8502 application/wasm 8.6702ms -2026-01-28 14:28:58.858 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Embedded.ptqvg1m34t.wasm - null null -2026-01-28 14:28:58.859 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.859 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.859 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.859 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.859 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.865 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.865 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.865 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.865 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.865 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.865 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.865 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.865 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.865 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.865 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.865 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.867 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.867 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.868 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Embedded.ptqvg1m34t.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gud3t43je0-{0}-ptqvg1m34t-ptqvg1m34t.gz' -2026-01-28 14:28:58.868 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.869 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Embedded.ptqvg1m34t.wasm - 200 23350 application/wasm 10.7956ms -2026-01-28 14:28:58.876 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Physical.y5k56zvg10.wasm - null null -2026-01-28 14:28:58.877 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.877 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.877 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.877 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.877 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.883 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.883 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.884 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.884 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.884 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.884 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.884 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.884 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.884 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.884 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.884 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.886 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.886 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.888 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileProviders.Physical.y5k56zvg10.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\02df65jx0j-{0}-y5k56zvg10-y5k56zvg10.gz' -2026-01-28 14:28:58.888 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.888 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileProviders.Physical.y5k56zvg10.wasm - 200 35131 application/wasm 11.9613ms -2026-01-28 14:28:58.894 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileSystemGlobbing.4cqycihgg0.wasm - null null -2026-01-28 14:28:58.895 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.895 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.895 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.895 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.895 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.901 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.901 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.901 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.901 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.901 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.901 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.901 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.901 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.901 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.901 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.901 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.903 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.903 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.904 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.FileSystemGlobbing.4cqycihgg0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4328gy858z-{0}-4cqycihgg0-4cqycihgg0.gz' -2026-01-28 14:28:58.904 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.905 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.FileSystemGlobbing.4cqycihgg0.wasm - 200 37691 application/wasm 10.5623ms -2026-01-28 14:28:58.912 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Hosting.Abstractions.5v78u2d057.wasm - null null -2026-01-28 14:28:58.913 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.914 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.914 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.914 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.914 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.920 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.920 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.920 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.920 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.920 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.920 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.920 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.920 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.920 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.920 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.920 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.922 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.923 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.924 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Hosting.Abstractions.5v78u2d057.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0bjpxbow7h-{0}-5v78u2d057-5v78u2d057.gz' -2026-01-28 14:28:58.924 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.924 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Hosting.Abstractions.5v78u2d057.wasm - 200 43835 application/wasm 11.5924ms -2026-01-28 14:28:58.930 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Http.apre2arxjd.wasm - null null -2026-01-28 14:28:58.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.931 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.931 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.931 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.931 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.938 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.938 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.938 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.938 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.938 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.938 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.938 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.939 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.939 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.939 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.939 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.942 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.942 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.943 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Http.apre2arxjd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ocorhjn9ks-{0}-apre2arxjd-apre2arxjd.gz' -2026-01-28 14:28:58.943 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.944 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Http.apre2arxjd.wasm - 200 82752 application/wasm 13.4033ms -2026-01-28 14:28:58.951 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.mml9tf1r1w.wasm - null null -2026-01-28 14:28:58.952 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.952 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.952 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.952 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.952 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.958 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.958 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.958 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.958 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.958 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.958 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.958 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.958 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.958 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.958 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.958 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.960 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.961 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.962 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Localization.mml9tf1r1w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\uqdbs11skp-{0}-mml9tf1r1w-mml9tf1r1w.gz' -2026-01-28 14:28:58.962 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.962 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.mml9tf1r1w.wasm - 200 21302 application/wasm 11.3379ms -2026-01-28 14:28:58.968 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.Abstractions.80p7fyumuw.wasm - null null -2026-01-28 14:28:58.969 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.969 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.970 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.970 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.970 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.976 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.976 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.976 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.976 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.976 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.976 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.976 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.977 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.977 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.977 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.977 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.979 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.979 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.980 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Localization.Abstractions.80p7fyumuw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j8jaks8ba9-{0}-80p7fyumuw-80p7fyumuw.gz' -2026-01-28 14:28:58.980 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.980 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Localization.Abstractions.80p7fyumuw.wasm - 200 9014 application/wasm 11.9245ms -2026-01-28 14:28:58.986 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.05o184w673.wasm - null null -2026-01-28 14:28:58.987 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.987 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:58.987 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:58.987 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:58.987 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:58.993 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.993 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.993 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:58.993 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:58.993 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:58.993 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:58.993 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.994 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:58.994 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:58.994 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:58.994 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:58.996 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:58.997 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.998 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Logging.05o184w673.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1cbwctdp50-{0}-05o184w673-05o184w673.gz' -2026-01-28 14:28:58.998 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:58.998 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.05o184w673.wasm - 200 41275 application/wasm 12.1239ms -2026-01-28 14:28:59.004 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.Abstractions.hwa38jh90v.wasm - null null -2026-01-28 14:28:59.005 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.006 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.006 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.006 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.006 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.012 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.012 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.012 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.012 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.012 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.012 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.012 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.012 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.012 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.012 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.012 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.014 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.014 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.016 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Logging.Abstractions.hwa38jh90v.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\zatd8kwe6z-{0}-hwa38jh90v-hwa38jh90v.gz' -2026-01-28 14:28:59.016 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.016 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Logging.Abstractions.hwa38jh90v.wasm - 200 56635 application/wasm 11.4619ms -2026-01-28 14:28:59.022 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.zsk78mkyl2.wasm - null null -2026-01-28 14:28:59.023 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.023 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.023 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.023 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.023 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.029 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.029 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.029 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.029 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.029 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.029 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.029 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.030 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.030 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.030 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.030 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.031 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.032 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.033 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Options.zsk78mkyl2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nx5gv127wz-{0}-zsk78mkyl2-zsk78mkyl2.gz' -2026-01-28 14:28:59.033 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.033 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.zsk78mkyl2.wasm - 200 55099 application/wasm 11.2175ms -2026-01-28 14:28:59.039 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.ConfigurationExtensions.qltknulxmy.wasm - null null -2026-01-28 14:28:59.040 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.040 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.040 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.040 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.040 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.046 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.046 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.046 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.046 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.047 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.047 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.047 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.047 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.047 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.047 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.047 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.049 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.049 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.050 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Options.ConfigurationExtensions.qltknulxmy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\eycsz92dw7-{0}-qltknulxmy-qltknulxmy.gz' -2026-01-28 14:28:59.050 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.050 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Options.ConfigurationExtensions.qltknulxmy.wasm - 200 11574 application/wasm 10.9506ms -2026-01-28 14:28:59.057 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Primitives.51b5spqlwz.wasm - null null -2026-01-28 14:28:59.058 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.058 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.065 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.065 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.065 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.065 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.065 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.065 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.065 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.066 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.066 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.066 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.066 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.068 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.068 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.069 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Primitives.51b5spqlwz.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dtxltxy254-{0}-51b5spqlwz-51b5spqlwz.gz' -2026-01-28 14:28:59.069 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.070 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Primitives.51b5spqlwz.wasm - 200 34619 application/wasm 12.9556ms -2026-01-28 14:28:59.077 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Validation.vibclmvzbq.wasm - null null -2026-01-28 14:28:59.078 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.078 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.079 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.079 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.079 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.085 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.085 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.085 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.085 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.085 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.085 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.085 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.086 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.086 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.086 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.086 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.088 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.088 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.090 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Extensions.Validation.vibclmvzbq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wxjaiwsnh4-{0}-vibclmvzbq-vibclmvzbq.gz' -2026-01-28 14:28:59.090 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.090 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Extensions.Validation.vibclmvzbq.wasm - 200 33083 application/wasm 13.0292ms -2026-01-28 14:28:59.096 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Abstractions.fm59ec96sb.wasm - null null -2026-01-28 14:28:59.097 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.097 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.097 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.097 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.097 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.103 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.103 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.103 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.103 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.103 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.103 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.103 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.104 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.104 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.104 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.104 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.105 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.105 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.106 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.Abstractions.fm59ec96sb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pw25ps676d-{0}-fm59ec96sb-fm59ec96sb.gz' -2026-01-28 14:28:59.106 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.106 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Abstractions.fm59ec96sb.wasm - 200 9014 application/wasm 10.5292ms -2026-01-28 14:28:59.113 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.JsonWebTokens.d706uu8nnf.wasm - null null -2026-01-28 14:28:59.114 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.114 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.120 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.120 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.120 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.120 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.120 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.120 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.120 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.121 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.121 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.121 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.121 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.123 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.123 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.125 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.JsonWebTokens.d706uu8nnf.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0ly9bxx2uc-{0}-d706uu8nnf-d706uu8nnf.gz' -2026-01-28 14:28:59.125 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.126 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.JsonWebTokens.d706uu8nnf.wasm - 200 161610 application/wasm 12.1911ms -2026-01-28 14:28:59.132 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Logging.lzotatrep2.wasm - null null -2026-01-28 14:28:59.133 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.133 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.134 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.134 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.134 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.140 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.141 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.141 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.141 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.141 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.141 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.141 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.141 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.141 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.141 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.141 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.143 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.144 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.145 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.Logging.lzotatrep2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\az540fuh9f-{0}-lzotatrep2-lzotatrep2.gz' -2026-01-28 14:28:59.145 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.145 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Logging.lzotatrep2.wasm - 200 26422 application/wasm 12.7089ms -2026-01-28 14:28:59.153 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Tokens.zeqz59uvkx.wasm - null null -2026-01-28 14:28:59.154 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.154 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.154 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.154 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.154 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.161 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.161 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.161 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.161 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.161 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.161 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.161 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.162 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.162 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.162 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.162 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.164 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.164 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.168 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.IdentityModel.Tokens.zeqz59uvkx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pe5jdgvqrx-{0}-zeqz59uvkx-zeqz59uvkx.gz' -2026-01-28 14:28:59.168 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.168 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.IdentityModel.Tokens.zeqz59uvkx.wasm - 200 374125 application/wasm 15.0717ms -2026-01-28 14:28:59.175 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.kksrzpvoig.wasm - null null -2026-01-28 14:28:59.176 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.176 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.176 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.176 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.176 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.183 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.183 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.183 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.183 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.183 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.183 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.183 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.183 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.183 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.183 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.183 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.185 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.185 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.186 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.JSInterop.kksrzpvoig.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fulott20a4-{0}-kksrzpvoig-kksrzpvoig.gz' -2026-01-28 14:28:59.187 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.187 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.kksrzpvoig.wasm - 200 64827 application/wasm 11.8479ms -2026-01-28 14:28:59.192 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.WebAssembly.9udcqny0aq.wasm - null null -2026-01-28 14:28:59.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.194 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.198 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.198 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.198 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.198 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.198 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.198 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.198 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.199 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.199 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.199 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.199 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.200 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.201 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.202 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.JSInterop.WebAssembly.9udcqny0aq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9m4wklcqem-{0}-9udcqny0aq-9udcqny0aq.gz' -2026-01-28 14:28:59.202 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.202 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.JSInterop.WebAssembly.9udcqny0aq.wasm - 200 14646 application/wasm 9.8828ms -2026-01-28 14:28:59.209 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Net.Http.Headers.dqwvlhacs5.wasm - null null -2026-01-28 14:28:59.209 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.210 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.210 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.210 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.210 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.216 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.216 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.216 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.216 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.216 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.216 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.216 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.216 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.216 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.216 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.217 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.218 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.218 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.220 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Net.Http.Headers.dqwvlhacs5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\awoyestlxb-{0}-dqwvlhacs5-dqwvlhacs5.gz' -2026-01-28 14:28:59.220 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.220 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Net.Http.Headers.dqwvlhacs5.wasm - 200 75072 application/wasm 11.3792ms -2026-01-28 14:28:59.227 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MudBlazor.0eq8xpu5ec.wasm - null null -2026-01-28 14:28:59.228 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.228 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.233 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.233 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.233 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.233 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.233 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.233 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.233 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.234 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.234 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.234 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.234 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.235 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.236 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.341 +03:00 [INF] Sending file. Request path: '_framework/MudBlazor.0eq8xpu5ec.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c8dbqtqx23-{0}-0eq8xpu5ec-0eq8xpu5ec.gz' -2026-01-28 14:28:59.341 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.341 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MudBlazor.0eq8xpu5ec.wasm - 200 9246396 application/wasm 113.9703ms -2026-01-28 14:28:59.381 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Context.y5n2fi0oo0.wasm - null null -2026-01-28 14:28:59.383 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.383 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.383 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.383 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.383 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.392 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.392 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.392 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.392 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.392 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.392 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.392 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.393 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.393 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.393 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.393 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.395 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.395 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.396 +03:00 [INF] Sending file. Request path: '_framework/Nito.AsyncEx.Context.y5n2fi0oo0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6cfa8ozy3y-{0}-y5n2fi0oo0-y5n2fi0oo0.gz' -2026-01-28 14:28:59.397 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.397 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Context.y5n2fi0oo0.wasm - 200 13622 application/wasm 15.3272ms -2026-01-28 14:28:59.425 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Tasks.pmw3wnkbvb.wasm - null null -2026-01-28 14:28:59.426 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.427 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.427 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.427 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.427 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.432 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.432 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.432 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.432 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.432 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.432 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.432 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.432 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.432 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.432 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.432 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.434 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.435 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.436 +03:00 [INF] Sending file. Request path: '_framework/Nito.AsyncEx.Tasks.pmw3wnkbvb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pw3yczwgxh-{0}-pmw3wnkbvb-pmw3wnkbvb.gz' -2026-01-28 14:28:59.436 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.436 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Nito.AsyncEx.Tasks.pmw3wnkbvb.wasm - 200 35643 application/wasm 10.6711ms -2026-01-28 14:28:59.443 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Nito.Disposables.86nxvj1yiv.wasm - null null -2026-01-28 14:28:59.444 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.444 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.444 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.444 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.444 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.451 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.451 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.452 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.452 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.452 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.452 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.452 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.452 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.452 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.452 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.452 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.454 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.454 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.455 +03:00 [INF] Sending file. Request path: '_framework/Nito.Disposables.86nxvj1yiv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4m6819m7ll-{0}-86nxvj1yiv-86nxvj1yiv.gz' -2026-01-28 14:28:59.455 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.455 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Nito.Disposables.86nxvj1yiv.wasm - 200 22326 application/wasm 12.679ms -2026-01-28 14:28:59.462 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/NUglify.p1yxori32v.wasm - null null -2026-01-28 14:28:59.464 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.464 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.464 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.464 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.464 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.472 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.472 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.472 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.472 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.472 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.472 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.472 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.473 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.473 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.473 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.473 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.474 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.475 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.479 +03:00 [INF] Sending file. Request path: '_framework/NUglify.p1yxori32v.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2fi9048uqb-{0}-p1yxori32v-p1yxori32v.gz' -2026-01-28 14:28:59.479 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.479 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/NUglify.p1yxori32v.wasm - 200 637333 application/wasm 16.8461ms -2026-01-28 14:28:59.504 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/OpenIddict.Abstractions.xc5u4bcwuv.wasm - null null -2026-01-28 14:28:59.505 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.505 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.505 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.505 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.505 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.512 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.512 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.512 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.512 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.512 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.512 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.512 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.512 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.512 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.512 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.512 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.514 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.515 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.518 +03:00 [INF] Sending file. Request path: '_framework/OpenIddict.Abstractions.xc5u4bcwuv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\46s7kaf9kj-{0}-xc5u4bcwuv-xc5u4bcwuv.gz' -2026-01-28 14:28:59.518 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.518 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/OpenIddict.Abstractions.xc5u4bcwuv.wasm - 200 380269 application/wasm 14.1903ms -2026-01-28 14:28:59.526 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Riok.Mapperly.Abstractions.bgo5wowxjs.wasm - null null -2026-01-28 14:28:59.527 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.527 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.527 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.527 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.527 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.533 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.533 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.533 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.533 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.533 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.533 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.533 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.534 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.534 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.534 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.534 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.536 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.536 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.537 +03:00 [INF] Sending file. Request path: '_framework/Riok.Mapperly.Abstractions.bgo5wowxjs.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3d5qji182j-{0}-bgo5wowxjs-bgo5wowxjs.gz' -2026-01-28 14:28:59.537 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.537 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Riok.Mapperly.Abstractions.bgo5wowxjs.wasm - 200 33083 application/wasm 11.2649ms -2026-01-28 14:28:59.544 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.CodeDom.fbxkfrockh.wasm - null null -2026-01-28 14:28:59.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.545 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.545 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.546 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.546 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.552 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.552 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.552 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.552 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.553 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.553 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.553 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.553 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.553 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.553 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.553 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.555 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.556 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.558 +03:00 [INF] Sending file. Request path: '_framework/System.CodeDom.fbxkfrockh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j53ve7gv1w-{0}-fbxkfrockh-fbxkfrockh.gz' -2026-01-28 14:28:59.558 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.558 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.CodeDom.fbxkfrockh.wasm - 200 174415 application/wasm 14.2159ms -2026-01-28 14:28:59.565 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.EventLog.x6zrz89c6o.wasm - null null -2026-01-28 14:28:59.566 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.566 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.566 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.566 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.566 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.571 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.571 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.571 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.571 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.571 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.571 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.571 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.572 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.572 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.572 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.572 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.573 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.574 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.575 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.EventLog.x6zrz89c6o.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j2puov35am-{0}-x6zrz89c6o-x6zrz89c6o.gz' -2026-01-28 14:28:59.575 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.575 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.EventLog.x6zrz89c6o.wasm - 200 41787 application/wasm 10.0821ms -2026-01-28 14:28:59.582 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IdentityModel.Tokens.Jwt.5tt1rwyygx.wasm - null null -2026-01-28 14:28:59.583 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.583 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.584 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.584 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.584 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.589 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.589 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.590 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.590 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.590 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.590 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.590 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.590 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.590 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.590 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.590 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.592 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.593 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.594 +03:00 [INF] Sending file. Request path: '_framework/System.IdentityModel.Tokens.Jwt.5tt1rwyygx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tr0pha0myb-{0}-5tt1rwyygx-5tt1rwyygx.gz' -2026-01-28 14:28:59.594 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.595 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IdentityModel.Tokens.Jwt.5tt1rwyygx.wasm - 200 81216 application/wasm 12.3697ms -2026-01-28 14:28:59.601 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.Dynamic.Core.2czhr4esfi.wasm - null null -2026-01-28 14:28:59.602 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.602 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.608 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.608 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.608 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.608 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.608 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.608 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.608 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.609 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.609 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.609 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.609 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.611 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.611 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.613 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.Dynamic.Core.2czhr4esfi.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\i8w7eyc5en-{0}-2czhr4esfi-2czhr4esfi.gz' -2026-01-28 14:28:59.613 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.614 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.Dynamic.Core.2czhr4esfi.wasm - 200 240985 application/wasm 13.0467ms -2026-01-28 14:28:59.620 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Management.ot1u48wl1s.wasm - null null -2026-01-28 14:28:59.621 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.621 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.622 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.622 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.622 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.626 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.626 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.626 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.626 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.626 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.626 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.626 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.627 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.627 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.627 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.627 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.628 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.629 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.630 +03:00 [INF] Sending file. Request path: '_framework/System.Management.ot1u48wl1s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\evjyfukwb1-{0}-ot1u48wl1s-ot1u48wl1s.gz' -2026-01-28 14:28:59.630 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.630 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Management.ot1u48wl1s.wasm - 200 63803 application/wasm 9.6669ms -2026-01-28 14:28:59.637 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/TimeZoneConverter.halbc9brmz.wasm - null null -2026-01-28 14:28:59.638 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.638 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.638 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.638 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.638 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.644 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.644 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.644 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.644 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.644 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.644 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.644 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.645 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.645 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.645 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.645 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.646 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.647 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.648 +03:00 [INF] Sending file. Request path: '_framework/TimeZoneConverter.halbc9brmz.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xqev0b9yez-{0}-halbc9brmz-halbc9brmz.gz' -2026-01-28 14:28:59.648 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.648 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/TimeZoneConverter.halbc9brmz.wasm - 200 63803 application/wasm 11.3882ms -2026-01-28 14:28:59.654 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.CSharp.aars8n89vy.wasm - null null -2026-01-28 14:28:59.655 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.655 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.655 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.655 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.655 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.660 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.660 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.660 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.661 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.661 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.661 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.661 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.661 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.661 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.661 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.661 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.662 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.663 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.665 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.CSharp.aars8n89vy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\esvbxkosdi-{0}-aars8n89vy-aars8n89vy.gz' -2026-01-28 14:28:59.665 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.666 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.CSharp.aars8n89vy.wasm - 200 301411 application/wasm 11.7454ms -2026-01-28 14:28:59.672 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.Core.upxd87cdr1.wasm - null null -2026-01-28 14:28:59.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.673 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.673 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.673 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.673 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.679 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.679 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.679 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.679 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.679 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.679 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.679 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.679 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.679 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.679 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.679 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.681 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.682 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.685 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.VisualBasic.Core.upxd87cdr1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jc5kei53j8-{0}-upxd87cdr1-upxd87cdr1.gz' -2026-01-28 14:28:59.685 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.685 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.Core.upxd87cdr1.wasm - 200 418674 application/wasm 13.1166ms -2026-01-28 14:28:59.691 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.lo3va0ewdb.wasm - null null -2026-01-28 14:28:59.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.692 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.692 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.692 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.692 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.697 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.698 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.698 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.698 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.698 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.698 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.698 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.698 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.698 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.698 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.698 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.700 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.700 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.701 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.VisualBasic.lo3va0ewdb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\57p19o16fi-{0}-lo3va0ewdb-lo3va0ewdb.gz' -2026-01-28 14:28:59.701 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.701 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.VisualBasic.lo3va0ewdb.wasm - 200 6966 application/wasm 10.9038ms -2026-01-28 14:28:59.706 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Primitives.xf0i7ifc2c.wasm - null null -2026-01-28 14:28:59.708 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.708 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.708 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.708 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.708 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.713 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.713 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.713 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.713 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.713 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.713 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.714 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.714 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.714 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.714 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.714 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.715 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.716 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.717 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Win32.Primitives.xf0i7ifc2c.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\p8pizku5xb-{0}-xf0i7ifc2c-xf0i7ifc2c.gz' -2026-01-28 14:28:59.717 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.717 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Primitives.xf0i7ifc2c.wasm - 200 5430 application/wasm 10.4366ms -2026-01-28 14:28:59.723 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Registry.egcs66c38p.wasm - null null -2026-01-28 14:28:59.724 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.724 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.724 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.724 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.724 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.729 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.729 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.729 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.729 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.729 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.729 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.729 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.730 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.730 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.730 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.730 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.731 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.732 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.733 +03:00 [INF] Sending file. Request path: '_framework/Microsoft.Win32.Registry.egcs66c38p.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5ouubhvk51-{0}-egcs66c38p-egcs66c38p.gz' -2026-01-28 14:28:59.733 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.733 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Microsoft.Win32.Registry.egcs66c38p.wasm - 200 22838 application/wasm 10.2497ms -2026-01-28 14:28:59.762 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.AppContext.229uy454et.wasm - null null -2026-01-28 14:28:59.763 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.763 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.763 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.763 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.763 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.768 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.768 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.768 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.768 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.768 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.768 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.768 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.768 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.768 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.769 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.769 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.770 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.770 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.771 +03:00 [INF] Sending file. Request path: '_framework/System.AppContext.229uy454et.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vtyu92lgvy-{0}-229uy454et-229uy454et.gz' -2026-01-28 14:28:59.771 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.772 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.AppContext.229uy454et.wasm - 200 4918 application/wasm 9.5ms -2026-01-28 14:28:59.779 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Buffers.ffy4vk49sl.wasm - null null -2026-01-28 14:28:59.780 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.780 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.780 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.780 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.780 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.786 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.786 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.786 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.786 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.786 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.786 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.787 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.787 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.787 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.787 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.787 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.789 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.789 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.790 +03:00 [INF] Sending file. Request path: '_framework/System.Buffers.ffy4vk49sl.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\abrvn071f9-{0}-ffy4vk49sl-ffy4vk49sl.gz' -2026-01-28 14:28:59.790 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.790 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Buffers.ffy4vk49sl.wasm - 200 4918 application/wasm 11.7145ms -2026-01-28 14:28:59.798 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.Concurrent.vwjty21qm0.wasm - null null -2026-01-28 14:28:59.799 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.800 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.800 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.800 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.800 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.807 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.808 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.808 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.808 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.808 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.808 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.808 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.808 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.808 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.808 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.808 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.810 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.811 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.812 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.Concurrent.vwjty21qm0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5kmfc755lz-{0}-vwjty21qm0-vwjty21qm0.gz' -2026-01-28 14:28:59.812 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.813 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.Concurrent.vwjty21qm0.wasm - 200 78656 application/wasm 14.5472ms -2026-01-28 14:28:59.819 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.Immutable.62ow9webvq.wasm - null null -2026-01-28 14:28:59.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.820 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.820 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.820 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.820 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.827 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.827 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.827 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.827 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.827 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.827 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.827 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.828 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.828 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.828 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.828 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.830 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.830 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.832 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.Immutable.62ow9webvq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\y8eoflnwlp-{0}-62ow9webvq-62ow9webvq.gz' -2026-01-28 14:28:59.832 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.833 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.Immutable.62ow9webvq.wasm - 200 240985 application/wasm 13.6829ms -2026-01-28 14:28:59.840 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.NonGeneric.8znze2bng9.wasm - null null -2026-01-28 14:28:59.841 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.841 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.842 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.842 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.842 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.848 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.848 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.848 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.848 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.848 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.848 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.848 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.848 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.848 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.848 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.848 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.850 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.851 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.853 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.NonGeneric.8znze2bng9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\iq26svu8f5-{0}-8znze2bng9-8znze2bng9.gz' -2026-01-28 14:28:59.853 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.853 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.NonGeneric.8znze2bng9.wasm - 200 37691 application/wasm 13.165ms -2026-01-28 14:28:59.860 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.Specialized.xek5hgzu5v.wasm - null null -2026-01-28 14:28:59.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.862 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.862 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.862 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.862 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.869 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.870 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.870 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.870 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.870 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.870 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.870 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.871 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.871 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.871 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.871 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.873 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.874 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.876 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.Specialized.xek5hgzu5v.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4cpzjuj3r0-{0}-xek5hgzu5v-xek5hgzu5v.gz' -2026-01-28 14:28:59.876 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.876 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.Specialized.xek5hgzu5v.wasm - 200 37691 application/wasm 15.5576ms -2026-01-28 14:28:59.883 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Collections.0nghqyig8i.wasm - null null -2026-01-28 14:28:59.884 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.885 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.885 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.885 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.885 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.900 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.900 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.900 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.900 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.900 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.900 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.900 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.901 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.901 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.901 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.901 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.904 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.904 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.906 +03:00 [INF] Sending file. Request path: '_framework/System.Collections.0nghqyig8i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rssb0afnfp-{0}-0nghqyig8i-0nghqyig8i.gz' -2026-01-28 14:28:59.906 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.906 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Collections.0nghqyig8i.wasm - 200 102725 application/wasm 22.9938ms -2026-01-28 14:28:59.913 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Annotations.x5puxnf36m.wasm - null null -2026-01-28 14:28:59.914 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.914 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.914 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.914 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.914 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.922 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.922 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.922 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.922 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.922 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.922 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.922 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.923 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.923 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.923 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.923 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.925 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.926 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.928 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.Annotations.x5puxnf36m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sxzb8xtw7k-{0}-x5puxnf36m-x5puxnf36m.gz' -2026-01-28 14:28:59.928 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.928 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Annotations.x5puxnf36m.wasm - 200 92480 application/wasm 14.9712ms -2026-01-28 14:28:59.935 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.DataAnnotations.w951woxztj.wasm - null null -2026-01-28 14:28:59.937 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.937 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.937 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.937 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.937 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.945 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.945 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.946 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.946 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.946 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.946 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.946 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.947 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.947 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.947 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.947 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.949 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.950 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.951 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.DataAnnotations.w951woxztj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\koqxcel3zt-{0}-w951woxztj-w951woxztj.gz' -2026-01-28 14:28:59.951 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.951 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.DataAnnotations.w951woxztj.wasm - 200 6454 application/wasm 15.9122ms -2026-01-28 14:28:59.957 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.EventBasedAsync.xxfp6nuzvv.wasm - null null -2026-01-28 14:28:59.959 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.959 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.959 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.959 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.959 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.968 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.968 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.968 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.969 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.969 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.969 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.969 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.969 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.969 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.969 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:28:59.969 +03:00 [DBG] No tenant resolved. -2026-01-28 14:28:59.972 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:28:59.973 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.974 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.EventBasedAsync.xxfp6nuzvv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vq3ormnt3h-{0}-xxfp6nuzvv-xxfp6nuzvv.gz' -2026-01-28 14:28:59.974 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:28:59.974 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.EventBasedAsync.xxfp6nuzvv.wasm - 200 16182 application/wasm 16.8474ms -2026-01-28 14:28:59.985 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Primitives.lfp6xvb2nc.wasm - null null -2026-01-28 14:28:59.986 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.986 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:28:59.986 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:28:59.986 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:28:59.986 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:28:59.999 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:28:59.999 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:28:59.999 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:28:59.999 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:28:59.999 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:28:59.999 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:28:59.999 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.000 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.000 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.000 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.000 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.004 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.004 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.006 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.Primitives.lfp6xvb2nc.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\f7c6808jvl-{0}-lfp6xvb2nc-lfp6xvb2nc.gz' -2026-01-28 14:29:00.006 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.007 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.Primitives.lfp6xvb2nc.wasm - 200 32054 application/wasm 21.5694ms -2026-01-28 14:29:00.029 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.TypeConverter.b6pminnty5.wasm - null null -2026-01-28 14:29:00.031 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.032 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.045 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.045 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.045 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.045 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.045 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.046 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.046 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.046 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.046 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.046 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.046 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.050 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.051 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.057 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.TypeConverter.b6pminnty5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lj5t7hnftt-{0}-b6pminnty5-b6pminnty5.gz' -2026-01-28 14:29:00.057 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.057 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.TypeConverter.b6pminnty5.wasm - 200 306531 application/wasm 27.7144ms -2026-01-28 14:29:00.068 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.1kxs5658en.wasm - null null -2026-01-28 14:29:00.069 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.069 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.070 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.070 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.070 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.083 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.083 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.083 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.083 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.083 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.083 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.083 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.085 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.085 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.085 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.085 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.089 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.089 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.090 +03:00 [INF] Sending file. Request path: '_framework/System.ComponentModel.1kxs5658en.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3bfqm2cg1o-{0}-1kxs5658en-1kxs5658en.gz' -2026-01-28 14:29:00.090 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.091 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ComponentModel.1kxs5658en.wasm - 200 5942 application/wasm 23.1558ms -2026-01-28 14:29:00.099 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Configuration.dfuzh9rwie.wasm - null null -2026-01-28 14:29:00.101 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.102 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.102 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.102 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.102 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.115 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.115 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.115 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.115 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.115 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.115 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.115 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.116 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.116 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.116 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.116 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.120 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.121 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.123 +03:00 [INF] Sending file. Request path: '_framework/System.Configuration.dfuzh9rwie.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xe6xuwrov9-{0}-dfuzh9rwie-dfuzh9rwie.gz' -2026-01-28 14:29:00.123 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.123 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Configuration.dfuzh9rwie.wasm - 200 9014 application/wasm 23.6614ms -2026-01-28 14:29:00.134 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Console.5bpbf67g8o.wasm - null null -2026-01-28 14:29:00.136 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.137 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.137 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.137 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.137 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.149 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.149 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.149 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.149 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.149 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.149 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.149 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.150 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.150 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.150 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.150 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.155 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.156 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.157 +03:00 [INF] Sending file. Request path: '_framework/System.Console.5bpbf67g8o.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6mvz9phqs1-{0}-5bpbf67g8o-5bpbf67g8o.gz' -2026-01-28 14:29:00.158 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.158 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Console.5bpbf67g8o.wasm - 200 43835 application/wasm 23.598ms -2026-01-28 14:29:00.166 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Core.zxsh7ohdyg.wasm - null null -2026-01-28 14:29:00.168 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.168 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.179 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.179 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.179 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.179 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.179 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.180 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.180 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.180 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.180 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.180 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.180 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.184 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.184 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.186 +03:00 [INF] Sending file. Request path: '_framework/System.Core.zxsh7ohdyg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\cubawh6yyf-{0}-zxsh7ohdyg-zxsh7ohdyg.gz' -2026-01-28 14:29:00.186 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.186 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Core.zxsh7ohdyg.wasm - 200 13110 application/wasm 20.6461ms -2026-01-28 14:29:00.195 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Data.Common.f0gomia98j.wasm - null null -2026-01-28 14:29:00.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.197 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.197 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.197 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.197 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.206 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.206 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.206 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.206 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.206 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.206 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.206 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.207 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.207 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.207 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.207 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.210 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.210 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.218 +03:00 [INF] Sending file. Request path: '_framework/System.Data.Common.f0gomia98j.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1c47smzjbl-{0}-f0gomia98j-f0gomia98j.gz' -2026-01-28 14:29:00.218 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.219 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Data.Common.f0gomia98j.wasm - 200 1008076 application/wasm 23.227ms -2026-01-28 14:29:00.231 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Data.DataSetExtensions.3k3coynn1w.wasm - null null -2026-01-28 14:29:00.232 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.233 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.233 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.233 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.233 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.243 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.243 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.243 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.243 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.243 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.243 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.243 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.243 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.243 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.244 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.244 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.247 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.247 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.248 +03:00 [INF] Sending file. Request path: '_framework/System.Data.DataSetExtensions.3k3coynn1w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ud5iprd0cp-{0}-3k3coynn1w-3k3coynn1w.gz' -2026-01-28 14:29:00.248 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.249 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Data.DataSetExtensions.3k3coynn1w.wasm - 200 5430 application/wasm 17.7608ms -2026-01-28 14:29:00.257 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Data.d1s9ppg3o7.wasm - null null -2026-01-28 14:29:00.258 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.258 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.258 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.258 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.258 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.268 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.268 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.268 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.268 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.268 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.268 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.268 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.269 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.269 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.269 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.269 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.271 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.272 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.273 +03:00 [INF] Sending file. Request path: '_framework/System.Data.d1s9ppg3o7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\z59k6pwvr9-{0}-d1s9ppg3o7-d1s9ppg3o7.gz' -2026-01-28 14:29:00.273 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.273 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Data.d1s9ppg3o7.wasm - 200 15158 application/wasm 16.702ms -2026-01-28 14:29:00.281 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Contracts.yj802auekg.wasm - null null -2026-01-28 14:29:00.282 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.282 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.283 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.283 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.283 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.294 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.294 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.294 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.294 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.294 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.294 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.294 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.295 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.295 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.295 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.295 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.298 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.299 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.300 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Contracts.yj802auekg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\895yo00sin-{0}-yj802auekg-yj802auekg.gz' -2026-01-28 14:29:00.300 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.300 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Contracts.yj802auekg.wasm - 200 5942 application/wasm 19.5374ms -2026-01-28 14:29:00.308 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Debug.d3luf33vju.wasm - null null -2026-01-28 14:29:00.310 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.310 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.310 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.310 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.310 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.334 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.334 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.334 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.334 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.335 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.335 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.335 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.336 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.336 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.336 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.336 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.340 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.340 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.342 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Debug.d3luf33vju.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\eplp8tl5qp-{0}-d3luf33vju-d3luf33vju.gz' -2026-01-28 14:29:00.342 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.343 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Debug.d3luf33vju.wasm - 200 5430 application/wasm 34.6509ms -2026-01-28 14:29:00.357 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.DiagnosticSource.4iwxfpqf71.wasm - null null -2026-01-28 14:29:00.359 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.359 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.359 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.359 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.359 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.370 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.370 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.370 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.370 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.370 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.370 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.370 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.371 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.371 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.371 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.371 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.374 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.375 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.378 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.DiagnosticSource.4iwxfpqf71.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1hb9b6viqf-{0}-4iwxfpqf71-4iwxfpqf71.gz' -2026-01-28 14:29:00.378 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.379 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.DiagnosticSource.4iwxfpqf71.wasm - 200 192335 application/wasm 21.7339ms -2026-01-28 14:29:00.389 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.FileVersionInfo.pqffbmgf59.wasm - null null -2026-01-28 14:29:00.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.391 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.391 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.391 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.391 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.402 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.402 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.402 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.402 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.402 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.402 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.402 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.402 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.403 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.403 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.403 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.406 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.406 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.407 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.FileVersionInfo.pqffbmgf59.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s56fv99ax6-{0}-pqffbmgf59-pqffbmgf59.gz' -2026-01-28 14:29:00.408 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.408 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.FileVersionInfo.pqffbmgf59.wasm - 200 12598 application/wasm 18.9426ms -2026-01-28 14:29:00.417 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Process.hgedtugxkh.wasm - null null -2026-01-28 14:29:00.418 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.419 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.419 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.419 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.419 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.428 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.428 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.428 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.428 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.428 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.428 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.428 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.429 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.429 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.429 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.429 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.433 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.434 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.435 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Process.hgedtugxkh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ulvoxvx0qx-{0}-hgedtugxkh-hgedtugxkh.gz' -2026-01-28 14:29:00.435 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.436 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Process.hgedtugxkh.wasm - 200 46395 application/wasm 18.6848ms -2026-01-28 14:29:00.445 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.StackTrace.apl6dmc0ay.wasm - null null -2026-01-28 14:29:00.446 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.447 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.447 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.447 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.447 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.455 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.455 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.455 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.455 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.455 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.455 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.455 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.456 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.456 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.456 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.456 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.458 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.459 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.460 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.StackTrace.apl6dmc0ay.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b4bxks5sgj-{0}-apl6dmc0ay-apl6dmc0ay.gz' -2026-01-28 14:29:00.460 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.460 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.StackTrace.apl6dmc0ay.wasm - 200 15670 application/wasm 15.0941ms -2026-01-28 14:29:00.471 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.TextWriterTraceListener.p621ruagc5.wasm - null null -2026-01-28 14:29:00.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.486 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.486 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.486 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.486 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.486 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.486 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.486 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.487 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.487 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.487 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.487 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.490 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.491 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.492 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.TextWriterTraceListener.p621ruagc5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0rz7u0vbo5-{0}-p621ruagc5-p621ruagc5.gz' -2026-01-28 14:29:00.493 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.493 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.TextWriterTraceListener.p621ruagc5.wasm - 200 21302 application/wasm 22.2546ms -2026-01-28 14:29:00.500 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Tools.f5hnfusd9n.wasm - null null -2026-01-28 14:29:00.502 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.502 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.502 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.502 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.502 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.511 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.511 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.511 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.511 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.511 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.511 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.511 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.511 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.511 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.512 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.512 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.514 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.515 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.516 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Tools.f5hnfusd9n.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rtkunlcxi7-{0}-f5hnfusd9n-f5hnfusd9n.gz' -2026-01-28 14:29:00.516 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.516 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Tools.f5hnfusd9n.wasm - 200 4918 application/wasm 15.7342ms -2026-01-28 14:29:00.524 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.TraceSource.z6jsaoha6p.wasm - null null -2026-01-28 14:29:00.525 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.525 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.525 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.525 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.525 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.533 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.533 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.533 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.533 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.533 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.533 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.533 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.534 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.534 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.534 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.534 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.536 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.536 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.538 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.TraceSource.z6jsaoha6p.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3okia77zo6-{0}-z6jsaoha6p-z6jsaoha6p.gz' -2026-01-28 14:29:00.538 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.538 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.TraceSource.z6jsaoha6p.wasm - 200 48443 application/wasm 14.5792ms -2026-01-28 14:29:00.545 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Tracing.d1w6x6c56c.wasm - null null -2026-01-28 14:29:00.546 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.555 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.555 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.555 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.555 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.555 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.555 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.555 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.555 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.555 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.555 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.555 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.558 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.558 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.559 +03:00 [INF] Sending file. Request path: '_framework/System.Diagnostics.Tracing.d1w6x6c56c.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bl5rt2o9qk-{0}-d1w6x6c56c-d1w6x6c56c.gz' -2026-01-28 14:29:00.559 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.560 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Diagnostics.Tracing.d1w6x6c56c.wasm - 200 5942 application/wasm 14.4639ms -2026-01-28 14:29:00.567 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Drawing.Primitives.l0kpbmmg5r.wasm - null null -2026-01-28 14:29:00.568 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.568 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.569 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.569 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.569 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.578 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.578 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.578 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.578 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.578 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.578 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.578 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.578 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.578 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.579 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.579 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.581 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.582 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.583 +03:00 [INF] Sending file. Request path: '_framework/System.Drawing.Primitives.l0kpbmmg5r.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mnh24cyvjl-{0}-l0kpbmmg5r-l0kpbmmg5r.gz' -2026-01-28 14:29:00.583 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.583 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Drawing.Primitives.l0kpbmmg5r.wasm - 200 54587 application/wasm 16.4388ms -2026-01-28 14:29:00.594 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Drawing.ur4stg427u.wasm - null null -2026-01-28 14:29:00.595 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.595 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.595 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.595 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.595 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.604 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.604 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.604 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.604 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.604 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.604 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.604 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.604 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.604 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.604 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.604 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.607 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.608 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.609 +03:00 [INF] Sending file. Request path: '_framework/System.Drawing.ur4stg427u.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tcko64rf2o-{0}-ur4stg427u-ur4stg427u.gz' -2026-01-28 14:29:00.609 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.609 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Drawing.ur4stg427u.wasm - 200 10038 application/wasm 15.3697ms -2026-01-28 14:29:00.615 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Dynamic.Runtime.hhm1961hd1.wasm - null null -2026-01-28 14:29:00.617 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.617 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.617 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.617 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.617 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.624 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.624 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.624 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.624 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.624 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.625 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.625 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.625 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.625 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.625 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.625 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.627 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.628 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.629 +03:00 [INF] Sending file. Request path: '_framework/System.Dynamic.Runtime.hhm1961hd1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bmbd8giz1p-{0}-hhm1961hd1-hhm1961hd1.gz' -2026-01-28 14:29:00.629 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.629 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Dynamic.Runtime.hhm1961hd1.wasm - 200 5942 application/wasm 13.661ms -2026-01-28 14:29:00.637 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Formats.Asn1.9b1kh77dim.wasm - null null -2026-01-28 14:29:00.638 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.638 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.638 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.638 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.638 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.645 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.645 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.645 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.645 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.645 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.645 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.645 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.646 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.646 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.646 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.646 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.648 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.649 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.651 +03:00 [INF] Sending file. Request path: '_framework/System.Formats.Asn1.9b1kh77dim.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3nsgkkymfm-{0}-9b1kh77dim-9b1kh77dim.gz' -2026-01-28 14:29:00.651 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.651 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Formats.Asn1.9b1kh77dim.wasm - 200 86848 application/wasm 14.2438ms -2026-01-28 14:29:00.658 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Formats.Tar.pwu9oiomot.wasm - null null -2026-01-28 14:29:00.659 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.659 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.659 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.659 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.659 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.666 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.666 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.666 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.666 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.666 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.666 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.666 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.667 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.667 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.667 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.667 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.669 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.670 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.671 +03:00 [INF] Sending file. Request path: '_framework/System.Formats.Tar.pwu9oiomot.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\hazqfqk5pt-{0}-pwu9oiomot-pwu9oiomot.gz' -2026-01-28 14:29:00.671 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.671 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Formats.Tar.pwu9oiomot.wasm - 200 28470 application/wasm 13.556ms -2026-01-28 14:29:00.678 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Globalization.Calendars.w6686c3eg8.wasm - null null -2026-01-28 14:29:00.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.680 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.680 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.680 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.680 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.688 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.688 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.688 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.688 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.688 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.688 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.688 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.689 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.689 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.689 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.689 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.691 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.691 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.692 +03:00 [INF] Sending file. Request path: '_framework/System.Globalization.Calendars.w6686c3eg8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\095aowv2ry-{0}-w6686c3eg8-w6686c3eg8.gz' -2026-01-28 14:29:00.692 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.692 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Globalization.Calendars.w6686c3eg8.wasm - 200 5430 application/wasm 14.2506ms -2026-01-28 14:29:00.698 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Globalization.Extensions.koczvzp0tt.wasm - null null -2026-01-28 14:29:00.699 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.700 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.700 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.700 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.700 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.707 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.707 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.707 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.707 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.707 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.707 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.707 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.708 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.708 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.708 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.708 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.710 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.711 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.711 +03:00 [INF] Sending file. Request path: '_framework/System.Globalization.Extensions.koczvzp0tt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dl0jfhz19c-{0}-koczvzp0tt-koczvzp0tt.gz' -2026-01-28 14:29:00.712 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.712 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Globalization.Extensions.koczvzp0tt.wasm - 200 4918 application/wasm 13.528ms -2026-01-28 14:29:00.718 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Globalization.k8m97q3m8s.wasm - null null -2026-01-28 14:29:00.719 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.719 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.719 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.719 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.719 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.727 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.727 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.727 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.727 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.727 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.727 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.727 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.727 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.727 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.727 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.727 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.730 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.730 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.731 +03:00 [INF] Sending file. Request path: '_framework/System.Globalization.k8m97q3m8s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8q1hdhcajb-{0}-k8m97q3m8s-k8m97q3m8s.gz' -2026-01-28 14:29:00.731 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.731 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Globalization.k8m97q3m8s.wasm - 200 5430 application/wasm 13.3621ms -2026-01-28 14:29:00.738 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.Brotli.66hvl0dk85.wasm - null null -2026-01-28 14:29:00.740 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.740 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.740 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.740 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.740 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.748 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.748 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.748 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.748 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.748 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.748 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.748 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.748 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.748 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.748 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.748 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.751 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.752 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.753 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Compression.Brotli.66hvl0dk85.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\klv0zda5b4-{0}-66hvl0dk85-66hvl0dk85.gz' -2026-01-28 14:29:00.753 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.753 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.Brotli.66hvl0dk85.wasm - 200 18230 application/wasm 14.8116ms -2026-01-28 14:29:00.760 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.FileSystem.jhbp0nl2b8.wasm - null null -2026-01-28 14:29:00.761 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.761 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.761 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.761 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.761 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.768 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.768 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.768 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.768 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.768 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.768 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.768 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.769 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.769 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.769 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.769 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.771 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.772 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.774 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Compression.FileSystem.jhbp0nl2b8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3qa8sgt8n1-{0}-jhbp0nl2b8-jhbp0nl2b8.gz' -2026-01-28 14:29:00.774 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.775 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.FileSystem.jhbp0nl2b8.wasm - 200 4918 application/wasm 14.8986ms -2026-01-28 14:29:00.789 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.ZipFile.nap78ewmdw.wasm - null null -2026-01-28 14:29:00.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.791 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.791 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.791 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.791 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.801 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.801 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.801 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.801 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.801 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.801 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.801 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.802 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.802 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.802 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.802 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.805 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.805 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.807 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Compression.ZipFile.nap78ewmdw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\s0uvr55768-{0}-nap78ewmdw-nap78ewmdw.gz' -2026-01-28 14:29:00.807 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.807 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.ZipFile.nap78ewmdw.wasm - 200 43323 application/wasm 18.0285ms -2026-01-28 14:29:00.818 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.wjdy7ns833.wasm - null null -2026-01-28 14:29:00.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.820 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.820 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.820 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.820 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.831 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.831 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.831 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.831 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.831 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.831 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.831 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.833 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.833 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.833 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.833 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.836 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.836 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.839 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Compression.wjdy7ns833.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b9wmrmes1g-{0}-wjdy7ns833-wjdy7ns833.gz' -2026-01-28 14:29:00.839 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.839 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Compression.wjdy7ns833.wasm - 200 157514 application/wasm 21.4057ms -2026-01-28 14:29:00.850 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.AccessControl.eod3jwbqn7.wasm - null null -2026-01-28 14:29:00.851 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.852 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.852 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.852 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.852 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.861 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.861 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.861 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.861 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.861 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.861 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.861 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.862 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.862 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.862 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.862 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.865 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.865 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.866 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.AccessControl.eod3jwbqn7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dxkig4l83f-{0}-eod3jwbqn7-eod3jwbqn7.gz' -2026-01-28 14:29:00.866 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.867 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.AccessControl.eod3jwbqn7.wasm - 200 21814 application/wasm 16.5489ms -2026-01-28 14:29:00.874 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.DriveInfo.driq9z3dvq.wasm - null null -2026-01-28 14:29:00.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.875 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.876 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.876 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.876 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.884 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.884 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.884 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.884 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.884 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.884 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.884 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.884 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.884 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.884 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.884 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.886 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.887 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.888 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.DriveInfo.driq9z3dvq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\53tiabgbqz-{0}-driq9z3dvq-driq9z3dvq.gz' -2026-01-28 14:29:00.888 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.888 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.DriveInfo.driq9z3dvq.wasm - 200 13622 application/wasm 14.3786ms -2026-01-28 14:29:00.895 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.Primitives.81fwc35czq.wasm - null null -2026-01-28 14:29:00.897 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.897 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.897 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.897 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.897 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.907 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.907 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.907 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.907 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.907 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.907 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.907 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.908 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.908 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.908 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.908 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.911 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.912 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.913 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.Primitives.81fwc35czq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3hdbxu1ccm-{0}-81fwc35czq-81fwc35czq.gz' -2026-01-28 14:29:00.913 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.913 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.Primitives.81fwc35czq.wasm - 200 4918 application/wasm 17.5097ms -2026-01-28 14:29:00.919 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.Watcher.adgwo4kuza.wasm - null null -2026-01-28 14:29:00.920 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.926 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.927 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.927 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.927 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.927 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.927 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.927 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.927 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.927 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.927 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.927 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.929 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.929 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.930 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.Watcher.adgwo4kuza.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0nk9uqd91z-{0}-adgwo4kuza-adgwo4kuza.gz' -2026-01-28 14:29:00.930 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.930 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.Watcher.adgwo4kuza.wasm - 200 22838 application/wasm 11.5099ms -2026-01-28 14:29:00.936 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.bwu3sqaj6h.wasm - null null -2026-01-28 14:29:00.937 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.937 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.937 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.937 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.937 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.944 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.944 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.944 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.944 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.945 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.945 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.945 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.945 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.945 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.945 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.945 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.947 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.948 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.949 +03:00 [INF] Sending file. Request path: '_framework/System.IO.FileSystem.bwu3sqaj6h.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0oeun214in-{0}-bwu3sqaj6h-bwu3sqaj6h.gz' -2026-01-28 14:29:00.949 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.949 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.FileSystem.bwu3sqaj6h.wasm - 200 5430 application/wasm 12.7201ms -2026-01-28 14:29:00.955 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.IsolatedStorage.h5a2uwu0ao.wasm - null null -2026-01-28 14:29:00.956 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.957 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.957 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.957 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.957 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.964 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.964 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.964 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.964 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.964 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.964 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.964 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.965 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.965 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.965 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.965 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.967 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.967 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.968 +03:00 [INF] Sending file. Request path: '_framework/System.IO.IsolatedStorage.h5a2uwu0ao.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wxrt5vpq1k-{0}-h5a2uwu0ao-h5a2uwu0ao.gz' -2026-01-28 14:29:00.968 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.968 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.IsolatedStorage.h5a2uwu0ao.wasm - 200 24886 application/wasm 13.1794ms -2026-01-28 14:29:00.976 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.MemoryMappedFiles.7rigkgafok.wasm - null null -2026-01-28 14:29:00.977 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.977 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.977 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.977 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.977 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:00.984 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.984 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.984 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:00.984 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:00.984 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:00.984 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:00.984 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.984 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:00.984 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:00.984 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:00.984 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:00.986 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:00.987 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.988 +03:00 [INF] Sending file. Request path: '_framework/System.IO.MemoryMappedFiles.7rigkgafok.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vyic7lxnxv-{0}-7rigkgafok-7rigkgafok.gz' -2026-01-28 14:29:00.988 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:00.988 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.MemoryMappedFiles.7rigkgafok.wasm - 200 39739 application/wasm 12.4021ms -2026-01-28 14:29:00.995 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipelines.pq56wwa14f.wasm - null null -2026-01-28 14:29:00.996 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.996 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:00.996 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:00.996 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:00.996 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.002 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.002 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.003 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.003 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.003 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.003 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.003 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.003 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.003 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.003 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.003 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.005 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.006 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.007 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Pipelines.pq56wwa14f.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\a08rh4wqum-{0}-pq56wwa14f-pq56wwa14f.gz' -2026-01-28 14:29:01.007 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.008 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipelines.pq56wwa14f.wasm - 200 67904 application/wasm 13.0727ms -2026-01-28 14:29:01.014 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipes.AccessControl.orawgey7bd.wasm - null null -2026-01-28 14:29:01.016 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.016 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.016 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.016 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.016 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.023 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.023 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.023 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.023 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.023 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.023 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.023 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.024 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.024 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.024 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.024 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.026 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.027 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.028 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Pipes.AccessControl.orawgey7bd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\l16mq4yf9p-{0}-orawgey7bd-orawgey7bd.gz' -2026-01-28 14:29:01.028 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.028 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipes.AccessControl.orawgey7bd.wasm - 200 13110 application/wasm 13.6769ms -2026-01-28 14:29:01.035 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipes.qv5hx9ne5m.wasm - null null -2026-01-28 14:29:01.036 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.036 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.036 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.036 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.036 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.042 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.043 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.043 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.043 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.043 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.043 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.043 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.043 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.043 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.043 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.043 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.045 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.046 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.047 +03:00 [INF] Sending file. Request path: '_framework/System.IO.Pipes.qv5hx9ne5m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\r2irkbzfn5-{0}-qv5hx9ne5m-qv5hx9ne5m.gz' -2026-01-28 14:29:01.047 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.047 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.Pipes.qv5hx9ne5m.wasm - 200 32054 application/wasm 12.048ms -2026-01-28 14:29:01.053 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.UnmanagedMemoryStream.zjpuh62vtt.wasm - null null -2026-01-28 14:29:01.054 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.054 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.054 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.055 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.055 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.062 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.062 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.062 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.062 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.062 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.063 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.063 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.063 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.063 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.063 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.063 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.065 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.066 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.067 +03:00 [INF] Sending file. Request path: '_framework/System.IO.UnmanagedMemoryStream.zjpuh62vtt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\u2mfjvv6a6-{0}-zjpuh62vtt-zjpuh62vtt.gz' -2026-01-28 14:29:01.067 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.067 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.UnmanagedMemoryStream.zjpuh62vtt.wasm - 200 5430 application/wasm 14.0285ms -2026-01-28 14:29:01.072 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.IO.kdm5se4z4i.wasm - null null -2026-01-28 14:29:01.073 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.073 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.073 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.073 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.073 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.080 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.080 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.080 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.080 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.080 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.080 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.080 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.081 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.081 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.081 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.081 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.083 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.084 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.085 +03:00 [INF] Sending file. Request path: '_framework/System.IO.kdm5se4z4i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tx0zr2bfyn-{0}-kdm5se4z4i-kdm5se4z4i.gz' -2026-01-28 14:29:01.085 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.085 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.IO.kdm5se4z4i.wasm - 200 5430 application/wasm 12.7563ms -2026-01-28 14:29:01.091 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.AsyncEnumerable.24q069vvmu.wasm - null null -2026-01-28 14:29:01.092 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.093 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.093 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.093 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.093 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.099 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.099 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.099 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.099 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.099 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.099 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.099 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.100 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.100 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.100 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.100 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.102 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.102 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.106 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.AsyncEnumerable.24q069vvmu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c7lzsfjd6q-{0}-24q069vvmu-24q069vvmu.gz' -2026-01-28 14:29:01.106 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.106 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.AsyncEnumerable.24q069vvmu.wasm - 200 446327 application/wasm 14.8105ms -2026-01-28 14:29:01.114 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.Expressions.5vac4cfeo2.wasm - null null -2026-01-28 14:29:01.115 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.116 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.116 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.116 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.116 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.124 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.124 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.124 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.124 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.124 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.124 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.124 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.124 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.124 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.124 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.124 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.126 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.127 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.131 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.Expressions.5vac4cfeo2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ofq1bjb4ny-{0}-5vac4cfeo2-5vac4cfeo2.gz' -2026-01-28 14:29:01.131 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.131 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.Expressions.5vac4cfeo2.wasm - 200 565131 application/wasm 16.9496ms -2026-01-28 14:29:01.140 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.Parallel.wec9zwybs3.wasm - null null -2026-01-28 14:29:01.141 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.141 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.141 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.141 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.141 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.149 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.149 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.149 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.149 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.149 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.149 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.149 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.150 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.150 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.150 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.150 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.152 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.152 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.155 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.Parallel.wec9zwybs3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gqwqnnwtf4-{0}-wec9zwybs3-wec9zwybs3.gz' -2026-01-28 14:29:01.155 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.155 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.Parallel.wec9zwybs3.wasm - 200 212820 application/wasm 15.0319ms -2026-01-28 14:29:01.162 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.Queryable.aacsqokaru.wasm - null null -2026-01-28 14:29:01.163 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.163 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.163 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.163 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.164 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.171 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.171 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.171 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.171 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.171 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.171 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.171 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.171 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.171 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.172 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.172 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.174 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.174 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.175 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.Queryable.aacsqokaru.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6oa4hfxdqf-{0}-aacsqokaru-aacsqokaru.gz' -2026-01-28 14:29:01.175 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.176 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.Queryable.aacsqokaru.wasm - 200 68416 application/wasm 13.5539ms -2026-01-28 14:29:01.182 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Linq.xsk9czcoz7.wasm - null null -2026-01-28 14:29:01.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.183 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.184 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.184 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.184 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.190 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.190 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.190 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.190 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.190 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.190 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.190 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.190 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.190 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.190 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.190 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.192 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.192 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.195 +03:00 [INF] Sending file. Request path: '_framework/System.Linq.xsk9czcoz7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xukhwpcysr-{0}-xsk9czcoz7-xsk9czcoz7.gz' -2026-01-28 14:29:01.195 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.195 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Linq.xsk9czcoz7.wasm - 200 190799 application/wasm 12.8784ms -2026-01-28 14:29:01.202 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Memory.av3iy8oqe6.wasm - null null -2026-01-28 14:29:01.203 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.203 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.203 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.203 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.203 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.211 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.211 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.211 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.211 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.211 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.211 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.211 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.211 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.211 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.211 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.211 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.214 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.214 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.215 +03:00 [INF] Sending file. Request path: '_framework/System.Memory.av3iy8oqe6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\20k8bcs2ry-{0}-av3iy8oqe6-av3iy8oqe6.gz' -2026-01-28 14:29:01.215 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.215 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Memory.av3iy8oqe6.wasm - 200 45371 application/wasm 13.5917ms -2026-01-28 14:29:01.222 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Http.Json.f5ti54ia1a.wasm - null null -2026-01-28 14:29:01.223 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.223 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.223 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.223 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.223 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.230 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.230 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.230 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.230 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.230 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.230 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.230 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.230 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.231 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.231 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.231 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.232 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.233 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.234 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Http.Json.f5ti54ia1a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\hdhp2fv8el-{0}-f5ti54ia1a-f5ti54ia1a.gz' -2026-01-28 14:29:01.234 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.234 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Http.Json.f5ti54ia1a.wasm - 200 45883 application/wasm 12.4285ms -2026-01-28 14:29:01.240 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Http.xnexopyo77.wasm - null null -2026-01-28 14:29:01.241 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.242 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.242 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.242 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.242 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.249 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.250 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.250 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.250 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.250 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.250 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.250 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.250 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.250 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.250 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.250 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.252 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.253 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.255 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Http.xnexopyo77.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5zhsh7htpt-{0}-xnexopyo77-xnexopyo77.gz' -2026-01-28 14:29:01.255 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.256 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Http.xnexopyo77.wasm - 200 286046 application/wasm 15.4688ms -2026-01-28 14:29:01.262 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.HttpListener.qea3lr0ivv.wasm - null null -2026-01-28 14:29:01.263 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.263 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.264 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.264 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.264 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.270 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.270 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.270 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.270 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.270 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.270 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.270 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.271 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.271 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.271 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.271 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.273 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.273 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.274 +03:00 [INF] Sending file. Request path: '_framework/System.Net.HttpListener.qea3lr0ivv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xstee2l2o3-{0}-qea3lr0ivv-qea3lr0ivv.gz' -2026-01-28 14:29:01.274 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.275 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.HttpListener.qea3lr0ivv.wasm - 200 45883 application/wasm 12.3554ms -2026-01-28 14:29:01.281 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Mail.kabvwy0nwb.wasm - null null -2026-01-28 14:29:01.282 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.282 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.282 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.282 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.282 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.289 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.289 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.289 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.289 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.289 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.289 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.289 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.290 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.290 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.290 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.290 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.293 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.293 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.295 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Mail.kabvwy0nwb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\brj66r630l-{0}-kabvwy0nwb-kabvwy0nwb.gz' -2026-01-28 14:29:01.295 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.295 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Mail.kabvwy0nwb.wasm - 200 95040 application/wasm 14.4927ms -2026-01-28 14:29:01.301 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.NameResolution.r77xqyi48e.wasm - null null -2026-01-28 14:29:01.302 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.302 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.303 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.303 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.303 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.310 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.310 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.310 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.310 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.310 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.310 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.310 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.310 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.311 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.311 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.311 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.313 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.313 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.314 +03:00 [INF] Sending file. Request path: '_framework/System.Net.NameResolution.r77xqyi48e.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0muzq1nn1l-{0}-r77xqyi48e-r77xqyi48e.gz' -2026-01-28 14:29:01.314 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.314 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.NameResolution.r77xqyi48e.wasm - 200 14134 application/wasm 13.1279ms -2026-01-28 14:29:01.321 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.NetworkInformation.4y8ae4b47g.wasm - null null -2026-01-28 14:29:01.322 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.322 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.322 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.322 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.322 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.328 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.328 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.328 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.328 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.328 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.328 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.328 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.329 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.329 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.329 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.329 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.331 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.331 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.332 +03:00 [INF] Sending file. Request path: '_framework/System.Net.NetworkInformation.4y8ae4b47g.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\t7lf75pu6w-{0}-4y8ae4b47g-4y8ae4b47g.gz' -2026-01-28 14:29:01.332 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.332 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.NetworkInformation.4y8ae4b47g.wasm - 200 32054 application/wasm 11.8325ms -2026-01-28 14:29:01.339 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Ping.fb39s7nqmu.wasm - null null -2026-01-28 14:29:01.340 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.341 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.341 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.341 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.341 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.348 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.348 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.348 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.348 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.348 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.348 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.348 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.348 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.348 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.349 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.349 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.351 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.351 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.353 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Ping.fb39s7nqmu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1qhthfilvz-{0}-fb39s7nqmu-fb39s7nqmu.gz' -2026-01-28 14:29:01.353 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.353 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Ping.fb39s7nqmu.wasm - 200 17718 application/wasm 13.5116ms -2026-01-28 14:29:01.361 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Primitives.2oo4pve6tx.wasm - null null -2026-01-28 14:29:01.362 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.362 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.362 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.362 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.362 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.370 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.370 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.370 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.370 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.371 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.371 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.371 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.371 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.371 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.371 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.371 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.374 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.374 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.376 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Primitives.2oo4pve6tx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xxez8u380e-{0}-2oo4pve6tx-2oo4pve6tx.gz' -2026-01-28 14:29:01.376 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.376 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Primitives.2oo4pve6tx.wasm - 200 97088 application/wasm 15.3924ms -2026-01-28 14:29:01.384 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Quic.wedsu6m1ok.wasm - null null -2026-01-28 14:29:01.385 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.385 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.386 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.386 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.386 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.394 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.394 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.394 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.394 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.394 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.394 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.394 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.394 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.394 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.394 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.394 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.396 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.397 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.398 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Quic.wedsu6m1ok.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mavmo5ad6x-{0}-wedsu6m1ok-wedsu6m1ok.gz' -2026-01-28 14:29:01.398 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.398 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Quic.wedsu6m1ok.wasm - 200 28982 application/wasm 14.1779ms -2026-01-28 14:29:01.406 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Requests.dd8um1v0v4.wasm - null null -2026-01-28 14:29:01.407 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.407 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.408 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.408 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.408 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.415 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.415 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.415 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.415 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.416 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.416 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.416 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.416 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.416 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.416 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.416 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.419 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.419 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.421 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Requests.dd8um1v0v4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\g8osyueis5-{0}-dd8um1v0v4-dd8um1v0v4.gz' -2026-01-28 14:29:01.421 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.421 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Requests.dd8um1v0v4.wasm - 200 55611 application/wasm 14.7838ms -2026-01-28 14:29:01.428 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Security.j01yc12epg.wasm - null null -2026-01-28 14:29:01.429 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.430 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.430 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.430 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.430 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.437 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.437 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.437 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.437 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.437 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.437 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.437 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.438 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.438 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.438 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.438 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.440 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.440 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.442 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Security.j01yc12epg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vd1ks16ws6-{0}-j01yc12epg-j01yc12epg.gz' -2026-01-28 14:29:01.442 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.442 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Security.j01yc12epg.wasm - 200 104261 application/wasm 14.1752ms -2026-01-28 14:29:01.450 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.ServerSentEvents.n20pwunwwa.wasm - null null -2026-01-28 14:29:01.451 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.451 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.451 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.451 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.451 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.459 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.459 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.459 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.459 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.459 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.459 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.459 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.460 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.460 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.460 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.460 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.462 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.463 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.464 +03:00 [INF] Sending file. Request path: '_framework/System.Net.ServerSentEvents.n20pwunwwa.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rp6twqxirl-{0}-n20pwunwwa-n20pwunwwa.gz' -2026-01-28 14:29:01.464 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.464 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.ServerSentEvents.n20pwunwwa.wasm - 200 30518 application/wasm 14.3843ms -2026-01-28 14:29:01.471 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.ServicePoint.6qgdmrxct2.wasm - null null -2026-01-28 14:29:01.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.472 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.472 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.480 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.480 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.480 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.480 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.480 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.480 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.480 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.481 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.481 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.481 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.481 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.484 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.484 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.485 +03:00 [INF] Sending file. Request path: '_framework/System.Net.ServicePoint.6qgdmrxct2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v7t97n1u19-{0}-6qgdmrxct2-6qgdmrxct2.gz' -2026-01-28 14:29:01.485 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.485 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.ServicePoint.6qgdmrxct2.wasm - 200 4918 application/wasm 14.2489ms -2026-01-28 14:29:01.493 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.Sockets.0jj55xk9rv.wasm - null null -2026-01-28 14:29:01.494 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.495 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.495 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.495 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.495 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.503 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.503 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.503 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.503 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.503 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.503 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.503 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.503 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.504 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.504 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.504 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.506 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.506 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.508 +03:00 [INF] Sending file. Request path: '_framework/System.Net.Sockets.0jj55xk9rv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\i4k589b7bn-{0}-0jj55xk9rv-0jj55xk9rv.gz' -2026-01-28 14:29:01.508 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.508 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.Sockets.0jj55xk9rv.wasm - 200 64315 application/wasm 15.0574ms -2026-01-28 14:29:01.516 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebClient.3wc74qco9q.wasm - null null -2026-01-28 14:29:01.517 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.517 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.517 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.517 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.518 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.525 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.525 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.525 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.525 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.525 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.525 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.525 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.526 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.526 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.526 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.526 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.528 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.528 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.529 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebClient.3wc74qco9q.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9mnjsb8x3q-{0}-3wc74qco9q-3wc74qco9q.gz' -2026-01-28 14:29:01.529 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.530 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebClient.3wc74qco9q.wasm - 200 45883 application/wasm 13.4186ms -2026-01-28 14:29:01.537 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebHeaderCollection.4ybcvi6krs.wasm - null null -2026-01-28 14:29:01.539 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.539 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.539 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.539 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.539 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.546 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.546 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.546 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.546 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.546 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.546 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.546 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.547 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.547 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.547 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.547 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.550 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.550 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.551 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebHeaderCollection.4ybcvi6krs.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\apet8won7e-{0}-4ybcvi6krs-4ybcvi6krs.gz' -2026-01-28 14:29:01.551 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.551 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebHeaderCollection.4ybcvi6krs.wasm - 200 22838 application/wasm 13.8803ms -2026-01-28 14:29:01.558 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebProxy.zxvs9bwlaq.wasm - null null -2026-01-28 14:29:01.559 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.559 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.559 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.559 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.559 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.565 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.566 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.566 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.566 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.566 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.566 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.566 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.566 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.566 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.566 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.566 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.568 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.568 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.569 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebProxy.zxvs9bwlaq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n8e7iy8bgt-{0}-zxvs9bwlaq-zxvs9bwlaq.gz' -2026-01-28 14:29:01.569 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.569 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebProxy.zxvs9bwlaq.wasm - 200 11574 application/wasm 11.487ms -2026-01-28 14:29:01.576 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebSockets.Client.n57nf3z1br.wasm - null null -2026-01-28 14:29:01.577 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.577 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.577 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.577 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.577 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.584 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.584 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.584 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.584 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.584 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.584 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.584 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.584 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.584 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.584 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.584 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.587 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.587 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.588 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebSockets.Client.n57nf3z1br.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rnseevpeje-{0}-n57nf3z1br-n57nf3z1br.gz' -2026-01-28 14:29:01.588 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.589 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebSockets.Client.n57nf3z1br.wasm - 200 42299 application/wasm 12.3942ms -2026-01-28 14:29:01.594 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.WebSockets.i3475fl55i.wasm - null null -2026-01-28 14:29:01.595 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.595 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.595 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.595 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.595 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.601 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.601 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.601 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.601 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.601 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.601 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.601 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.601 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.601 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.601 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.601 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.603 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.603 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.604 +03:00 [INF] Sending file. Request path: '_framework/System.Net.WebSockets.i3475fl55i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fixxlx5x95-{0}-i3475fl55i-i3475fl55i.gz' -2026-01-28 14:29:01.605 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.605 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.WebSockets.i3475fl55i.wasm - 200 98629 application/wasm 10.6791ms -2026-01-28 14:29:01.611 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Net.2jb9y9tls4.wasm - null null -2026-01-28 14:29:01.612 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.612 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.612 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.613 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.613 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.620 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.620 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.620 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.620 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.620 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.620 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.620 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.621 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.621 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.621 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.621 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.623 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.623 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.624 +03:00 [INF] Sending file. Request path: '_framework/System.Net.2jb9y9tls4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sdhyils1a8-{0}-2jb9y9tls4-2jb9y9tls4.gz' -2026-01-28 14:29:01.624 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.624 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Net.2jb9y9tls4.wasm - 200 6966 application/wasm 13.2332ms -2026-01-28 14:29:01.631 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Numerics.Vectors.tjoypuu8wa.wasm - null null -2026-01-28 14:29:01.632 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.632 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.632 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.632 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.632 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.639 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.639 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.639 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.639 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.639 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.639 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.639 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.639 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.639 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.639 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.639 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.641 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.642 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.643 +03:00 [INF] Sending file. Request path: '_framework/System.Numerics.Vectors.tjoypuu8wa.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\52qfucpyv5-{0}-tjoypuu8wa-tjoypuu8wa.gz' -2026-01-28 14:29:01.643 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.643 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Numerics.Vectors.tjoypuu8wa.wasm - 200 5430 application/wasm 12.1889ms -2026-01-28 14:29:01.650 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Numerics.zb6snwiiqo.wasm - null null -2026-01-28 14:29:01.651 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.651 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.651 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.651 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.651 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.658 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.658 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.659 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.659 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.659 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.659 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.659 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.659 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.659 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.659 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.659 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.662 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.662 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.663 +03:00 [INF] Sending file. Request path: '_framework/System.Numerics.zb6snwiiqo.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3mhjbwzot4-{0}-zb6snwiiqo-zb6snwiiqo.gz' -2026-01-28 14:29:01.663 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.663 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Numerics.zb6snwiiqo.wasm - 200 4918 application/wasm 13.1448ms -2026-01-28 14:29:01.670 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ObjectModel.qra8ipv6cl.wasm - null null -2026-01-28 14:29:01.671 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.671 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.672 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.672 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.672 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.679 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.679 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.679 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.679 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.679 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.679 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.680 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.680 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.680 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.680 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.680 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.682 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.683 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.684 +03:00 [INF] Sending file. Request path: '_framework/System.ObjectModel.qra8ipv6cl.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\69h7jimh8b-{0}-qra8ipv6cl-qra8ipv6cl.gz' -2026-01-28 14:29:01.684 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.684 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ObjectModel.qra8ipv6cl.wasm - 200 31030 application/wasm 13.8057ms -2026-01-28 14:29:01.691 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.DataContractSerialization.cdaesawoob.wasm - null null -2026-01-28 14:29:01.692 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.692 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.692 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.692 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.692 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.700 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.700 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.700 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.700 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.700 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.700 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.700 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.700 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.700 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.700 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.700 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.703 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.703 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.709 +03:00 [INF] Sending file. Request path: '_framework/System.Private.DataContractSerialization.cdaesawoob.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xukodscfdt-{0}-cdaesawoob-cdaesawoob.gz' -2026-01-28 14:29:01.709 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.709 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.DataContractSerialization.cdaesawoob.wasm - 200 849331 application/wasm 18.5023ms -2026-01-28 14:29:01.720 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.Uri.d7c7uu4en8.wasm - null null -2026-01-28 14:29:01.721 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.722 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.722 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.722 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.722 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.729 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.729 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.729 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.729 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.729 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.729 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.729 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.729 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.729 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.729 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.729 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.731 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.732 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.733 +03:00 [INF] Sending file. Request path: '_framework/System.Private.Uri.d7c7uu4en8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ru8d7hu3hx-{0}-d7c7uu4en8-d7c7uu4en8.gz' -2026-01-28 14:29:01.733 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.733 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.Uri.d7c7uu4en8.wasm - 200 95040 application/wasm 13.1369ms -2026-01-28 14:29:01.741 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.Xml.Linq.yklun9npsh.wasm - null null -2026-01-28 14:29:01.743 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.743 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.744 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.744 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.744 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.753 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.753 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.753 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.753 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.753 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.753 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.753 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.753 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.753 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.753 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.753 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.756 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.757 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.760 +03:00 [INF] Sending file. Request path: '_framework/System.Private.Xml.Linq.yklun9npsh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wby45u92ah-{0}-yklun9npsh-yklun9npsh.gz' -2026-01-28 14:29:01.760 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.760 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.Xml.Linq.yklun9npsh.wasm - 200 143690 application/wasm 19.3797ms -2026-01-28 14:29:01.769 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Private.Xml.8fl2owujec.wasm - null null -2026-01-28 14:29:01.770 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.771 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.771 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.771 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.771 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.778 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.778 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.778 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.778 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.778 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.778 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.778 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.778 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.779 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.779 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.779 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.780 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.780 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.810 +03:00 [INF] Sending file. Request path: '_framework/System.Private.Xml.8fl2owujec.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4tw2sl7qh6-{0}-8fl2owujec-8fl2owujec.gz' -2026-01-28 14:29:01.810 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.810 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Private.Xml.8fl2owujec.wasm - 200 3096336 application/wasm 40.6577ms -2026-01-28 14:29:01.833 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.DispatchProxy.dur3huf884.wasm - null null -2026-01-28 14:29:01.834 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.835 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.835 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.835 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.835 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.844 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.844 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.844 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.844 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.844 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.844 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.844 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.845 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.845 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.845 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.845 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.847 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.848 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.849 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.DispatchProxy.dur3huf884.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1vtfgkdvnc-{0}-dur3huf884-dur3huf884.gz' -2026-01-28 14:29:01.849 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.849 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.DispatchProxy.dur3huf884.wasm - 200 27958 application/wasm 16.0626ms -2026-01-28 14:29:01.856 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.ILGeneration.pei97jn90w.wasm - null null -2026-01-28 14:29:01.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.857 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.857 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.857 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.857 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.864 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.864 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.864 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.864 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.864 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.864 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.864 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.864 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.864 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.864 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.864 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.867 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.867 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.868 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Emit.ILGeneration.pei97jn90w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v1gyf0d1ub-{0}-pei97jn90w-pei97jn90w.gz' -2026-01-28 14:29:01.868 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.868 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.ILGeneration.pei97jn90w.wasm - 200 5430 application/wasm 12.5331ms -2026-01-28 14:29:01.875 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.Lightweight.ywsyqlj9p1.wasm - null null -2026-01-28 14:29:01.878 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.878 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.878 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.878 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.878 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.887 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.887 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.887 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.887 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.887 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.887 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.887 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.888 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.888 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.888 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.888 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.890 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.891 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.892 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Emit.Lightweight.ywsyqlj9p1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fhnd5yeiv1-{0}-ywsyqlj9p1-ywsyqlj9p1.gz' -2026-01-28 14:29:01.892 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.892 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.Lightweight.ywsyqlj9p1.wasm - 200 5430 application/wasm 16.7947ms -2026-01-28 14:29:01.900 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.tumhikm19o.wasm - null null -2026-01-28 14:29:01.901 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.901 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.908 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.908 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.908 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.908 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.908 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.908 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.909 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.909 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.909 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.909 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.909 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.912 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.912 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.914 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Emit.tumhikm19o.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vgtdlzmyp9-{0}-tumhikm19o-tumhikm19o.gz' -2026-01-28 14:29:01.914 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.915 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Emit.tumhikm19o.wasm - 200 122693 application/wasm 14.7398ms -2026-01-28 14:29:01.922 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Extensions.z98cfn5ig8.wasm - null null -2026-01-28 14:29:01.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.923 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.924 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.924 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.924 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.930 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.930 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.931 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.931 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.931 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.931 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.931 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.931 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.931 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.931 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.931 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.934 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.934 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.935 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Extensions.z98cfn5ig8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5188hd084t-{0}-z98cfn5ig8-z98cfn5ig8.gz' -2026-01-28 14:29:01.935 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.935 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Extensions.z98cfn5ig8.wasm - 200 4918 application/wasm 13.1976ms -2026-01-28 14:29:01.943 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Metadata.j4t1n1ywxj.wasm - null null -2026-01-28 14:29:01.944 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.944 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.944 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.944 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.944 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.953 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.953 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.953 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.953 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.953 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.953 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.953 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.954 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.954 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.954 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.954 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.957 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.957 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.962 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Metadata.j4t1n1ywxj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ih2v39fwix-{0}-j4t1n1ywxj-j4t1n1ywxj.gz' -2026-01-28 14:29:01.962 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.963 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Metadata.j4t1n1ywxj.wasm - 200 493441 application/wasm 19.7542ms -2026-01-28 14:29:01.971 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Primitives.p4ntci6hk7.wasm - null null -2026-01-28 14:29:01.973 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.973 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.973 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.973 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.973 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:01.981 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.981 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.981 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:01.981 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:01.981 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:01.981 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:01.981 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.982 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:01.982 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:01.982 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:01.982 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:01.985 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:01.985 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.986 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.Primitives.p4ntci6hk7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\z9kjf4ns5o-{0}-p4ntci6hk7-p4ntci6hk7.gz' -2026-01-28 14:29:01.986 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:01.986 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.Primitives.p4ntci6hk7.wasm - 200 5430 application/wasm 14.9002ms -2026-01-28 14:29:01.993 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.TypeExtensions.puzzlnwex2.wasm - null null -2026-01-28 14:29:01.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.994 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:01.994 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:01.995 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:01.995 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.004 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.004 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.004 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.004 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.004 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.004 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.004 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.004 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.005 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.005 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.005 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.007 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.007 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.009 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.TypeExtensions.puzzlnwex2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7ukk8euu3c-{0}-puzzlnwex2-puzzlnwex2.gz' -2026-01-28 14:29:02.009 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.009 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.TypeExtensions.puzzlnwex2.wasm - 200 14134 application/wasm 16.152ms -2026-01-28 14:29:02.016 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Reflection.lt32pnnkzd.wasm - null null -2026-01-28 14:29:02.017 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.017 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.017 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.017 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.017 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.024 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.024 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.024 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.025 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.025 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.025 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.025 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.025 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.025 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.025 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.025 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.028 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.028 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.029 +03:00 [INF] Sending file. Request path: '_framework/System.Reflection.lt32pnnkzd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5zfqu7bsm3-{0}-lt32pnnkzd-lt32pnnkzd.gz' -2026-01-28 14:29:02.029 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.029 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Reflection.lt32pnnkzd.wasm - 200 5942 application/wasm 13.7684ms -2026-01-28 14:29:02.035 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Resources.Reader.c8jfsntxbn.wasm - null null -2026-01-28 14:29:02.036 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.036 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.037 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.037 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.037 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.043 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.043 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.043 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.043 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.043 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.043 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.043 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.044 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.044 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.044 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.044 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.045 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.046 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.047 +03:00 [INF] Sending file. Request path: '_framework/System.Resources.Reader.c8jfsntxbn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5fcb3hbz6f-{0}-c8jfsntxbn-c8jfsntxbn.gz' -2026-01-28 14:29:02.047 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.047 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Resources.Reader.c8jfsntxbn.wasm - 200 4918 application/wasm 11.4566ms -2026-01-28 14:29:02.053 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Resources.ResourceManager.q30psrnl7u.wasm - null null -2026-01-28 14:29:02.054 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.054 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.054 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.054 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.054 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.061 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.061 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.061 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.061 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.061 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.061 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.061 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.062 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.062 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.062 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.062 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.063 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.064 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.064 +03:00 [INF] Sending file. Request path: '_framework/System.Resources.ResourceManager.q30psrnl7u.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\k3xfrex2pp-{0}-q30psrnl7u-q30psrnl7u.gz' -2026-01-28 14:29:02.064 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.065 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Resources.ResourceManager.q30psrnl7u.wasm - 200 5430 application/wasm 12.1062ms -2026-01-28 14:29:02.070 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Resources.Writer.wvyn0j1lcg.wasm - null null -2026-01-28 14:29:02.071 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.071 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.071 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.071 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.071 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.077 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.077 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.077 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.077 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.077 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.077 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.077 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.077 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.077 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.077 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.077 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.079 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.079 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.080 +03:00 [INF] Sending file. Request path: '_framework/System.Resources.Writer.wvyn0j1lcg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wsg9isam35-{0}-wvyn0j1lcg-wvyn0j1lcg.gz' -2026-01-28 14:29:02.080 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.080 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Resources.Writer.wvyn0j1lcg.wasm - 200 16694 application/wasm 10.6504ms -2026-01-28 14:29:02.086 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.CompilerServices.Unsafe.djrvtrz9tb.wasm - null null -2026-01-28 14:29:02.087 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.087 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.088 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.088 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.088 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.095 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.095 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.095 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.095 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.095 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.095 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.095 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.096 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.096 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.096 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.096 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.098 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.098 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.099 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.CompilerServices.Unsafe.djrvtrz9tb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\smsvmq9glf-{0}-djrvtrz9tb-djrvtrz9tb.gz' -2026-01-28 14:29:02.099 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.099 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.CompilerServices.Unsafe.djrvtrz9tb.wasm - 200 4918 application/wasm 13.1819ms -2026-01-28 14:29:02.105 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.CompilerServices.VisualC.luekj4crl6.wasm - null null -2026-01-28 14:29:02.106 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.106 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.106 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.106 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.106 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.114 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.114 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.114 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.114 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.114 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.114 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.114 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.115 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.115 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.115 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.115 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.117 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.117 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.118 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.CompilerServices.VisualC.luekj4crl6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\w5clnjen17-{0}-luekj4crl6-luekj4crl6.gz' -2026-01-28 14:29:02.118 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.118 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.CompilerServices.VisualC.luekj4crl6.wasm - 200 6966 application/wasm 13.3555ms -2026-01-28 14:29:02.124 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Extensions.d5mymlulmr.wasm - null null -2026-01-28 14:29:02.125 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.125 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.125 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.125 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.125 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.131 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.132 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.132 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.132 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.132 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.132 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.132 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.132 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.132 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.132 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.132 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.134 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.135 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.136 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Extensions.d5mymlulmr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n6jkmkc1vw-{0}-d5mymlulmr-d5mymlulmr.gz' -2026-01-28 14:29:02.136 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.136 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Extensions.d5mymlulmr.wasm - 200 7478 application/wasm 11.9546ms -2026-01-28 14:29:02.143 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Handles.ih3cmfwxzd.wasm - null null -2026-01-28 14:29:02.144 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.145 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.145 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.145 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.152 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.152 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.152 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.152 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.152 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.152 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.153 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.153 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.153 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.153 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.153 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.155 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.156 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.157 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Handles.ih3cmfwxzd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2b53wjzpk1-{0}-ih3cmfwxzd-ih3cmfwxzd.gz' -2026-01-28 14:29:02.157 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.157 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Handles.ih3cmfwxzd.wasm - 200 5430 application/wasm 13.9212ms -2026-01-28 14:29:02.164 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.RuntimeInformation.nvwt5l6jkw.wasm - null null -2026-01-28 14:29:02.165 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.165 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.166 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.166 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.166 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.175 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.175 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.175 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.175 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.175 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.175 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.175 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.176 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.176 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.176 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.176 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.178 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.179 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.180 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.InteropServices.RuntimeInformation.nvwt5l6jkw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5rxlvv130r-{0}-nvwt5l6jkw-nvwt5l6jkw.gz' -2026-01-28 14:29:02.180 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.180 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.RuntimeInformation.nvwt5l6jkw.wasm - 200 4918 application/wasm 16.0501ms -2026-01-28 14:29:02.187 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.0us88a4qml.wasm - null null -2026-01-28 14:29:02.188 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.189 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.189 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.189 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.189 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.197 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.197 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.197 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.197 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.197 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.197 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.197 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.198 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.198 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.198 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.198 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.200 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.200 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.202 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.InteropServices.0us88a4qml.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\t1e5pdefro-{0}-0us88a4qml-0us88a4qml.gz' -2026-01-28 14:29:02.202 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.202 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.InteropServices.0us88a4qml.wasm - 200 54587 application/wasm 14.767ms -2026-01-28 14:29:02.210 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Intrinsics.bd7qf7pr2d.wasm - null null -2026-01-28 14:29:02.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.211 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.211 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.212 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.212 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.221 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.221 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.221 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.221 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.221 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.221 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.221 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.222 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.222 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.222 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.222 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.224 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.225 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.226 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Intrinsics.bd7qf7pr2d.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\q8hyt22w7t-{0}-bd7qf7pr2d-bd7qf7pr2d.gz' -2026-01-28 14:29:02.226 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.226 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Intrinsics.bd7qf7pr2d.wasm - 200 6966 application/wasm 16.5375ms -2026-01-28 14:29:02.232 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Loader.opo019ewpt.wasm - null null -2026-01-28 14:29:02.233 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.234 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.234 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.234 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.234 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.241 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.241 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.241 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.241 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.241 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.241 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.241 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.242 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.242 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.242 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.242 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.244 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.245 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.246 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Loader.opo019ewpt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lulkrkawwl-{0}-opo019ewpt-opo019ewpt.gz' -2026-01-28 14:29:02.246 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.246 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Loader.opo019ewpt.wasm - 200 5430 application/wasm 13.5751ms -2026-01-28 14:29:02.253 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Numerics.opgppvbdi6.wasm - null null -2026-01-28 14:29:02.254 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.254 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.254 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.254 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.255 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.263 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.263 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.263 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.263 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.263 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.263 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.263 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.264 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.264 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.264 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.264 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.266 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.266 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.268 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Numerics.opgppvbdi6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\15lzitxs0t-{0}-opgppvbdi6-opgppvbdi6.gz' -2026-01-28 14:29:02.268 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.268 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Numerics.opgppvbdi6.wasm - 200 134986 application/wasm 15.3224ms -2026-01-28 14:29:02.275 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Formatters.seonqd55ks.wasm - null null -2026-01-28 14:29:02.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.277 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.277 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.277 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.277 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.285 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.285 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.285 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.285 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.285 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.285 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.285 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.285 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.285 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.285 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.286 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.288 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.288 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.290 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.Formatters.seonqd55ks.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n0v9yl0jh6-{0}-seonqd55ks-seonqd55ks.gz' -2026-01-28 14:29:02.290 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.290 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Formatters.seonqd55ks.wasm - 200 55611 application/wasm 14.5449ms -2026-01-28 14:29:02.296 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Json.zn0mp7kdmp.wasm - null null -2026-01-28 14:29:02.297 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.297 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.297 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.298 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.298 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.304 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.304 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.304 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.304 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.304 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.304 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.304 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.304 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.304 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.304 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.304 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.306 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.307 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.307 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.Json.zn0mp7kdmp.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wh4w9dsljz-{0}-zn0mp7kdmp-zn0mp7kdmp.gz' -2026-01-28 14:29:02.307 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.308 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Json.zn0mp7kdmp.wasm - 200 5430 application/wasm 11.5466ms -2026-01-28 14:29:02.313 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Primitives.yueinvlj2j.wasm - null null -2026-01-28 14:29:02.314 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.315 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.315 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.315 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.315 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.321 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.321 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.322 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.322 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.322 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.322 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.322 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.322 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.322 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.322 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.322 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.324 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.325 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.326 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.Primitives.yueinvlj2j.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\n1gdasegta-{0}-yueinvlj2j-yueinvlj2j.gz' -2026-01-28 14:29:02.326 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.326 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Primitives.yueinvlj2j.wasm - 200 13110 application/wasm 12.2257ms -2026-01-28 14:29:02.331 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Xml.v8gymdawqg.wasm - null null -2026-01-28 14:29:02.332 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.332 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.332 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.332 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.332 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.338 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.338 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.338 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.338 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.338 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.338 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.338 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.338 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.338 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.338 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.339 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.340 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.341 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.342 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.Xml.v8gymdawqg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\j0zo8hxl7f-{0}-v8gymdawqg-v8gymdawqg.gz' -2026-01-28 14:29:02.342 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.342 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.Xml.v8gymdawqg.wasm - 200 6454 application/wasm 11.0268ms -2026-01-28 14:29:02.349 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.gs7sg0u955.wasm - null null -2026-01-28 14:29:02.350 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.350 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.350 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.350 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.350 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.356 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.356 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.356 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.356 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.356 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.356 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.357 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.357 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.357 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.357 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.357 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.359 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.360 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.361 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.Serialization.gs7sg0u955.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c9urnolypd-{0}-gs7sg0u955-gs7sg0u955.gz' -2026-01-28 14:29:02.361 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.361 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.Serialization.gs7sg0u955.wasm - 200 6966 application/wasm 12.0597ms -2026-01-28 14:29:02.367 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Runtime.6bp69qbwkj.wasm - null null -2026-01-28 14:29:02.369 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.369 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.369 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.369 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.369 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.377 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.377 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.377 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.377 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.377 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.377 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.377 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.377 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.377 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.377 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.377 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.379 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.380 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.381 +03:00 [INF] Sending file. Request path: '_framework/System.Runtime.6bp69qbwkj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\35jd1dce24-{0}-6bp69qbwkj-6bp69qbwkj.gz' -2026-01-28 14:29:02.381 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.381 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Runtime.6bp69qbwkj.wasm - 200 34619 application/wasm 14.0428ms -2026-01-28 14:29:02.391 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.AccessControl.6rjkcrpkiw.wasm - null null -2026-01-28 14:29:02.392 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.392 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.392 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.392 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.392 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.399 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.399 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.399 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.399 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.399 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.399 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.400 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.400 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.400 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.400 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.400 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.402 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.403 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.404 +03:00 [INF] Sending file. Request path: '_framework/System.Security.AccessControl.6rjkcrpkiw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ad9pnuyu1n-{0}-6rjkcrpkiw-6rjkcrpkiw.gz' -2026-01-28 14:29:02.404 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.404 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.AccessControl.6rjkcrpkiw.wasm - 200 47931 application/wasm 13.4793ms -2026-01-28 14:29:02.411 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Claims.hk3ae85l96.wasm - null null -2026-01-28 14:29:02.412 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.413 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.413 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.413 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.413 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.421 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.421 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.421 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.421 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.421 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.421 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.421 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.421 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.421 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.421 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.421 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.424 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.424 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.426 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Claims.hk3ae85l96.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vbfh1norfg-{0}-hk3ae85l96-hk3ae85l96.gz' -2026-01-28 14:29:02.426 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.426 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Claims.hk3ae85l96.wasm - 200 44859 application/wasm 14.5734ms -2026-01-28 14:29:02.432 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Algorithms.whyyu092ah.wasm - null null -2026-01-28 14:29:02.433 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.433 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.433 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.434 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.434 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.442 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.442 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.442 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.442 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.442 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.442 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.442 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.442 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.443 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.443 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.443 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.445 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.445 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.446 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Algorithms.whyyu092ah.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lts4eaytip-{0}-whyyu092ah-whyyu092ah.gz' -2026-01-28 14:29:02.446 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.446 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Algorithms.whyyu092ah.wasm - 200 6966 application/wasm 14.4036ms -2026-01-28 14:29:02.453 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Cng.m6se2pcpu2.wasm - null null -2026-01-28 14:29:02.454 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.454 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.454 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.454 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.454 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.461 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.461 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.461 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.461 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.461 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.461 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.462 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.462 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.462 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.462 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.462 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.464 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.465 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.466 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Cng.m6se2pcpu2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fe4hdxl6xd-{0}-m6se2pcpu2-m6se2pcpu2.gz' -2026-01-28 14:29:02.466 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.466 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Cng.m6se2pcpu2.wasm - 200 5942 application/wasm 12.9973ms -2026-01-28 14:29:02.472 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Csp.hhoaoktf3s.wasm - null null -2026-01-28 14:29:02.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.481 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.481 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.481 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.481 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.481 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.481 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.482 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.482 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.482 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.482 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.482 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.484 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.485 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.486 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Csp.hhoaoktf3s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\e6c5growx5-{0}-hhoaoktf3s-hhoaoktf3s.gz' -2026-01-28 14:29:02.486 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.486 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Csp.hhoaoktf3s.wasm - 200 5942 application/wasm 13.995ms -2026-01-28 14:29:02.493 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Encoding.52vboi33gw.wasm - null null -2026-01-28 14:29:02.494 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.494 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.494 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.494 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.494 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.502 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.502 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.502 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.502 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.502 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.502 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.503 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.503 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.503 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.503 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.503 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.505 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.506 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.507 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Encoding.52vboi33gw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9nnkgpt0mz-{0}-52vboi33gw-52vboi33gw.gz' -2026-01-28 14:29:02.507 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.507 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Encoding.52vboi33gw.wasm - 200 5430 application/wasm 14.4625ms -2026-01-28 14:29:02.515 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.OpenSsl.ml0tyz68i8.wasm - null null -2026-01-28 14:29:02.516 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.516 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.516 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.516 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.516 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.526 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.526 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.526 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.526 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.527 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.527 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.527 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.527 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.527 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.527 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.527 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.537 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.537 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.538 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.OpenSsl.ml0tyz68i8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ggd18ngby9-{0}-ml0tyz68i8-ml0tyz68i8.gz' -2026-01-28 14:29:02.538 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.538 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.OpenSsl.ml0tyz68i8.wasm - 200 5430 application/wasm 23.5659ms -2026-01-28 14:29:02.546 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Primitives.1dlu2dh7y8.wasm - null null -2026-01-28 14:29:02.547 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.547 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.555 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.555 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.555 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.555 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.555 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.555 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.555 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.556 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.556 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.556 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.556 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.559 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.559 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.560 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.Primitives.1dlu2dh7y8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ibvt59z0m8-{0}-1dlu2dh7y8-1dlu2dh7y8.gz' -2026-01-28 14:29:02.560 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.561 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.Primitives.1dlu2dh7y8.wasm - 200 5430 application/wasm 14.9631ms -2026-01-28 14:29:02.568 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.X509Certificates.6uh0qispd4.wasm - null null -2026-01-28 14:29:02.569 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.569 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.569 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.569 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.569 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.577 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.577 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.577 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.577 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.577 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.577 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.577 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.578 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.578 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.578 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.578 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.580 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.581 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.581 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.X509Certificates.6uh0qispd4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kv01n2x7di-{0}-6uh0qispd4-6uh0qispd4.gz' -2026-01-28 14:29:02.582 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.582 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.X509Certificates.6uh0qispd4.wasm - 200 6454 application/wasm 13.9329ms -2026-01-28 14:29:02.589 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.mbts90zzn6.wasm - null null -2026-01-28 14:29:02.590 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.590 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.590 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.590 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.590 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.597 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.597 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.597 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.597 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.597 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.597 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.597 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.598 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.598 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.598 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.598 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.600 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.600 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.604 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Cryptography.mbts90zzn6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\najz3idkx9-{0}-mbts90zzn6-mbts90zzn6.gz' -2026-01-28 14:29:02.605 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.605 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Cryptography.mbts90zzn6.wasm - 200 642453 application/wasm 16.0687ms -2026-01-28 14:29:02.613 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Principal.Windows.rp57epmxji.wasm - null null -2026-01-28 14:29:02.614 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.614 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.614 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.614 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.614 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.621 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.621 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.621 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.621 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.621 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.621 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.621 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.621 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.621 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.622 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.622 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.624 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.624 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.625 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Principal.Windows.rp57epmxji.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6c4gn33xif-{0}-rp57epmxji-rp57epmxji.gz' -2026-01-28 14:29:02.625 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.625 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Principal.Windows.rp57epmxji.wasm - 200 27446 application/wasm 12.1301ms -2026-01-28 14:29:02.632 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.Principal.0lplkfn42e.wasm - null null -2026-01-28 14:29:02.633 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.633 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.633 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.633 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.633 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.640 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.640 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.640 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.640 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.640 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.640 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.640 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.640 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.640 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.640 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.640 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.643 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.643 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.644 +03:00 [INF] Sending file. Request path: '_framework/System.Security.Principal.0lplkfn42e.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bapixjfy1p-{0}-0lplkfn42e-0lplkfn42e.gz' -2026-01-28 14:29:02.644 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.644 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.Principal.0lplkfn42e.wasm - 200 4918 application/wasm 12.3853ms -2026-01-28 14:29:02.650 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.SecureString.dhwpww24h2.wasm - null null -2026-01-28 14:29:02.651 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.652 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.652 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.652 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.652 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.658 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.658 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.658 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.658 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.658 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.658 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.658 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.659 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.659 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.659 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.659 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.661 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.662 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.663 +03:00 [INF] Sending file. Request path: '_framework/System.Security.SecureString.dhwpww24h2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\z7kpj97i3q-{0}-dhwpww24h2-dhwpww24h2.gz' -2026-01-28 14:29:02.663 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.663 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.SecureString.dhwpww24h2.wasm - 200 5430 application/wasm 12.7688ms -2026-01-28 14:29:02.670 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Security.l9hsxb0sdk.wasm - null null -2026-01-28 14:29:02.671 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.672 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.672 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.672 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.672 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.681 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.681 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.681 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.681 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.681 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.681 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.681 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.682 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.682 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.682 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.682 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.685 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.685 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.686 +03:00 [INF] Sending file. Request path: '_framework/System.Security.l9hsxb0sdk.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\4w9pau8lca-{0}-l9hsxb0sdk-l9hsxb0sdk.gz' -2026-01-28 14:29:02.686 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.686 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Security.l9hsxb0sdk.wasm - 200 7990 application/wasm 16.2132ms -2026-01-28 14:29:02.693 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ServiceModel.Web.zcvkay2idv.wasm - null null -2026-01-28 14:29:02.694 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.694 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.695 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.695 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.695 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.702 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.702 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.702 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.702 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.702 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.702 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.702 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.703 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.703 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.703 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.703 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.705 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.706 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.707 +03:00 [INF] Sending file. Request path: '_framework/System.ServiceModel.Web.zcvkay2idv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wy542848av-{0}-zcvkay2idv-zcvkay2idv.gz' -2026-01-28 14:29:02.707 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.707 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ServiceModel.Web.zcvkay2idv.wasm - 200 6454 application/wasm 13.8815ms -2026-01-28 14:29:02.713 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ServiceProcess.x10kdcthsy.wasm - null null -2026-01-28 14:29:02.715 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.715 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.715 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.715 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.715 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.723 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.723 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.723 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.723 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.723 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.723 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.723 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.723 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.723 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.723 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.724 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.726 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.726 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.727 +03:00 [INF] Sending file. Request path: '_framework/System.ServiceProcess.x10kdcthsy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2yoiew09ss-{0}-x10kdcthsy-x10kdcthsy.gz' -2026-01-28 14:29:02.728 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.728 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ServiceProcess.x10kdcthsy.wasm - 200 5430 application/wasm 14.2413ms -2026-01-28 14:29:02.734 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.CodePages.36p8aommvy.wasm - null null -2026-01-28 14:29:02.736 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.736 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.736 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.736 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.736 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.744 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.744 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.745 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.745 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.745 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.745 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.745 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.745 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.745 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.745 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.745 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.748 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.749 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.754 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Encoding.CodePages.36p8aommvy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lrsfp7sbdw-{0}-36p8aommvy-36p8aommvy.gz' -2026-01-28 14:29:02.754 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.754 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.CodePages.36p8aommvy.wasm - 200 732580 application/wasm 19.7877ms -2026-01-28 14:29:02.765 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.Extensions.7s9z475qvj.wasm - null null -2026-01-28 14:29:02.766 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.766 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.766 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.766 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.766 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.775 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.775 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.775 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.775 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.775 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.775 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.775 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.776 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.776 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.776 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.776 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.779 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.779 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.781 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Encoding.Extensions.7s9z475qvj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ij3a13vyp7-{0}-7s9z475qvj-7s9z475qvj.gz' -2026-01-28 14:29:02.781 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.781 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.Extensions.7s9z475qvj.wasm - 200 5430 application/wasm 16.3221ms -2026-01-28 14:29:02.788 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.ldc2rqh80i.wasm - null null -2026-01-28 14:29:02.789 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.790 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.790 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.790 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.790 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.798 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.798 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.798 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.798 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.798 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.798 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.798 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.799 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.799 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.799 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.799 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.801 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.801 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.802 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Encoding.ldc2rqh80i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\w1z5z4lpop-{0}-ldc2rqh80i-ldc2rqh80i.gz' -2026-01-28 14:29:02.802 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.803 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Encoding.ldc2rqh80i.wasm - 200 5430 application/wasm 14.9182ms -2026-01-28 14:29:02.811 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Encodings.Web.8dol48h5sw.wasm - null null -2026-01-28 14:29:02.812 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.812 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.812 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.812 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.812 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.820 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.820 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.820 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.820 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.820 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.820 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.820 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.821 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.821 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.821 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.821 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.826 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.826 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.828 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Encodings.Web.8dol48h5sw.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b5ft8vnha4-{0}-8dol48h5sw-8dol48h5sw.gz' -2026-01-28 14:29:02.828 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.828 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Encodings.Web.8dol48h5sw.wasm - 200 55611 application/wasm 17.366ms -2026-01-28 14:29:02.835 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.Json.3vc5r851ef.wasm - null null -2026-01-28 14:29:02.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.837 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.846 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.846 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.846 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.846 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.846 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.846 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.846 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.846 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.846 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.847 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.847 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.849 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.849 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.854 +03:00 [INF] Sending file. Request path: '_framework/System.Text.Json.3vc5r851ef.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\is1y7e0ewf-{0}-3vc5r851ef-3vc5r851ef.gz' -2026-01-28 14:29:02.854 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.854 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.Json.3vc5r851ef.wasm - 200 638869 application/wasm 19.1033ms -2026-01-28 14:29:02.864 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Text.RegularExpressions.fa55zq7noc.wasm - null null -2026-01-28 14:29:02.865 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.866 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.873 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.873 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.873 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.873 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.873 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.873 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.873 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.874 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.874 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.874 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.874 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.876 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.876 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.880 +03:00 [INF] Sending file. Request path: '_framework/System.Text.RegularExpressions.fa55zq7noc.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b5e2kemd87-{0}-fa55zq7noc-fa55zq7noc.gz' -2026-01-28 14:29:02.880 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.880 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Text.RegularExpressions.fa55zq7noc.wasm - 200 374637 application/wasm 15.8392ms -2026-01-28 14:29:02.888 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.AccessControl.0jx6t23d4a.wasm - null null -2026-01-28 14:29:02.889 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.889 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.889 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.889 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.889 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.895 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.895 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.895 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.895 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.895 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.895 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.895 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.896 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.896 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.896 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.896 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.898 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.898 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.899 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.AccessControl.0jx6t23d4a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7hxeyq70th-{0}-0jx6t23d4a-0jx6t23d4a.gz' -2026-01-28 14:29:02.899 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.899 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.AccessControl.0jx6t23d4a.wasm - 200 23350 application/wasm 11.6042ms -2026-01-28 14:29:02.906 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Channels.5yls0a3tlo.wasm - null null -2026-01-28 14:29:02.907 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.907 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.907 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.908 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.908 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.915 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.915 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.915 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.915 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.915 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.915 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.915 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.915 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.915 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.915 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.915 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.917 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.918 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.919 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Channels.5yls0a3tlo.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\yfc45zghwv-{0}-5yls0a3tlo-5yls0a3tlo.gz' -2026-01-28 14:29:02.919 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.919 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Channels.5yls0a3tlo.wasm - 200 56123 application/wasm 13.0434ms -2026-01-28 14:29:02.925 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Overlapped.7fzdvfjpcj.wasm - null null -2026-01-28 14:29:02.926 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.926 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.926 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.926 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.926 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.934 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.934 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.934 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.934 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.934 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.934 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.934 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.934 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.934 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.934 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.934 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.936 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.937 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.938 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Overlapped.7fzdvfjpcj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1nn32vjcux-{0}-7fzdvfjpcj-7fzdvfjpcj.gz' -2026-01-28 14:29:02.938 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.938 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Overlapped.7fzdvfjpcj.wasm - 200 5430 application/wasm 12.9309ms -2026-01-28 14:29:02.944 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Dataflow.b1bop2hs5a.wasm - null null -2026-01-28 14:29:02.945 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.946 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.946 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.946 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.946 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.953 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.954 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.954 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.954 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.954 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.954 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.954 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.954 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.954 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.954 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.954 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.957 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.957 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.959 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Tasks.Dataflow.b1bop2hs5a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bygxarg1od-{0}-b1bop2hs5a-b1bop2hs5a.gz' -2026-01-28 14:29:02.959 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.959 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Dataflow.b1bop2hs5a.wasm - 200 175439 application/wasm 14.7074ms -2026-01-28 14:29:02.965 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Extensions.w1aib1cdwa.wasm - null null -2026-01-28 14:29:02.966 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.966 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.966 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.967 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.967 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.974 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.974 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.974 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.974 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.974 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.974 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.974 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.975 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.975 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.975 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.975 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.977 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:02.978 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.979 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Tasks.Extensions.w1aib1cdwa.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wzcconrhmx-{0}-w1aib1cdwa-w1aib1cdwa.gz' -2026-01-28 14:29:02.979 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:02.979 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Extensions.w1aib1cdwa.wasm - 200 5430 application/wasm 13.8988ms -2026-01-28 14:29:02.987 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Parallel.k09pj8k6wz.wasm - null null -2026-01-28 14:29:02.988 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.988 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:02.989 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:02.989 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:02.989 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:02.997 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.997 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.997 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:02.997 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:02.997 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:02.997 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:02.997 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:02.998 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:02.998 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:02.998 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:02.998 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.001 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.001 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.003 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Tasks.Parallel.k09pj8k6wz.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\eo71wakl9t-{0}-k09pj8k6wz-k09pj8k6wz.gz' -2026-01-28 14:29:03.003 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.003 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.Parallel.k09pj8k6wz.wasm - 200 51003 application/wasm 15.8805ms -2026-01-28 14:29:03.009 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.ixxtp5uj8k.wasm - null null -2026-01-28 14:29:03.010 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.010 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.010 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.010 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.010 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.017 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.017 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.017 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.017 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.017 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.018 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.018 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.018 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.018 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.018 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.018 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.020 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.021 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.021 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Tasks.ixxtp5uj8k.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dmqlrfwu1b-{0}-ixxtp5uj8k-ixxtp5uj8k.gz' -2026-01-28 14:29:03.021 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.022 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Tasks.ixxtp5uj8k.wasm - 200 6454 application/wasm 12.9474ms -2026-01-28 14:29:03.028 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Thread.oikmdgabjt.wasm - null null -2026-01-28 14:29:03.029 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.030 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.030 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.030 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.030 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.037 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.037 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.037 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.037 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.037 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.037 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.037 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.038 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.038 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.038 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.038 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.040 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.041 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.042 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Thread.oikmdgabjt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v09yqluov3-{0}-oikmdgabjt-oikmdgabjt.gz' -2026-01-28 14:29:03.042 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.042 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Thread.oikmdgabjt.wasm - 200 5430 application/wasm 13.5426ms -2026-01-28 14:29:03.048 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.ThreadPool.szctd5y8bn.wasm - null null -2026-01-28 14:29:03.050 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.050 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.050 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.050 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.050 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.056 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.056 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.056 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.056 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.056 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.056 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.056 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.057 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.057 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.057 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.057 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.059 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.060 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.061 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.ThreadPool.szctd5y8bn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jfyqp856kd-{0}-szctd5y8bn-szctd5y8bn.gz' -2026-01-28 14:29:03.061 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.061 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.ThreadPool.szctd5y8bn.wasm - 200 5430 application/wasm 12.6728ms -2026-01-28 14:29:03.067 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.Timer.k8rrsskw5o.wasm - null null -2026-01-28 14:29:03.068 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.069 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.069 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.069 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.069 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.075 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.075 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.075 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.075 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.075 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.076 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.076 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.076 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.076 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.076 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.076 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.078 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.079 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.079 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.Timer.k8rrsskw5o.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kw1ofqxbky-{0}-k8rrsskw5o-k8rrsskw5o.gz' -2026-01-28 14:29:03.079 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.080 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.Timer.k8rrsskw5o.wasm - 200 4918 application/wasm 12.2515ms -2026-01-28 14:29:03.086 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Threading.s2hrn953g9.wasm - null null -2026-01-28 14:29:03.087 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.087 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.087 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.087 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.087 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.094 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.094 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.094 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.095 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.095 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.095 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.095 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.095 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.095 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.095 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.095 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.097 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.098 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.099 +03:00 [INF] Sending file. Request path: '_framework/System.Threading.s2hrn953g9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6obifrcy4d-{0}-s2hrn953g9-s2hrn953g9.gz' -2026-01-28 14:29:03.099 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.099 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Threading.s2hrn953g9.wasm - 200 34619 application/wasm 12.5798ms -2026-01-28 14:29:03.105 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Transactions.Local.nufsb5pyrr.wasm - null null -2026-01-28 14:29:03.106 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.106 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.106 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.106 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.106 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.113 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.113 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.113 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.113 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.113 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.113 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.113 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.114 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.114 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.114 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.114 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.116 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.117 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.119 +03:00 [INF] Sending file. Request path: '_framework/System.Transactions.Local.nufsb5pyrr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\vnl4qu3in7-{0}-nufsb5pyrr-nufsb5pyrr.gz' -2026-01-28 14:29:03.119 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.119 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Transactions.Local.nufsb5pyrr.wasm - 200 165711 application/wasm 14.2945ms -2026-01-28 14:29:03.125 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Transactions.3ezo8twol7.wasm - null null -2026-01-28 14:29:03.126 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.126 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.126 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.126 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.126 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.133 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.133 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.133 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.133 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.133 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.133 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.133 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.134 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.134 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.134 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.134 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.136 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.136 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.137 +03:00 [INF] Sending file. Request path: '_framework/System.Transactions.3ezo8twol7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v8zohqruou-{0}-3ezo8twol7-3ezo8twol7.gz' -2026-01-28 14:29:03.137 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.137 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Transactions.3ezo8twol7.wasm - 200 6454 application/wasm 12.3542ms -2026-01-28 14:29:03.143 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.ValueTuple.lle7yi2fzv.wasm - null null -2026-01-28 14:29:03.144 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.144 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.150 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.150 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.151 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.151 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.151 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.151 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.151 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.151 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.151 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.151 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.151 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.154 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.155 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.155 +03:00 [INF] Sending file. Request path: '_framework/System.ValueTuple.lle7yi2fzv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\io39vdvq9n-{0}-lle7yi2fzv-lle7yi2fzv.gz' -2026-01-28 14:29:03.155 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.156 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.ValueTuple.lle7yi2fzv.wasm - 200 5430 application/wasm 12.7299ms -2026-01-28 14:29:03.164 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Web.HttpUtility.u5rdfpwou6.wasm - null null -2026-01-28 14:29:03.165 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.165 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.165 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.165 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.165 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.173 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.173 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.173 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.173 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.173 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.173 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.173 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.174 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.174 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.174 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.174 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.176 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.177 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.178 +03:00 [INF] Sending file. Request path: '_framework/System.Web.HttpUtility.u5rdfpwou6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rn4buhtgqs-{0}-u5rdfpwou6-u5rdfpwou6.gz' -2026-01-28 14:29:03.178 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.178 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Web.HttpUtility.u5rdfpwou6.wasm - 200 19766 application/wasm 14.8186ms -2026-01-28 14:29:03.187 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Web.wygikf6la5.wasm - null null -2026-01-28 14:29:03.188 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.188 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.189 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.189 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.189 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.198 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.198 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.199 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.199 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.199 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.199 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.199 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.199 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.200 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.200 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.200 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.203 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.203 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.204 +03:00 [INF] Sending file. Request path: '_framework/System.Web.wygikf6la5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ru9f3t39bb-{0}-wygikf6la5-wygikf6la5.gz' -2026-01-28 14:29:03.204 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.205 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Web.wygikf6la5.wasm - 200 4918 application/wasm 17.6989ms -2026-01-28 14:29:03.213 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Windows.axtn86mzz6.wasm - null null -2026-01-28 14:29:03.214 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.214 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.214 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.214 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.214 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.223 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.223 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.223 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.223 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.223 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.223 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.223 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.224 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.224 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.224 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.224 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.226 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.227 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.228 +03:00 [INF] Sending file. Request path: '_framework/System.Windows.axtn86mzz6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1my90r3byi-{0}-axtn86mzz6-axtn86mzz6.gz' -2026-01-28 14:29:03.228 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.228 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Windows.axtn86mzz6.wasm - 200 5430 application/wasm 15.1706ms -2026-01-28 14:29:03.235 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.Linq.j4b5ce3025.wasm - null null -2026-01-28 14:29:03.236 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.237 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.237 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.237 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.237 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.245 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.245 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.245 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.245 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.245 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.245 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.245 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.246 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.246 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.246 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.246 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.249 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.249 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.250 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.Linq.j4b5ce3025.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2m6czvvsuo-{0}-j4b5ce3025-j4b5ce3025.gz' -2026-01-28 14:29:03.250 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.250 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.Linq.j4b5ce3025.wasm - 200 5430 application/wasm 15.157ms -2026-01-28 14:29:03.256 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.ReaderWriter.60z52rxro3.wasm - null null -2026-01-28 14:29:03.257 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.257 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.257 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.257 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.257 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.265 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.265 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.265 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.265 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.265 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.265 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.265 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.266 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.266 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.266 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.266 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.268 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.269 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.270 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.ReaderWriter.60z52rxro3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\rg4isli5jp-{0}-60z52rxro3-60z52rxro3.gz' -2026-01-28 14:29:03.270 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.270 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.ReaderWriter.60z52rxro3.wasm - 200 11574 application/wasm 13.9786ms -2026-01-28 14:29:03.276 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.Serialization.pm5yw3aolk.wasm - null null -2026-01-28 14:29:03.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.277 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.278 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.278 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.278 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.285 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.285 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.285 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.285 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.285 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.285 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.285 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.286 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.286 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.286 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.286 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.288 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.289 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.289 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.Serialization.pm5yw3aolk.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\o41cy5pfaz-{0}-pm5yw3aolk-pm5yw3aolk.gz' -2026-01-28 14:29:03.289 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.290 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.Serialization.pm5yw3aolk.wasm - 200 5942 application/wasm 13.553ms -2026-01-28 14:29:03.296 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XDocument.b4xtw4lbmx.wasm - null null -2026-01-28 14:29:03.297 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.297 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.297 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.297 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.297 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.304 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.304 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.305 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.305 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.305 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.305 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.305 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.305 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.305 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.305 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.305 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.307 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.308 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.309 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XDocument.b4xtw4lbmx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\veh6k128ug-{0}-b4xtw4lbmx-b4xtw4lbmx.gz' -2026-01-28 14:29:03.309 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.309 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XDocument.b4xtw4lbmx.wasm - 200 5430 application/wasm 13.1049ms -2026-01-28 14:29:03.315 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XPath.XDocument.p6s7bmw3ej.wasm - null null -2026-01-28 14:29:03.317 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.317 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.317 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.317 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.317 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.324 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.324 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.324 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.324 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.324 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.324 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.324 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.325 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.325 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.325 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.325 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.327 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.327 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.328 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XPath.XDocument.p6s7bmw3ej.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dp2x1o3mj5-{0}-p6s7bmw3ej-p6s7bmw3ej.gz' -2026-01-28 14:29:03.328 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.328 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XPath.XDocument.p6s7bmw3ej.wasm - 200 5430 application/wasm 12.9717ms -2026-01-28 14:29:03.334 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XPath.egozus3d9z.wasm - null null -2026-01-28 14:29:03.335 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.336 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.336 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.336 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.336 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.345 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.345 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.345 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.345 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.345 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.345 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.345 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.346 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.346 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.346 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.346 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.348 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.349 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.350 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XPath.egozus3d9z.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6kx3a3nw65-{0}-egozus3d9z-egozus3d9z.gz' -2026-01-28 14:29:03.350 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.350 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XPath.egozus3d9z.wasm - 200 5430 application/wasm 15.6503ms -2026-01-28 14:29:03.357 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XmlDocument.771pf23z5h.wasm - null null -2026-01-28 14:29:03.359 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.359 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.359 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.359 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.359 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.367 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.367 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.367 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.367 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.367 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.367 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.367 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.367 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.367 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.367 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.367 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.370 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.370 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.371 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XmlDocument.771pf23z5h.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mit9lp1cls-{0}-771pf23z5h-771pf23z5h.gz' -2026-01-28 14:29:03.371 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.372 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XmlDocument.771pf23z5h.wasm - 200 5430 application/wasm 14.2109ms -2026-01-28 14:29:03.379 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.XmlSerializer.h0uogtkh03.wasm - null null -2026-01-28 14:29:03.381 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.382 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.382 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.382 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.382 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.391 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.391 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.391 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.391 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.391 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.391 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.391 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.392 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.392 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.392 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.392 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.395 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.395 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.396 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.XmlSerializer.h0uogtkh03.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6ubynsl46b-{0}-h0uogtkh03-h0uogtkh03.gz' -2026-01-28 14:29:03.396 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.396 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.XmlSerializer.h0uogtkh03.wasm - 200 7478 application/wasm 16.9289ms -2026-01-28 14:29:03.403 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.Xml.95nan2l20b.wasm - null null -2026-01-28 14:29:03.405 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.405 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.405 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.405 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.405 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.414 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.414 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.414 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.414 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.414 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.414 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.414 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.415 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.415 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.415 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.415 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.418 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.419 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.420 +03:00 [INF] Sending file. Request path: '_framework/System.Xml.95nan2l20b.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pcooe0k5kk-{0}-95nan2l20b-95nan2l20b.gz' -2026-01-28 14:29:03.420 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.420 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.Xml.95nan2l20b.wasm - 200 13110 application/wasm 16.7381ms -2026-01-28 14:29:03.430 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/System.au65xu8d95.wasm - null null -2026-01-28 14:29:03.432 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.432 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.432 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.432 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.433 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.441 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.441 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.441 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.441 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.441 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.441 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.441 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.442 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.442 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.442 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.442 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.445 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.445 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.447 +03:00 [INF] Sending file. Request path: '_framework/System.au65xu8d95.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\um28rmltyb-{0}-au65xu8d95-au65xu8d95.gz' -2026-01-28 14:29:03.447 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.448 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/System.au65xu8d95.wasm - 200 39739 application/wasm 17.1881ms -2026-01-28 14:29:03.456 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/WindowsBase.mi3hkxthj8.wasm - null null -2026-01-28 14:29:03.457 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.458 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.458 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.458 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.458 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.468 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.468 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.468 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.468 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.468 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.468 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.468 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.469 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.469 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.469 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.469 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.472 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.473 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.474 +03:00 [INF] Sending file. Request path: '_framework/WindowsBase.mi3hkxthj8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8syd5uq41h-{0}-mi3hkxthj8-mi3hkxthj8.gz' -2026-01-28 14:29:03.474 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.474 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/WindowsBase.mi3hkxthj8.wasm - 200 5942 application/wasm 18.1423ms -2026-01-28 14:29:03.484 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/mscorlib.uifnjyorgo.wasm - null null -2026-01-28 14:29:03.485 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.486 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.486 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.486 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.486 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.496 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.496 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.496 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.496 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.496 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.496 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.496 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.497 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.497 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.497 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.497 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.500 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.500 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.501 +03:00 [INF] Sending file. Request path: '_framework/mscorlib.uifnjyorgo.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xpihquz2r5-{0}-uifnjyorgo-uifnjyorgo.gz' -2026-01-28 14:29:03.501 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.501 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/mscorlib.uifnjyorgo.wasm - 200 49467 application/wasm 17.5344ms -2026-01-28 14:29:03.510 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/netstandard.qvqeanc7qr.wasm - null null -2026-01-28 14:29:03.511 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.511 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.511 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.511 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.511 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.521 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.521 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.521 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.521 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.521 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.521 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.521 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.522 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.522 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.522 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.522 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.526 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.527 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.529 +03:00 [INF] Sending file. Request path: '_framework/netstandard.qvqeanc7qr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ciukkw19kg-{0}-qvqeanc7qr-qvqeanc7qr.gz' -2026-01-28 14:29:03.529 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.529 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/netstandard.qvqeanc7qr.wasm - 200 90432 application/wasm 19.466ms -2026-01-28 14:29:03.538 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Application.Contracts.uq8ziq260z.wasm - null null -2026-01-28 14:29:03.540 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.540 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.540 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.540 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.540 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.551 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.551 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.551 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.551 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.551 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.551 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.551 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.552 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.552 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.552 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.552 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.555 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.555 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.557 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Application.Contracts.uq8ziq260z.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0lm5ebgqof-{0}-uq8ziq260z-uq8ziq260z.gz' -2026-01-28 14:29:03.557 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.557 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Application.Contracts.uq8ziq260z.wasm - 200 8502 application/wasm 18.9645ms -2026-01-28 14:29:03.567 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Domain.Shared.a1r7gug13a.wasm - null null -2026-01-28 14:29:03.568 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.568 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.569 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.569 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.569 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.577 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.577 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.577 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.577 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.577 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.577 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.577 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.577 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.577 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.578 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.578 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.580 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.581 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.582 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Domain.Shared.a1r7gug13a.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\qwx72m6fc1-{0}-a1r7gug13a-a1r7gug13a.gz' -2026-01-28 14:29:03.582 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.582 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Domain.Shared.a1r7gug13a.wasm - 200 23350 application/wasm 15.2658ms -2026-01-28 14:29:03.589 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.HttpApi.Client.3wngu4nxgr.wasm - null null -2026-01-28 14:29:03.590 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.590 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.590 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.590 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.590 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.599 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.599 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.599 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.599 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.599 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.599 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.599 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.600 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.600 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.600 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.600 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.602 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.603 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.604 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.HttpApi.Client.3wngu4nxgr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\scloparoeu-{0}-3wngu4nxgr-3wngu4nxgr.gz' -2026-01-28 14:29:03.604 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.604 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.HttpApi.Client.3wngu4nxgr.wasm - 200 7990 application/wasm 15.2407ms -2026-01-28 14:29:03.613 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.Application.Contracts.k8182bqsqt.wasm - null null -2026-01-28 14:29:03.614 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.622 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.622 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.622 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.622 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.622 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.623 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.623 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.623 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.623 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.623 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.623 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.625 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.626 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.629 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Account.Application.Contracts.k8182bqsqt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lj6k2ntok7-{0}-k8182bqsqt-k8182bqsqt.gz' -2026-01-28 14:29:03.629 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.629 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.Application.Contracts.k8182bqsqt.wasm - 200 182095 application/wasm 15.9981ms -2026-01-28 14:29:03.636 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.HttpApi.Client.tyjyiionpp.wasm - null null -2026-01-28 14:29:03.638 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.638 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.638 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.638 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.638 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.648 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.648 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.648 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.648 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.648 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.648 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.648 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.649 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.649 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.649 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.649 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.652 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.653 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.654 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Account.HttpApi.Client.tyjyiionpp.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\am5qy7si0d-{0}-tyjyiionpp-tyjyiionpp.gz' -2026-01-28 14:29:03.654 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.654 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Account.HttpApi.Client.tyjyiionpp.wasm - 200 36667 application/wasm 18.1715ms -2026-01-28 14:29:03.666 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.w8xtoi4w2w.wasm - null null -2026-01-28 14:29:03.668 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.668 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.668 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.668 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.668 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.675 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.675 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.675 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.675 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.675 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.675 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.675 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.676 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.676 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.676 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.676 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.679 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.679 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.680 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.w8xtoi4w2w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\7rtjnlhdr6-{0}-w8xtoi4w2w-w8xtoi4w2w.gz' -2026-01-28 14:29:03.680 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.680 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.w8xtoi4w2w.wasm - 200 23350 application/wasm 14.0826ms -2026-01-28 14:29:03.690 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.tfobi4ljh9.wasm - null null -2026-01-28 14:29:03.691 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.691 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.691 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.691 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.691 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.700 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.700 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.700 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.700 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.700 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.700 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.700 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.700 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.700 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.700 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.700 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.703 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.703 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.704 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.tfobi4ljh9.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dtw2jvq9ko-{0}-tfobi4ljh9-tfobi4ljh9.gz' -2026-01-28 14:29:03.704 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.705 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.tfobi4ljh9.wasm - 200 49979 application/wasm 15.0988ms -2026-01-28 14:29:03.712 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.v2vsbafrsu.wasm - null null -2026-01-28 14:29:03.713 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.714 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.714 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.714 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.714 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.721 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.722 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.722 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.722 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.722 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.722 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.722 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.722 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.722 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.722 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.722 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.724 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.725 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.726 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.v2vsbafrsu.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\314s0gg35t-{0}-v2vsbafrsu-v2vsbafrsu.gz' -2026-01-28 14:29:03.726 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.726 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.MudBlazorBasicTheme.v2vsbafrsu.wasm - 200 31030 application/wasm 13.904ms -2026-01-28 14:29:03.734 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.g96eihnnrd.wasm - null null -2026-01-28 14:29:03.735 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.736 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.736 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.736 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.736 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.744 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.744 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.744 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.744 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.744 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.744 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.744 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.745 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.745 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.745 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.745 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.747 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.748 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.749 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.g96eihnnrd.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xik7tubv32-{0}-g96eihnnrd-g96eihnnrd.gz' -2026-01-28 14:29:03.749 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.750 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.g96eihnnrd.wasm - 200 57659 application/wasm 15.1689ms -2026-01-28 14:29:03.758 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.ysnekz4aln.wasm - null null -2026-01-28 14:29:03.759 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.759 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.760 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.760 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.760 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.768 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.768 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.768 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.768 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.768 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.768 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.768 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.769 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.769 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.769 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.769 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.771 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.772 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.773 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.ysnekz4aln.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\29y4ttn7p6-{0}-ysnekz4aln-ysnekz4aln.gz' -2026-01-28 14:29:03.773 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.773 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.ysnekz4aln.wasm - 200 56635 application/wasm 15.1241ms -2026-01-28 14:29:03.784 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.9bxiazim84.wasm - null null -2026-01-28 14:29:03.786 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.786 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.786 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.786 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.786 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.794 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.795 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.795 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.795 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.795 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.795 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.795 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.795 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.795 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.795 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.795 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.798 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.798 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.799 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.9bxiazim84.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0h6kud88pg-{0}-9bxiazim84-9bxiazim84.gz' -2026-01-28 14:29:03.799 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.799 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling.9bxiazim84.wasm - 200 6966 application/wasm 14.9516ms -2026-01-28 14:29:03.806 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.tlnm5w6vzv.wasm - null null -2026-01-28 14:29:03.808 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.808 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.808 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.808 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.808 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.818 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.818 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.818 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.818 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.818 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.818 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.818 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.819 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.819 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.819 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.819 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.821 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.822 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.823 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.tlnm5w6vzv.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\79f9hg2kci-{0}-tlnm5w6vzv-tlnm5w6vzv.gz' -2026-01-28 14:29:03.823 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.824 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.tlnm5w6vzv.wasm - 200 29494 application/wasm 17.202ms -2026-01-28 14:29:03.839 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.vwbrjkm58i.wasm - null null -2026-01-28 14:29:03.840 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.840 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.841 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.841 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.841 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.849 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.849 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.849 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.850 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.850 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.850 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.850 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.850 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.850 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.850 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.850 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.853 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.853 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.854 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.vwbrjkm58i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\v23sh1qt8y-{0}-vwbrjkm58i-vwbrjkm58i.gz' -2026-01-28 14:29:03.855 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.855 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.Bundling.vwbrjkm58i.wasm - 200 9526 application/wasm 16.1957ms -2026-01-28 14:29:03.874 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.w3letp91lq.wasm - null null -2026-01-28 14:29:03.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.875 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.875 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.875 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.875 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.883 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.883 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.883 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.883 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.883 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.883 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.883 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.884 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.884 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.884 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.884 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.886 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.887 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.888 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.w3letp91lq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5xzpephnhm-{0}-w3letp91lq-w3letp91lq.gz' -2026-01-28 14:29:03.888 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.888 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.MudBlazor.w3letp91lq.wasm - 200 9526 application/wasm 14.2085ms -2026-01-28 14:29:03.895 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.3jjfqno7lg.wasm - null null -2026-01-28 14:29:03.896 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.897 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.897 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.897 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.897 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.904 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.904 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.904 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.904 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.904 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.904 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.904 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.905 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.905 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.905 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.905 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.907 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.908 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.909 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.3jjfqno7lg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wywr70k095-{0}-3jjfqno7lg-3jjfqno7lg.gz' -2026-01-28 14:29:03.909 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.909 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Client.Common.3jjfqno7lg.wasm - 200 53051 application/wasm 14.1469ms -2026-01-28 14:29:03.917 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Contracts.syr4dyw7am.wasm - null null -2026-01-28 14:29:03.918 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.918 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.918 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.918 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.918 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.926 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.926 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.926 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.926 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.926 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.926 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.926 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.927 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.927 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.927 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.927 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.929 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.930 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.931 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.Contracts.syr4dyw7am.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ch1l6yg9xg-{0}-syr4dyw7am-syr4dyw7am.gz' -2026-01-28 14:29:03.931 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.931 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.Contracts.syr4dyw7am.wasm - 200 32054 application/wasm 14.1083ms -2026-01-28 14:29:03.939 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.bu7idw18jp.wasm - null null -2026-01-28 14:29:03.940 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.940 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.941 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.941 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.941 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.948 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.948 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.948 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.948 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.948 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.948 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.948 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.949 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.949 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.949 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.949 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.951 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.952 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.953 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.bu7idw18jp.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6qc21ahd0h-{0}-bu7idw18jp-bu7idw18jp.gz' -2026-01-28 14:29:03.953 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.953 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.bu7idw18jp.wasm - 200 24886 application/wasm 14.1655ms -2026-01-28 14:29:03.960 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.Contracts.ao19uqfxk1.wasm - null null -2026-01-28 14:29:03.961 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.962 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.962 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.962 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.962 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.970 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.970 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.970 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.970 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.970 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.970 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.970 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.970 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.970 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.970 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.970 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.973 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.973 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.974 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Auditing.Contracts.ao19uqfxk1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gvrtk0uenw-{0}-ao19uqfxk1-ao19uqfxk1.gz' -2026-01-28 14:29:03.974 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.975 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.Contracts.ao19uqfxk1.wasm - 200 6454 application/wasm 14.0259ms -2026-01-28 14:29:03.982 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.96yxua01gc.wasm - null null -2026-01-28 14:29:03.984 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.984 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:03.984 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:03.984 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:03.984 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:03.993 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.993 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.993 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:03.993 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:03.993 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:03.993 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:03.993 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.994 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:03.994 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:03.994 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:03.994 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:03.996 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:03.997 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.998 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Auditing.96yxua01gc.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\0bpurwxf4x-{0}-96yxua01gc-96yxua01gc.gz' -2026-01-28 14:29:03.998 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:03.998 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Auditing.96yxua01gc.wasm - 200 51003 application/wasm 15.8451ms -2026-01-28 14:29:04.005 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AuditLogging.Domain.Shared.dftqdjnknx.wasm - null null -2026-01-28 14:29:04.007 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.007 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.007 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.007 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.007 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.016 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.016 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.016 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.016 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.016 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.016 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.016 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.016 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.016 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.017 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.017 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.019 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.019 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.021 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.AuditLogging.Domain.Shared.dftqdjnknx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\een9hz6ik5-{0}-dftqdjnknx-dftqdjnknx.gz' -2026-01-28 14:29:04.022 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.022 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.AuditLogging.Domain.Shared.dftqdjnknx.wasm - 200 158026 application/wasm 16.3997ms -2026-01-28 14:29:04.030 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.Abstractions.afyzjlgpmi.wasm - null null -2026-01-28 14:29:04.031 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.031 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.031 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.031 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.031 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.039 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.039 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.039 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.039 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.039 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.039 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.039 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.039 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.039 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.039 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.040 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.042 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.042 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.043 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Authorization.Abstractions.afyzjlgpmi.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mzg3hwxb9z-{0}-afyzjlgpmi-afyzjlgpmi.gz' -2026-01-28 14:29:04.043 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.044 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.Abstractions.afyzjlgpmi.wasm - 200 36155 application/wasm 13.9827ms -2026-01-28 14:29:04.051 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.af69ln5ic4.wasm - null null -2026-01-28 14:29:04.052 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.052 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.052 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.052 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.052 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.060 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.060 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.060 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.060 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.060 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.060 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.060 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.061 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.061 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.061 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.061 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.063 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.064 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.066 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Authorization.af69ln5ic4.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kmfgdovl74-{0}-af69ln5ic4-af69ln5ic4.gz' -2026-01-28 14:29:04.066 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.066 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Authorization.af69ln5ic4.wasm - 200 134986 application/wasm 15.4424ms -2026-01-28 14:29:04.073 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.757dvxj4ke.wasm - null null -2026-01-28 14:29:04.074 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.074 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.074 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.075 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.075 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.082 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.082 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.082 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.082 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.082 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.082 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.082 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.082 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.082 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.082 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.082 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.085 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.085 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.086 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Autofac.757dvxj4ke.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\dnh2928fpn-{0}-757dvxj4ke-757dvxj4ke.gz' -2026-01-28 14:29:04.086 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.086 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.757dvxj4ke.wasm - 200 20790 application/wasm 13.2998ms -2026-01-28 14:29:04.092 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.WebAssembly.67r46affwj.wasm - null null -2026-01-28 14:29:04.094 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.094 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.094 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.094 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.094 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.100 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.100 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.100 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.100 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.100 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.100 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.100 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.101 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.101 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.101 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.101 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.103 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.103 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.104 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Autofac.WebAssembly.67r46affwj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fy88n7o3re-{0}-67r46affwj-67r46affwj.gz' -2026-01-28 14:29:04.104 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.104 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Autofac.WebAssembly.67r46affwj.wasm - 200 6454 application/wasm 11.8074ms -2026-01-28 14:29:04.111 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundJobs.Domain.Shared.1ndljj9fe1.wasm - null null -2026-01-28 14:29:04.112 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.112 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.112 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.112 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.112 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.119 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.119 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.119 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.119 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.119 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.119 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.119 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.119 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.119 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.119 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.119 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.121 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.122 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.123 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BackgroundJobs.Domain.Shared.1ndljj9fe1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\it8pbr6hs7-{0}-1ndljj9fe1-1ndljj9fe1.gz' -2026-01-28 14:29:04.123 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.123 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundJobs.Domain.Shared.1ndljj9fe1.wasm - 200 5430 application/wasm 11.8697ms -2026-01-28 14:29:04.130 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundWorkers.2p6fuqijf3.wasm - null null -2026-01-28 14:29:04.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.131 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.132 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.132 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.132 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.138 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.138 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.138 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.138 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.138 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.138 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.138 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.138 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.138 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.138 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.138 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.141 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.141 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.142 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.BackgroundWorkers.2p6fuqijf3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\tnta0aqntp-{0}-2p6fuqijf3-2p6fuqijf3.gz' -2026-01-28 14:29:04.142 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.143 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.BackgroundWorkers.2p6fuqijf3.wasm - 200 25398 application/wasm 12.5761ms -2026-01-28 14:29:04.150 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Caching.815cqd6cda.wasm - null null -2026-01-28 14:29:04.151 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.151 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.151 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.151 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.151 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.159 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.159 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.159 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.159 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.159 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.159 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.159 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.160 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.160 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.160 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.160 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.162 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.163 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.165 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Caching.815cqd6cda.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5pr3wxuvo5-{0}-815cqd6cda-815cqd6cda.gz' -2026-01-28 14:29:04.165 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.165 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Caching.815cqd6cda.wasm - 200 85824 application/wasm 14.9974ms -2026-01-28 14:29:04.172 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Castle.Core.h40m7fuufn.wasm - null null -2026-01-28 14:29:04.173 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.173 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.173 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.173 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.174 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.182 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.182 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.182 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.182 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.182 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.182 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.182 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.183 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.183 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.183 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.183 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.186 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.186 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.187 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Castle.Core.h40m7fuufn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\f5a40y0td5-{0}-h40m7fuufn-h40m7fuufn.gz' -2026-01-28 14:29:04.187 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.188 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Castle.Core.h40m7fuufn.wasm - 200 11574 application/wasm 15.9857ms -2026-01-28 14:29:04.197 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Core.4xaaeuhx7w.wasm - null null -2026-01-28 14:29:04.198 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.198 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.198 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.198 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.198 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.206 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.206 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.207 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.207 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.207 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.207 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.207 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.207 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.207 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.207 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.207 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.210 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.211 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.214 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Core.4xaaeuhx7w.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\klnckblff1-{0}-4xaaeuhx7w-4xaaeuhx7w.gz' -2026-01-28 14:29:04.214 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.215 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Core.4xaaeuhx7w.wasm - 200 311139 application/wasm 18.6347ms -2026-01-28 14:29:04.223 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Data.xk5nl74k60.wasm - null null -2026-01-28 14:29:04.224 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.225 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.225 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.225 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.225 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.233 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.233 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.233 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.233 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.233 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.233 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.233 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.234 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.234 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.234 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.234 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.237 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.237 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.238 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Data.xk5nl74k60.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\g2etzqh2n8-{0}-xk5nl74k60-xk5nl74k60.gz' -2026-01-28 14:29:04.238 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.239 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Data.xk5nl74k60.wasm - 200 23862 application/wasm 15.2255ms -2026-01-28 14:29:04.248 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Ddd.Application.Contracts.1kpejy4fde.wasm - null null -2026-01-28 14:29:04.249 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.250 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.250 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.250 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.250 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.258 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.258 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.258 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.258 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.258 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.258 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.258 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.259 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.259 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.259 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.259 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.261 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.262 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.263 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Ddd.Application.Contracts.1kpejy4fde.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bq3ub7csyu-{0}-1kpejy4fde-1kpejy4fde.gz' -2026-01-28 14:29:04.263 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.263 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Ddd.Application.Contracts.1kpejy4fde.wasm - 200 37691 application/wasm 15.2837ms -2026-01-28 14:29:04.269 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.DistributedLocking.Abstractions.q8g86pl4ti.wasm - null null -2026-01-28 14:29:04.270 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.271 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.271 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.271 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.271 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.278 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.278 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.278 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.278 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.278 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.278 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.278 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.278 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.278 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.278 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.278 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.281 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.281 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.282 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.DistributedLocking.Abstractions.q8g86pl4ti.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\qe2ghijxui-{0}-q8g86pl4ti-q8g86pl4ti.gz' -2026-01-28 14:29:04.282 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.282 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.DistributedLocking.Abstractions.q8g86pl4ti.wasm - 200 7990 application/wasm 12.8316ms -2026-01-28 14:29:04.289 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.Abstractions.lbrqgul2g3.wasm - null null -2026-01-28 14:29:04.290 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.291 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.291 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.291 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.291 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.298 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.298 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.298 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.298 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.298 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.299 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.299 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.299 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.299 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.299 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.299 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.302 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.302 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.303 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.EventBus.Abstractions.lbrqgul2g3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\30q391t77y-{0}-lbrqgul2g3-lbrqgul2g3.gz' -2026-01-28 14:29:04.303 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.303 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.Abstractions.lbrqgul2g3.wasm - 200 20278 application/wasm 13.9542ms -2026-01-28 14:29:04.310 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.4naok44xvm.wasm - null null -2026-01-28 14:29:04.311 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.312 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.312 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.312 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.312 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.321 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.321 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.321 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.321 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.321 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.321 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.321 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.321 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.321 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.321 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.321 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.323 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.324 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.325 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.EventBus.4naok44xvm.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xdn8i8epqw-{0}-4naok44xvm-4naok44xvm.gz' -2026-01-28 14:29:04.325 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.326 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.EventBus.4naok44xvm.wasm - 200 85824 application/wasm 15.6064ms -2026-01-28 14:29:04.333 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ExceptionHandling.ecbhbsp3we.wasm - null null -2026-01-28 14:29:04.334 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.334 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.334 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.334 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.334 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.341 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.341 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.341 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.341 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.341 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.341 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.341 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.341 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.341 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.341 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.341 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.344 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.344 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.345 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ExceptionHandling.ecbhbsp3we.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\86e1bzf02o-{0}-ecbhbsp3we-ecbhbsp3we.gz' -2026-01-28 14:29:04.346 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.346 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ExceptionHandling.ecbhbsp3we.wasm - 200 79680 application/wasm 12.8494ms -2026-01-28 14:29:04.352 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Application.Contracts.40s1e77e5m.wasm - null null -2026-01-28 14:29:04.353 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.353 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.353 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.353 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.353 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.359 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.360 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.360 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.360 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.360 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.360 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.360 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.360 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.360 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.360 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.360 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.362 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.363 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.364 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Application.Contracts.40s1e77e5m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\1k1yaajq7n-{0}-40s1e77e5m-40s1e77e5m.gz' -2026-01-28 14:29:04.364 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.364 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Application.Contracts.40s1e77e5m.wasm - 200 11574 application/wasm 11.566ms -2026-01-28 14:29:04.371 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.nj1v9irvz8.wasm - null null -2026-01-28 14:29:04.372 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.372 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.373 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.373 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.373 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.379 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.379 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.379 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.379 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.379 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.379 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.379 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.380 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.380 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.380 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.380 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.382 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.383 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.384 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.nj1v9irvz8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\247hfc7v1l-{0}-nj1v9irvz8-nj1v9irvz8.gz' -2026-01-28 14:29:04.384 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.384 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Blazor.MudBlazor.nj1v9irvz8.wasm - 200 41275 application/wasm 13.0454ms -2026-01-28 14:29:04.391 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Domain.Shared.b0b5pjfr2i.wasm - null null -2026-01-28 14:29:04.392 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.392 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.392 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.393 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.393 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.399 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.399 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.399 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.399 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.399 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.399 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.399 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.399 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.399 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.399 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.399 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.401 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.402 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.403 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.Domain.Shared.b0b5pjfr2i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\nv73dihqbu-{0}-b0b5pjfr2i-b0b5pjfr2i.gz' -2026-01-28 14:29:04.403 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.403 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.Domain.Shared.b0b5pjfr2i.wasm - 200 47419 application/wasm 11.5249ms -2026-01-28 14:29:04.411 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.HttpApi.Client.uclbvotalx.wasm - null null -2026-01-28 14:29:04.412 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.412 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.412 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.412 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.412 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.420 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.420 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.420 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.420 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.420 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.420 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.420 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.421 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.421 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.421 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.421 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.423 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.424 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.425 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.FeatureManagement.HttpApi.Client.uclbvotalx.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5kgd4qlij6-{0}-uclbvotalx-uclbvotalx.gz' -2026-01-28 14:29:04.425 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.426 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.FeatureManagement.HttpApi.Client.uclbvotalx.wasm - 200 22838 application/wasm 15.1496ms -2026-01-28 14:29:04.451 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Features.wy0y61456s.wasm - null null -2026-01-28 14:29:04.452 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.452 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.452 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.452 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.453 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.461 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.461 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.461 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.461 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.461 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.461 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.461 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.462 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.462 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.462 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.462 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.464 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.464 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.466 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Features.wy0y61456s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c4f7xcddbd-{0}-wy0y61456s-wy0y61456s.gz' -2026-01-28 14:29:04.466 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.466 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Features.wy0y61456s.wasm - 200 71488 application/wasm 15.1264ms -2026-01-28 14:29:04.473 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.GlobalFeatures.hoqe61zskr.wasm - null null -2026-01-28 14:29:04.474 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.474 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.475 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.475 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.475 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.482 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.482 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.482 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.482 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.482 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.482 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.482 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.483 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.483 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.483 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.483 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.485 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.486 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.487 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.GlobalFeatures.hoqe61zskr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\lgshqof3zp-{0}-hoqe61zskr-hoqe61zskr.gz' -2026-01-28 14:29:04.487 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.487 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.GlobalFeatures.hoqe61zskr.wasm - 200 26422 application/wasm 13.7797ms -2026-01-28 14:29:04.495 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Guids.liit7170e2.wasm - null null -2026-01-28 14:29:04.496 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.496 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.497 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.497 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.497 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.505 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.505 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.505 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.505 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.505 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.505 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.505 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.506 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.506 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.506 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.506 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.508 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.509 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.510 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Guids.liit7170e2.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fakjzvu1ye-{0}-liit7170e2-liit7170e2.gz' -2026-01-28 14:29:04.510 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.510 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Guids.liit7170e2.wasm - 200 5942 application/wasm 15.0825ms -2026-01-28 14:29:04.516 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Abstractions.dwudu7bg2j.wasm - null null -2026-01-28 14:29:04.517 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.517 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.517 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.517 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.517 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.524 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.525 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.525 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.525 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.525 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.525 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.525 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.525 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.525 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.525 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.525 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.528 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.528 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.529 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Abstractions.dwudu7bg2j.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\orvt5319bs-{0}-dwudu7bg2j-dwudu7bg2j.gz' -2026-01-28 14:29:04.529 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.529 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Abstractions.dwudu7bg2j.wasm - 200 5942 application/wasm 13.4087ms -2026-01-28 14:29:04.536 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.gvl0zhfcrh.wasm - null null -2026-01-28 14:29:04.537 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.537 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.537 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.537 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.538 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.545 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.545 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.545 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.545 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.545 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.545 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.545 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.546 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.546 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.546 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.546 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.550 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.550 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.552 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.gvl0zhfcrh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\esehx2q8xm-{0}-gvl0zhfcrh-gvl0zhfcrh.gz' -2026-01-28 14:29:04.552 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.552 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.gvl0zhfcrh.wasm - 200 96576 application/wasm 15.8347ms -2026-01-28 14:29:04.558 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.lpg5d6esbr.wasm - null null -2026-01-28 14:29:04.559 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.559 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.559 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.559 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.559 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.567 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.567 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.567 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.567 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.567 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.567 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.567 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.567 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.567 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.568 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.568 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.570 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.570 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.571 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.IdentityModel.lpg5d6esbr.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\69zsrpzmke-{0}-lpg5d6esbr-lpg5d6esbr.gz' -2026-01-28 14:29:04.571 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.571 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.lpg5d6esbr.wasm - 200 7990 application/wasm 13.262ms -2026-01-28 14:29:04.577 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.rizl9dmjps.wasm - null null -2026-01-28 14:29:04.578 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.578 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.578 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.578 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.578 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.585 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.585 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.585 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.585 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.585 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.585 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.585 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.585 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.585 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.585 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.585 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.587 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.588 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.589 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.rizl9dmjps.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\985eczt6cq-{0}-rizl9dmjps-rizl9dmjps.gz' -2026-01-28 14:29:04.589 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.589 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.Client.IdentityModel.WebAssembly.rizl9dmjps.wasm - 200 10550 application/wasm 12.0478ms -2026-01-28 14:29:04.596 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.wui0lrbb2n.wasm - null null -2026-01-28 14:29:04.597 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.597 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.597 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.597 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.597 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.604 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.604 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.604 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.604 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.604 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.604 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.604 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.604 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.604 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.604 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.604 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.606 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.607 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.608 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Http.wui0lrbb2n.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\blqvtier8g-{0}-wui0lrbb2n-wui0lrbb2n.gz' -2026-01-28 14:29:04.608 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.608 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Http.wui0lrbb2n.wasm - 200 54587 application/wasm 11.9352ms -2026-01-28 14:29:04.614 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Application.Contracts.085birxe2b.wasm - null null -2026-01-28 14:29:04.615 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.623 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.623 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.623 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.623 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.623 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.623 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.623 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.623 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.623 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.623 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.624 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.626 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.626 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.627 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Application.Contracts.085birxe2b.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ru0e3g14jl-{0}-085birxe2b-085birxe2b.gz' -2026-01-28 14:29:04.627 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.627 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Application.Contracts.085birxe2b.wasm - 200 21302 application/wasm 13.0734ms -2026-01-28 14:29:04.634 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.uyv78l0zds.wasm - null null -2026-01-28 14:29:04.634 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.635 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.635 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.635 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.635 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.641 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.641 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.641 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.641 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.641 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.641 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.641 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.641 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.641 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.641 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.641 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.643 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.644 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.645 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Blazor.MudBlazor.uyv78l0zds.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\mcjoi5xqrj-{0}-uyv78l0zds-uyv78l0zds.gz' -2026-01-28 14:29:04.645 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.645 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.uyv78l0zds.wasm - 200 67392 application/wasm 11.3684ms -2026-01-28 14:29:04.651 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.hte2321dzm.wasm - null null -2026-01-28 14:29:04.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.652 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.652 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.652 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.652 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.660 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.660 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.660 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.660 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.660 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.660 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.660 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.661 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.661 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.661 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.661 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.663 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.663 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.664 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.hte2321dzm.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\d0art33lcl-{0}-hte2321dzm-hte2321dzm.gz' -2026-01-28 14:29:04.664 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.664 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Blazor.MudBlazor.WebAssembly.hte2321dzm.wasm - 200 5430 application/wasm 13.3316ms -2026-01-28 14:29:04.672 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Domain.Shared.ymdct2u5om.wasm - null null -2026-01-28 14:29:04.673 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.673 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.673 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.673 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.673 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.683 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.683 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.683 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.683 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.683 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.683 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.683 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.685 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.685 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.685 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.685 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.689 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.690 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.694 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.Domain.Shared.ymdct2u5om.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\o0k8cjq56a-{0}-ymdct2u5om-ymdct2u5om.gz' -2026-01-28 14:29:04.694 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.694 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.Domain.Shared.ymdct2u5om.wasm - 200 370029 application/wasm 22.3064ms -2026-01-28 14:29:04.706 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.HttpApi.Client.clb4nzb2zs.wasm - null null -2026-01-28 14:29:04.708 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.708 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.708 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.708 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.708 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.717 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.717 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.717 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.717 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.717 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.717 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.717 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.718 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.718 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.718 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.718 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.722 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.723 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.725 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Identity.HttpApi.Client.clb4nzb2zs.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bj1jtfcis3-{0}-clb4nzb2zs-clb4nzb2zs.gz' -2026-01-28 14:29:04.725 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.725 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Identity.HttpApi.Client.clb4nzb2zs.wasm - 200 123205 application/wasm 18.7721ms -2026-01-28 14:29:04.735 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.IdentityModel.58e7vj7i45.wasm - null null -2026-01-28 14:29:04.737 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.737 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.737 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.737 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.737 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.746 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.746 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.746 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.746 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.746 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.746 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.746 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.746 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.746 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.747 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.747 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.751 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.751 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.752 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.IdentityModel.58e7vj7i45.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6dvntei2gj-{0}-58e7vj7i45-58e7vj7i45.gz' -2026-01-28 14:29:04.753 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.753 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.IdentityModel.58e7vj7i45.wasm - 200 32566 application/wasm 17.3377ms -2026-01-28 14:29:04.763 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.Abstractions.dk3pk9ktl7.wasm - null null -2026-01-28 14:29:04.765 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.765 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.765 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.765 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.765 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.776 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.776 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.776 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.776 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.776 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.777 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.777 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.777 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.777 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.777 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.777 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.781 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.781 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.783 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.Abstractions.dk3pk9ktl7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kno3y6bjsa-{0}-dk3pk9ktl7-dk3pk9ktl7.gz' -2026-01-28 14:29:04.783 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.783 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.Abstractions.dk3pk9ktl7.wasm - 200 4918 application/wasm 19.8023ms -2026-01-28 14:29:04.791 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.8u3i5b9etn.wasm - null null -2026-01-28 14:29:04.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.793 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.793 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.793 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.793 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.801 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.801 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.801 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.801 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.801 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.801 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.802 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.802 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.802 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.802 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.802 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.806 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.806 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.807 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.8u3i5b9etn.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xxkqi4ckse-{0}-8u3i5b9etn-8u3i5b9etn.gz' -2026-01-28 14:29:04.808 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.808 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.8u3i5b9etn.wasm - 200 3894 application/wasm 17.2596ms -2026-01-28 14:29:04.822 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.SystemTextJson.dmgvw38e5z.wasm - null null -2026-01-28 14:29:04.823 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.824 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.824 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.824 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.824 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.832 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.832 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.832 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.832 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.832 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.832 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.832 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.833 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.833 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.833 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.833 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.835 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.835 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.836 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Json.SystemTextJson.dmgvw38e5z.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\y6nmb5oill-{0}-dmgvw38e5z-dmgvw38e5z.gz' -2026-01-28 14:29:04.836 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.837 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Json.SystemTextJson.dmgvw38e5z.wasm - 200 24374 application/wasm 14.5434ms -2026-01-28 14:29:04.843 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.Abstractions.j5b6ddcipj.wasm - null null -2026-01-28 14:29:04.844 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.844 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.845 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.845 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.845 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.851 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.851 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.851 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.851 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.851 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.851 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.851 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.852 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.852 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.852 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.852 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.854 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.854 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.855 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Localization.Abstractions.j5b6ddcipj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\6hzosd4d2z-{0}-j5b6ddcipj-j5b6ddcipj.gz' -2026-01-28 14:29:04.855 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.855 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.Abstractions.j5b6ddcipj.wasm - 200 13622 application/wasm 11.8724ms -2026-01-28 14:29:04.862 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.tgarxcuaaj.wasm - null null -2026-01-28 14:29:04.863 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.863 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.863 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.863 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.863 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.869 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.869 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.869 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.869 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.869 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.869 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.869 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.869 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.869 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.869 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.869 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.871 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.871 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.873 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Localization.tgarxcuaaj.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\742lfcokyb-{0}-tgarxcuaaj-tgarxcuaaj.gz' -2026-01-28 14:29:04.873 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.873 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Localization.tgarxcuaaj.wasm - 200 66880 application/wasm 11.1916ms -2026-01-28 14:29:04.879 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Mapperly.mifpi94512.wasm - null null -2026-01-28 14:29:04.880 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.880 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.880 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.880 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.880 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.886 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.886 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.886 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.886 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.886 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.886 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.886 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.886 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.886 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.886 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.886 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.889 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.889 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.895 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Mapperly.mifpi94512.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\wlgf7ryjmc-{0}-mifpi94512-mifpi94512.gz' -2026-01-28 14:29:04.895 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.896 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Mapperly.mifpi94512.wasm - 200 18230 application/wasm 16.8352ms -2026-01-28 14:29:04.902 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Minify.u0ftati5vi.wasm - null null -2026-01-28 14:29:04.903 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.903 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.903 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.903 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.903 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.910 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.911 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.911 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.911 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.911 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.911 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.911 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.911 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.911 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.911 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.911 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.913 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.913 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.914 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Minify.u0ftati5vi.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xo92mb2h1m-{0}-u0ftati5vi-u0ftati5vi.gz' -2026-01-28 14:29:04.914 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.914 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Minify.u0ftati5vi.wasm - 200 6966 application/wasm 12.5869ms -2026-01-28 14:29:04.921 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MudBlazorUI.rp0ak0tuw8.wasm - null null -2026-01-28 14:29:04.922 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.922 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.922 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.922 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.923 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.930 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.930 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.930 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.930 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.930 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.930 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.930 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.930 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.930 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.930 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.930 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.933 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.933 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.936 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MudBlazorUI.rp0ak0tuw8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kchqj3qnme-{0}-rp0ak0tuw8-rp0ak0tuw8.gz' -2026-01-28 14:29:04.936 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.936 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MudBlazorUI.rp0ak0tuw8.wasm - 200 137546 application/wasm 14.76ms -2026-01-28 14:29:04.942 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.Abstractions.l8q9drti5i.wasm - null null -2026-01-28 14:29:04.943 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.943 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.943 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.943 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.943 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.950 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.950 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.950 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.950 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.950 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.950 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.950 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.951 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.951 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.951 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.951 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.953 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.954 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.955 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MultiTenancy.Abstractions.l8q9drti5i.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9h6hwofytn-{0}-l8q9drti5i-l8q9drti5i.gz' -2026-01-28 14:29:04.955 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.955 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.Abstractions.l8q9drti5i.wasm - 200 26934 application/wasm 12.8327ms -2026-01-28 14:29:04.962 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.9vppak6oe0.wasm - null null -2026-01-28 14:29:04.963 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.963 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.963 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.963 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.963 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.971 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.971 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.971 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.971 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.971 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.971 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.971 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.971 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.972 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.972 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.972 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.974 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.974 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.975 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.MultiTenancy.9vppak6oe0.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\k4tu4vjqt3-{0}-9vppak6oe0-9vppak6oe0.gz' -2026-01-28 14:29:04.975 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.975 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.MultiTenancy.9vppak6oe0.wasm - 200 31542 application/wasm 13.4864ms -2026-01-28 14:29:04.981 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectExtending.xqdaldejf6.wasm - null null -2026-01-28 14:29:04.982 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.982 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:04.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:04.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:04.983 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:04.990 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.990 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.990 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:04.990 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:04.990 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:04.990 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:04.990 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.991 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:04.991 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:04.991 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:04.991 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:04.993 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:04.993 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.994 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ObjectExtending.xqdaldejf6.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3mtcgnfv0c-{0}-xqdaldejf6-xqdaldejf6.gz' -2026-01-28 14:29:04.994 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:04.994 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectExtending.xqdaldejf6.wasm - 200 48443 application/wasm 13.1137ms -2026-01-28 14:29:05.001 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectMapping.jfxlue5mz1.wasm - null null -2026-01-28 14:29:05.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.002 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.003 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.003 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.003 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.010 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.010 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.010 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.010 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.010 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.010 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.010 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.011 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.011 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.011 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.011 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.013 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.014 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.015 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.ObjectMapping.jfxlue5mz1.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\zesov8dx3n-{0}-jfxlue5mz1-jfxlue5mz1.gz' -2026-01-28 14:29:05.015 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.015 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.ObjectMapping.jfxlue5mz1.wasm - 200 17206 application/wasm 14.2961ms -2026-01-28 14:29:05.024 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.OpenIddict.Domain.Shared.p76j32m8t5.wasm - null null -2026-01-28 14:29:05.025 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.025 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.026 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.026 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.026 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.034 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.034 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.034 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.034 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.034 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.034 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.034 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.035 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.035 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.035 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.035 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.037 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.037 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.038 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.OpenIddict.Domain.Shared.p76j32m8t5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\e9mit81pkr-{0}-p76j32m8t5-p76j32m8t5.gz' -2026-01-28 14:29:05.038 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.039 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.OpenIddict.Domain.Shared.p76j32m8t5.wasm - 200 41275 application/wasm 14.5131ms -2026-01-28 14:29:05.045 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Application.Contracts.wmkikr93o7.wasm - null null -2026-01-28 14:29:05.046 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.046 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.046 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.046 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.046 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.054 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.054 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.054 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.054 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.054 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.054 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.054 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.054 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.054 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.054 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.054 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.057 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.057 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.058 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Application.Contracts.wmkikr93o7.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\my5sja1gq5-{0}-wmkikr93o7-wmkikr93o7.gz' -2026-01-28 14:29:05.058 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.058 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Application.Contracts.wmkikr93o7.wasm - 200 14134 application/wasm 13.4054ms -2026-01-28 14:29:05.068 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.zznf2kzkxh.wasm - null null -2026-01-28 14:29:05.069 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.069 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.069 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.069 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.069 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.074 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.074 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.075 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.075 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.075 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.075 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.075 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.075 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.075 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.075 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.075 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.077 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.077 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.078 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.zznf2kzkxh.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\kxch0h7hgv-{0}-zznf2kzkxh-zznf2kzkxh.gz' -2026-01-28 14:29:05.078 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.079 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.zznf2kzkxh.wasm - 200 77632 application/wasm 11ms -2026-01-28 14:29:05.085 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.axi1gmd0uq.wasm - null null -2026-01-28 14:29:05.086 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.086 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.086 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.086 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.086 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.092 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.092 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.093 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.093 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.093 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.093 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.093 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.093 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.093 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.093 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.093 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.096 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.096 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.097 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.axi1gmd0uq.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\66b7cc8ocy-{0}-axi1gmd0uq-axi1gmd0uq.gz' -2026-01-28 14:29:05.097 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.097 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Blazor.MudBlazor.WebAssembly.axi1gmd0uq.wasm - 200 5942 application/wasm 12.5254ms -2026-01-28 14:29:05.103 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Domain.Shared.ic13klvitm.wasm - null null -2026-01-28 14:29:05.104 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.104 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.104 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.104 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.104 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.110 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.110 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.110 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.110 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.110 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.110 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.110 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.110 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.110 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.110 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.111 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.112 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.112 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.113 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.Domain.Shared.ic13klvitm.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\yzrsadtuc3-{0}-ic13klvitm-ic13klvitm.gz' -2026-01-28 14:29:05.113 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.114 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.Domain.Shared.ic13klvitm.wasm - 200 59195 application/wasm 10.501ms -2026-01-28 14:29:05.120 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.HttpApi.Client.emu449d09n.wasm - null null -2026-01-28 14:29:05.121 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.121 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.121 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.121 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.121 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.127 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.127 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.127 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.127 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.127 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.127 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.128 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.128 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.128 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.128 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.128 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.130 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.130 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.132 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.PermissionManagement.HttpApi.Client.emu449d09n.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\oo1t1rirr3-{0}-emu449d09n-emu449d09n.gz' -2026-01-28 14:29:05.132 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.132 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.PermissionManagement.HttpApi.Client.emu449d09n.wasm - 200 68416 application/wasm 12.4879ms -2026-01-28 14:29:05.137 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.RemoteServices.d8gnck4fgy.wasm - null null -2026-01-28 14:29:05.138 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.138 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.138 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.138 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.138 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.144 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.144 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.144 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.144 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.144 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.144 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.144 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.145 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.145 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.145 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.145 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.146 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.147 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.147 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.RemoteServices.d8gnck4fgy.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\fxolomud6k-{0}-d8gnck4fgy-d8gnck4fgy.gz' -2026-01-28 14:29:05.147 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.148 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.RemoteServices.d8gnck4fgy.wasm - 200 11574 application/wasm 10.5147ms -2026-01-28 14:29:05.154 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Security.k9ttfxcsex.wasm - null null -2026-01-28 14:29:05.155 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.155 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.155 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.155 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.155 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.161 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.161 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.161 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.161 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.161 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.161 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.161 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.162 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.162 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.162 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.162 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.164 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.164 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.165 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Security.k9ttfxcsex.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\3330bn9dpa-{0}-k9ttfxcsex-k9ttfxcsex.gz' -2026-01-28 14:29:05.165 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.165 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Security.k9ttfxcsex.wasm - 200 48955 application/wasm 11.3396ms -2026-01-28 14:29:05.171 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Serialization.gqp3lze8fb.wasm - null null -2026-01-28 14:29:05.172 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.172 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.172 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.172 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.172 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.178 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.178 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.178 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.178 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.178 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.179 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.179 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.179 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.179 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.179 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.179 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.181 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.182 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.182 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Serialization.gqp3lze8fb.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jm5tzubbmd-{0}-gqp3lze8fb-gqp3lze8fb.gz' -2026-01-28 14:29:05.182 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.183 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Serialization.gqp3lze8fb.wasm - 200 6966 application/wasm 11.9498ms -2026-01-28 14:29:05.189 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Application.Contracts.xvq3wz5075.wasm - null null -2026-01-28 14:29:05.190 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.190 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.198 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.198 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.198 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.198 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.198 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.198 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.198 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.199 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.199 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.199 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.199 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.201 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.202 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.203 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Application.Contracts.xvq3wz5075.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\sa63frt88b-{0}-xvq3wz5075-xvq3wz5075.gz' -2026-01-28 14:29:05.203 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.203 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Application.Contracts.xvq3wz5075.wasm - 200 14134 application/wasm 14.1476ms -2026-01-28 14:29:05.210 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.yorcbsllti.wasm - null null -2026-01-28 14:29:05.211 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.211 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.211 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.211 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.211 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.219 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.219 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.219 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.219 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.219 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.219 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.219 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.220 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.220 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.220 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.220 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.223 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.223 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.224 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.yorcbsllti.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\du4d4xybrw-{0}-yorcbsllti-yorcbsllti.gz' -2026-01-28 14:29:05.225 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.225 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.yorcbsllti.wasm - 200 59195 application/wasm 14.8296ms -2026-01-28 14:29:05.232 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.rl433unjhk.wasm - null null -2026-01-28 14:29:05.233 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.233 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.234 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.234 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.234 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.242 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.242 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.242 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.242 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.242 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.242 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.242 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.243 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.243 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.243 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.243 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.245 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.246 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.246 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.rl433unjhk.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\khsc69ietg-{0}-rl433unjhk-rl433unjhk.gz' -2026-01-28 14:29:05.246 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.247 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Blazor.MudBlazor.WebAssembly.rl433unjhk.wasm - 200 5942 application/wasm 14.6258ms -2026-01-28 14:29:05.254 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Domain.Shared.ehawvm0lul.wasm - null null -2026-01-28 14:29:05.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.255 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.255 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.255 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.256 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.263 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.263 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.263 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.264 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.264 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.264 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.264 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.264 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.264 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.264 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.264 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.266 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.267 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.268 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.Domain.Shared.ehawvm0lul.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\a9lyefc7q1-{0}-ehawvm0lul-ehawvm0lul.gz' -2026-01-28 14:29:05.268 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.269 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.Domain.Shared.ehawvm0lul.wasm - 200 86336 application/wasm 14.5353ms -2026-01-28 14:29:05.276 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.HttpApi.Client.2z0jshntcg.wasm - null null -2026-01-28 14:29:05.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.277 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.277 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.277 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.277 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.285 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.285 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.285 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.285 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.285 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.285 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.285 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.286 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.286 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.286 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.286 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.288 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.289 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.290 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.SettingManagement.HttpApi.Client.2z0jshntcg.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ivgy4mp33s-{0}-2z0jshntcg-2z0jshntcg.gz' -2026-01-28 14:29:05.290 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.290 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.SettingManagement.HttpApi.Client.2z0jshntcg.wasm - 200 23862 application/wasm 14.4975ms -2026-01-28 14:29:05.298 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Settings.05ptknrv5m.wasm - null null -2026-01-28 14:29:05.299 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.299 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.299 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.300 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.300 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.307 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.307 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.307 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.307 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.307 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.307 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.307 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.308 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.308 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.308 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.308 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.311 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.311 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.312 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Settings.05ptknrv5m.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bgt33y9v4t-{0}-05ptknrv5m-05ptknrv5m.gz' -2026-01-28 14:29:05.312 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.312 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Settings.05ptknrv5m.wasm - 200 40763 application/wasm 14.0753ms -2026-01-28 14:29:05.318 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Application.Contracts.dorwnqqwy5.wasm - null null -2026-01-28 14:29:05.319 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.327 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.328 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.328 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.328 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.328 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.328 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.328 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.328 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.328 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.328 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.328 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.330 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.330 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.331 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Application.Contracts.dorwnqqwy5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\c16tsznfvz-{0}-dorwnqqwy5-dorwnqqwy5.gz' -2026-01-28 14:29:05.331 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.331 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Application.Contracts.dorwnqqwy5.wasm - 200 12086 application/wasm 12.7816ms -2026-01-28 14:29:05.337 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.h58oqkfeng.wasm - null null -2026-01-28 14:29:05.338 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.338 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.338 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.338 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.338 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.344 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.344 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.344 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.344 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.344 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.344 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.344 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.344 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.344 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.344 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.344 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.347 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.347 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.348 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.h58oqkfeng.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ckfyi6dd9r-{0}-h58oqkfeng-h58oqkfeng.gz' -2026-01-28 14:29:05.348 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.348 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.h58oqkfeng.wasm - 200 35131 application/wasm 11.3582ms -2026-01-28 14:29:05.353 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.vv7n6m7yut.wasm - null null -2026-01-28 14:29:05.354 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.355 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.355 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.355 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.355 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.362 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.362 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.362 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.362 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.362 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.362 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.362 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.363 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.363 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.363 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.363 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.364 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.365 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.366 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.vv7n6m7yut.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\xddkl43426-{0}-vv7n6m7yut-vv7n6m7yut.gz' -2026-01-28 14:29:05.366 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.366 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Blazor.MudBlazor.WebAssembly.vv7n6m7yut.wasm - 200 5942 application/wasm 12.3606ms -2026-01-28 14:29:05.372 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Domain.Shared.llpimxq3rm.wasm - null null -2026-01-28 14:29:05.373 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.373 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.373 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.373 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.373 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.379 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.379 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.379 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.379 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.379 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.380 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.380 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.380 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.380 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.380 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.380 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.382 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.383 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.384 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.Domain.Shared.llpimxq3rm.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\so2apr0f18-{0}-llpimxq3rm-llpimxq3rm.gz' -2026-01-28 14:29:05.384 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.384 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.Domain.Shared.llpimxq3rm.wasm - 200 44347 application/wasm 11.6731ms -2026-01-28 14:29:05.390 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.HttpApi.Client.bjkg75uhux.wasm - null null -2026-01-28 14:29:05.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.391 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.391 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.391 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.391 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.397 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.397 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.398 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.398 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.398 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.398 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.398 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.398 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.398 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.398 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.398 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.400 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.400 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.401 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.TenantManagement.HttpApi.Client.bjkg75uhux.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\imelthvwfz-{0}-bjkg75uhux-bjkg75uhux.gz' -2026-01-28 14:29:05.401 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.401 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.TenantManagement.HttpApi.Client.bjkg75uhux.wasm - 200 37179 application/wasm 11.4751ms -2026-01-28 14:29:05.413 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Threading.rwdxyhv0ce.wasm - null null -2026-01-28 14:29:05.414 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.414 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.414 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.414 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.414 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.422 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.422 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.422 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.422 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.422 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.422 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.422 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.423 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.423 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.423 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.423 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.425 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.426 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.427 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Threading.rwdxyhv0ce.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\bipe9d19v0-{0}-rwdxyhv0ce-rwdxyhv0ce.gz' -2026-01-28 14:29:05.427 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.427 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Threading.rwdxyhv0ce.wasm - 200 34619 application/wasm 13.7023ms -2026-01-28 14:29:05.433 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Timing.otg12tqej8.wasm - null null -2026-01-28 14:29:05.434 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.435 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.435 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.435 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.435 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.442 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.442 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.442 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.442 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.442 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.442 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.442 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.443 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.443 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.443 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.443 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.445 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.445 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.446 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Timing.otg12tqej8.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\k5ucu0dgya-{0}-otg12tqej8-otg12tqej8.gz' -2026-01-28 14:29:05.446 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.446 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Timing.otg12tqej8.wasm - 200 19766 application/wasm 12.7595ms -2026-01-28 14:29:05.453 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.wwlqw4om2r.wasm - null null -2026-01-28 14:29:05.454 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.454 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.454 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.454 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.454 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.461 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.461 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.461 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.461 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.461 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.461 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.461 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.462 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.462 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.462 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.462 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.464 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.465 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.466 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.UI.wwlqw4om2r.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\pq6xwwf7om-{0}-wwlqw4om2r-wwlqw4om2r.gz' -2026-01-28 14:29:05.466 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.466 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.wwlqw4om2r.wasm - 200 83776 application/wasm 13.302ms -2026-01-28 14:29:05.473 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.Navigation.gyuxza111s.wasm - null null -2026-01-28 14:29:05.474 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.474 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.474 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.474 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.474 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.481 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.481 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.481 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.481 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.481 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.481 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.481 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.482 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.482 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.482 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.482 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.485 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.485 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.486 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.UI.Navigation.gyuxza111s.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\9g5ljk4lon-{0}-gyuxza111s-gyuxza111s.gz' -2026-01-28 14:29:05.486 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.486 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.UI.Navigation.gyuxza111s.wasm - 200 40763 application/wasm 13.225ms -2026-01-28 14:29:05.492 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Uow.jneickkblt.wasm - null null -2026-01-28 14:29:05.493 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.493 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.494 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.494 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.494 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.501 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.501 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.501 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.501 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.501 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.501 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.501 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.501 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.501 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.501 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.501 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.504 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.504 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.505 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Uow.jneickkblt.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\ilu4fbxe2e-{0}-jneickkblt-jneickkblt.gz' -2026-01-28 14:29:05.505 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.505 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Uow.jneickkblt.wasm - 200 39227 application/wasm 12.9973ms -2026-01-28 14:29:05.512 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Abstractions.0mrf0cvj5h.wasm - null null -2026-01-28 14:29:05.513 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.513 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.513 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.513 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.513 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.520 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.521 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.521 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.521 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.521 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.521 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.521 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.521 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.521 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.521 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.521 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.523 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.524 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.525 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Users.Abstractions.0mrf0cvj5h.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\jyt2zu3ttz-{0}-0mrf0cvj5h-0mrf0cvj5h.gz' -2026-01-28 14:29:05.525 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.525 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Abstractions.0mrf0cvj5h.wasm - 200 11062 application/wasm 13.3505ms -2026-01-28 14:29:05.531 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Domain.Shared.h4yyltz4ll.wasm - null null -2026-01-28 14:29:05.533 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.533 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.533 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.533 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.533 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.541 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.541 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.541 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.541 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.542 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.542 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.542 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.542 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.542 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.542 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.542 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.545 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.545 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.546 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Users.Domain.Shared.h4yyltz4ll.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\8bcoe6ftg7-{0}-h4yyltz4ll-h4yyltz4ll.gz' -2026-01-28 14:29:05.546 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.547 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Users.Domain.Shared.h4yyltz4ll.wasm - 200 4918 application/wasm 15.1335ms -2026-01-28 14:29:05.554 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.Abstractions.924wndkz1f.wasm - null null -2026-01-28 14:29:05.555 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.556 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.556 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.556 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.556 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.564 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.564 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.564 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.564 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.564 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.564 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.564 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.565 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.565 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.565 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.565 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.568 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.568 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.569 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Validation.Abstractions.924wndkz1f.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\gd6ojlvfcf-{0}-924wndkz1f-924wndkz1f.gz' -2026-01-28 14:29:05.569 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.569 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.Abstractions.924wndkz1f.wasm - 200 6966 application/wasm 15.1121ms -2026-01-28 14:29:05.575 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.0d8qfgigij.wasm - null null -2026-01-28 14:29:05.576 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.576 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.576 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.576 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.576 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.582 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.582 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.582 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.582 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.582 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.582 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.582 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.583 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.583 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.583 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.583 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.585 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.585 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.587 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.Validation.0d8qfgigij.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\2i0haqeq52-{0}-0d8qfgigij-0d8qfgigij.gz' -2026-01-28 14:29:05.587 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.587 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.Validation.0d8qfgigij.wasm - 200 133962 application/wasm 11.9125ms -2026-01-28 14:29:05.594 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.VirtualFileSystem.gxdtmkr6a5.wasm - null null -2026-01-28 14:29:05.595 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.595 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.595 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.595 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.595 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.603 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.603 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.603 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.603 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.603 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.603 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.603 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.604 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.604 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.604 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.604 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.606 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.607 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.607 +03:00 [INF] Sending file. Request path: '_framework/Volo.Abp.VirtualFileSystem.gxdtmkr6a5.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\oikj36ifzq-{0}-gxdtmkr6a5-gxdtmkr6a5.gz' -2026-01-28 14:29:05.607 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.608 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/Volo.Abp.VirtualFileSystem.gxdtmkr6a5.wasm - 200 21302 application/wasm 13.4371ms -2026-01-28 14:29:05.614 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.juytyz6xh3.wasm - null null -2026-01-28 14:29:05.615 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.615 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.616 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.616 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.616 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.622 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.623 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.623 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.623 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.623 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.623 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.623 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.623 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.623 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.623 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.623 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.625 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.626 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.639 +03:00 [INF] Sending file. Request path: '_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.juytyz6xh3.wasm'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\b9vq30g1vb-{0}-juytyz6xh3-juytyz6xh3.gz' -2026-01-28 14:29:05.639 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.639 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/MyCompanyName.MyProjectName.Blazor.WebApp.Client.juytyz6xh3.wasm - 200 34107 application/wasm 25.0317ms -2026-01-28 14:29:05.645 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/_framework/icudt.oh1zvcfom8.dat - null null -2026-01-28 14:29:05.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.646 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.646 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.646 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.646 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.653 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.653 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.653 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.653 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.653 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.653 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.653 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.654 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.654 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.654 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.654 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.656 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.656 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.662 +03:00 [INF] Sending file. Request path: '_framework/icudt.oh1zvcfom8.dat'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\augfne4vvr-{0}-oh1zvcfom8-oh1zvcfom8.gz' -2026-01-28 14:29:05.662 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.663 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/_framework/icudt.oh1zvcfom8.dat - 200 492472 application/octet-stream 17.2483ms -2026-01-28 14:29:05.675 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/appsettings.Development.json - null null -2026-01-28 14:29:05.676 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.676 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.676 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.676 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.676 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.683 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.683 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.683 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.683 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.683 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.683 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.683 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.684 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.684 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.684 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.684 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.686 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.686 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.687 +03:00 [INF] Sending file. Request path: 'appsettings.Development.json'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\5yh5mvb6m0-{0}-qygrwjo5h3-qygrwjo5h3.gz' -2026-01-28 14:29:05.687 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.687 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/appsettings.Development.json - 200 41 application/json 12.2237ms -2026-01-28 14:29:05.694 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44308/appsettings.json - null null -2026-01-28 14:29:05.695 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.695 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2026-01-28 14:29:05.695 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2026-01-28 14:29:05.695 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2026-01-28 14:29:05.695 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2026-01-28 14:29:05.702 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.702 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.702 +03:00 [DBG] Trying to resolve tenant through 'QueryString'... -2026-01-28 14:29:05.702 +03:00 [DBG] Trying to resolve tenant through 'Route'... -2026-01-28 14:29:05.702 +03:00 [DBG] Trying to resolve tenant through 'Header'... -2026-01-28 14:29:05.702 +03:00 [DBG] Trying to resolve tenant through 'Cookie'... -2026-01-28 14:29:05.702 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.703 +03:00 [DBG] Starting resolving tenant... -2026-01-28 14:29:05.703 +03:00 [DBG] Trying to resolve tenant through 'CurrentUser'... -2026-01-28 14:29:05.703 +03:00 [DBG] Tenant resolved by 'CurrentUser' as 'Host'. -2026-01-28 14:29:05.703 +03:00 [DBG] No tenant resolved. -2026-01-28 14:29:05.704 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:05.705 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.705 +03:00 [INF] Sending file. Request path: 'appsettings.json'. Physical path: 'D:\GitHub\abp\templates\app\aspnet-core\src\MyCompanyName.MyProjectName.Blazor.WebApp.Client\obj\Debug\net10.0\compressed\apuwzph3tz-{0}-b8hf2s338i-b8hf2s338i.gz' -2026-01-28 14:29:05.705 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2026-01-28 14:29:05.706 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44308/appsettings.json - 200 136 application/json 11.4707ms -2026-01-28 14:29:35.567 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:40.600 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:45.712 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:29:53.678 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:30:07.944 +03:00 [DBG] Get dynamic claims cache for user: 34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c -2026-01-28 14:30:09.965 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants -2026-01-28 14:30:09.965 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants -2026-01-28 14:30:09.965 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpTenantManagement.Tenants -2026-01-28 14:30:09.965 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpTenantManagement.Tenants -2026-01-28 14:30:10.023 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.Create -2026-01-28 14:30:10.023 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.Create -2026-01-28 14:30:10.023 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpTenantManagement.Tenants.Create -2026-01-28 14:30:10.023 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpTenantManagement.Tenants.Create -2026-01-28 14:30:10.023 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.Update -2026-01-28 14:30:10.023 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.Update -2026-01-28 14:30:10.023 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpTenantManagement.Tenants.Update -2026-01-28 14:30:10.023 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpTenantManagement.Tenants.Update -2026-01-28 14:30:10.023 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.Delete -2026-01-28 14:30:10.023 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.Delete -2026-01-28 14:30:10.023 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpTenantManagement.Tenants.Delete -2026-01-28 14:30:10.024 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpTenantManagement.Tenants.Delete -2026-01-28 14:30:10.024 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.ManageFeatures -2026-01-28 14:30:10.024 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.ManageFeatures -2026-01-28 14:30:10.024 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageFeatures -2026-01-28 14:30:10.024 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageFeatures -2026-01-28 14:30:10.271 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants -2026-01-28 14:30:10.271 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants -2026-01-28 14:30:10.271 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpTenantManagement.Tenants -2026-01-28 14:30:10.271 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpTenantManagement.Tenants -2026-01-28 14:30:10.829 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.Create -2026-01-28 14:30:10.829 +03:00 [DBG] Found in the cache: pn:U,pk:34fcf7a0-e18e-fe18-b91f-3a1ed7ff3e2c,n:AbpTenantManagement.Tenants.Create -2026-01-28 14:30:10.829 +03:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpTenantManagement.Tenants.Create -2026-01-28 14:30:10.829 +03:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpTenantManagement.Tenants.Create diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp/MyProjectNameBlazorModule.cs b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp/MyProjectNameBlazorModule.cs index e9913330e9..f89ba68756 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp/MyProjectNameBlazorModule.cs +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp/MyProjectNameBlazorModule.cs @@ -20,7 +20,6 @@ using Volo.Abp.Account.Web; using Volo.Abp.AspNetCore.Components.Web; using Volo.Abp.AspNetCore.Components.Server.MudBlazorBasicTheme; using Volo.Abp.AspNetCore.Components.Server.MudBlazorBasicTheme.Bundling; -using Volo.Abp.AspNetCore.Components.Server.Theming.MudBlazor; using Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.Routing; using Volo.Abp.AspNetCore.Components.WebAssembly.MudBlazorBasicTheme.Bundling; using Volo.Abp.AspNetCore.Mvc; @@ -57,7 +56,7 @@ namespace MyCompanyName.MyProjectName.Blazor.WebApp; typeof(AbpAspNetCoreSerilogModule), typeof(AbpAccountWebOpenIddictModule), typeof(AbpAspNetCoreComponentsServerMudBlazorBasicThemeModule), - typeof(AbpAspNetCoreComponentsServerThemingMudBlazorModule), + typeof(AbpAspNetCoreComponentsWebAssemblyMudBlazorBasicThemeBundlingModule), typeof(AbpAspNetCoreMvcUiLeptonXLiteThemeModule), typeof(AbpIdentityBlazorMudBlazorServerModule), typeof(AbpTenantManagementBlazorMudBlazorServerModule),